What is the feature and why do you need it:
K8s added an additional parameter to watch API calls in 1.32.
sendInitialEvents: bool = Field(default=False)
https://kubernetes.io/docs/reference/kubernetes-api/core/event-v1/#query-parameters-6
`sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic "Bookmark" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `"k8s.io/initial-events-end": "true"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following:
- `resourceVersionMatch` = NotOlderThan is interpreted as "data at least as new as the provided `resourceVersion`" and the bookmark event is send when the state is synced to a `resourceVersion` at least as fresh as the one provided by the ListOptions. If `resourceVersion` is unset, this is interpreted as "consistent read" and the bookmark event is send when the state is synced at least to the moment when request started being processed.
- `resourceVersionMatch` set to any other value or unset Invalid error is returned. Defaults to true if `resourceVersion=""` or `resourceVersion="0"` (for backward compatibility reasons) and to false otherwise.
Which allows for better controls of watch resourceVersion return results from the starting list call rather than waiting for an initial Bookmark event.
Describe the solution you'd like to see:
Adding this parameter to the APIs and DyanmicClient watch function.
What is the feature and why do you need it:
K8s added an additional parameter to watch API calls in 1.32.
https://kubernetes.io/docs/reference/kubernetes-api/core/event-v1/#query-parameters-6
Which allows for better controls of watch resourceVersion return results from the starting list call rather than waiting for an initial Bookmark event.
Describe the solution you'd like to see:
Adding this parameter to the APIs and DyanmicClient watch function.