We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e546681 commit fd7ec6fCopy full SHA for fd7ec6f
changelog/fragments/1036-ansible-liveness.yaml
@@ -30,8 +30,17 @@ entries:
30
# Migration can be defined to automatically add a section to
31
# the migration guide. This is required for breaking changes.
32
migration:
33
- header: Header text for the migration section
+ header: **(Optional for Ansible-base operators)** Add livenessProbe check
34
body: >
35
Existing operators will have a healthz endpoint without intervention,
36
but to take advantage of it, a liveness probe should be manually added
37
- to the operator manifest.
+ to the operator manifest. For example, the `deploy/operator.yaml` file would need to include:
38
+
39
+ ```yaml
40
+ livenessProbe:
41
+ httpGet:
42
+ path: /healthz
43
+ port: 6789
44
+ initialDelaySeconds: 5
45
+ periodSeconds: 3
46
+ ```
0 commit comments