I have experimentally established that after restarting the operator, Reconcile is called for each object that the operator is watching. Is it guaranteed or is it a side effect of something?
Does the Operator-SDK guarantee the first call to Reconcile after restarting the operator?
213 Views Asked by deevroman At
1
There are 1 best solutions below
Related Questions in KUBERNETES-OPERATOR
- Istio 1.4.3 to 1.5.6 upgrade using istioctl and Istio operator
- SharedIndexInformer (Fabric8 kubernetes-client) watches only pods of its own namespace when run in the cluster
- How to enable rabbitmq plugin "rabbitmq_delayed_message_exchange" if rabbitmq was deployed using the rabbitmq operator in kubernetes
- Kubernetes Operator (Operator SDK, Kubebuilder VERSUS Kubernetes Client Libraries)
- Jaeger Kubernetes Operator Setup
- Error "the object has been modified" on k8s operator by golang
- Is there a way to list all resources created by a specific operator and their status?
- Maximum Size of Status in the Kubernetes CRD?
- Turn off Confluent Telemetry Metrics which are being enabled automatically in Kafka Exporter Config?
- Operator SDK controller failed to update Custom Resource status
- Kubebuilder Kustomize Shell
- Does the Operator-SDK guarantee the first call to Reconcile after restarting the operator?
- Enterprise search timeout for Elasticsearch create index
- How often is reconciliation loop run in Kubebuilder?
- Reuse Airflow hooks with kubernetes operator
Related Questions in OPERATOR-SDK
- How to deploy an operator(created by operator-sdk v1.0) without installing operator-sdk in production environment?
- How to execute functions once pod is elected leader by using leader-with-lease in operator-framework?
- In k8s operators, how do I link the unique metadata.name in spec of a CRD to a unique object ID that my server generates
- Uninstall of dependent operators
- Kubernetes Operator (Operator SDK, Kubebuilder VERSUS Kubernetes Client Libraries)
- marshall and unmarshall partially-defined yaml structure with custom yaml tags intact
- How to perform CRUD on 3rd-party Custom Resource for which go api is not available
- Operator SDK controller failed to update Custom Resource status
- Kubernetes Operator-sdk 1.2 no option to run locally
- Operator-SDK and NewController function
- Why Kubernetes REST API is imperative?
- Does the Operator-SDK guarantee the first call to Reconcile after restarting the operator?
- How to correctly garbage collect objects using Operator SDK?
- Recursive Ansible filter in jinja2 template file
- Best Practice for Operators for how to get Deployment's configuration
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
It's guaranteed / is intentional behavior where the objects in the initial
Listto populate the cache are sent as create events to the relevant handlers. The reasoning being that resources could be stale by the controller not having been running.In fact this can cause some issues if for example your controller is watching configmaps as the memory usage of the controller pod on startup may be extremely high or exceed resource quotas.