1- # Copyright 2020, 2021 Oracle Corporation and/or its affiliates.
1+ # Copyright 2020, 2022, Oracle Corporation and/or its affiliates.
22# Licensed under the Universal Permissive License v 1.0 as shown at
33# http://oss.oracle.com/licenses/upl.
44
@@ -89,6 +89,18 @@ serviceAccountName: coherence-operator
8989
9090# The optional settings to adjust the readiness probe timings for the Operator
9191readinessProbe :
92+ # initialDelaySeconds is the number of seconds after the container has started before readiness probes are initiated.
93+ # More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes
94+ initialDelaySeconds : 10
95+ # periodSeconds is how often (in seconds) to perform the probe.
96+ # Default to 10 seconds. Minimum value is 1.
97+ periodSeconds : 10
98+ # failureThreshold is the minimum consecutive failures for the probe to be considered failed after having succeeded.
99+ # Defaults to 3. Minimum value is 1.
100+ failureThreshold : 3
101+
102+ # The optional settings to adjust the liveness probe timings for the Operator
103+ livenessProbe :
92104 # initialDelaySeconds is the number of seconds after the container has started before liveness probes are initiated.
93105 # More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes
94106 initialDelaySeconds : 10
@@ -99,6 +111,28 @@ readinessProbe:
99111 # Defaults to 3. Minimum value is 1.
100112 failureThreshold : 3
101113
114+ # resources will configure the Coherence Operator container's resource limits.
115+ # The resources can be specified in a values file, the same as they would be
116+ # for a container in a k8s Pod spec, for example:
117+ #
118+ # resources:
119+ # requests:
120+ # memory: "64Mi"
121+ # cpu: "250m"
122+ # limits:
123+ # memory: "128Mi"
124+ # cpu: "500m"
125+ #
126+ # Or, alternatively they can be specified individually using the Helm install --set option, for example
127+ #
128+ # helm install --set resources.requests.memory="64Mi" \
129+ # -- set resources.requests.cpu="250m"
130+ # -- set resources.limits.memory="128Mi"
131+ # -- set resources.limits.cpu="250m"
132+ #
133+ # ref: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/
134+ resources :
135+
102136# clusterRoles controls whether the Helm chart will create RBAC ClusterRole and bindings for the Operator
103137# These are required if the Operator will watch multiple namespaces.
104138# If set to false then the Operator will only watch the namespace it is deployed into.
0 commit comments