Skip to content

Commit e7033d7

Browse files
committed
Add missing Helm values mentioned in documentation
1 parent 92ef499 commit e7033d7

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

kubernetes/charts/weblogic-operator/templates/_operator-cm.tpl

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,12 @@ data:
5555
{{- if .kubernetesPlatform }}
5656
kubernetesPlatform: {{ .kubernetesPlatform | quote }}
5757
{{- end }}
58+
{{- if .domainPresenceFailureRetryMaxCount }}
59+
domainPresenceFailureRetryMaxCount: {{ .domainPresenceFailureRetryMaxCount | quote }}
60+
{{- end }}
61+
{{- if .domainPresenceFailureRetrySeconds }}
62+
domainPresenceFailureRetrySeconds: {{ .domainPresenceFailureRetrySeconds | quote }}
63+
{{- end }}
5864
kind: "ConfigMap"
5965
metadata:
6066
labels:

kubernetes/charts/weblogic-operator/values.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -222,3 +222,9 @@ clusterSizePaddingValidationEnabled: true
222222
# to the Domain resource so that it is done using the caller's privileges.
223223
# The default value is false.
224224
#tokenReviewAuthentication: false
225+
226+
# domainPresenceFailureRetryMaxCount and domainPresenceFailureRetrySeconds specify the number of introspector job
227+
# retries for a Domain and the interval in seconds between these retries, respectively.
228+
# Defaults to 5 retries and 10 seconds between each retry.
229+
# domainPresenceFailureRetryMaxCount: 5
230+
# domainPresenceFailureRetrySeconds: 10

0 commit comments

Comments
 (0)