File tree Expand file tree Collapse file tree 3 files changed +17
-0
lines changed
Expand file tree Collapse file tree 3 files changed +17
-0
lines changed Original file line number Diff line number Diff line change 1616 image : " {{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
1717 imagePullPolicy : {{ .Values.image.pullPolicy }}
1818 command : ["grpc_health_probe", '-addr={{ include "openfga.fullname" . }}:{{ (split ":" .Values.grpc.addr)._1 }}']
19+ {{- with .Values.testContainerSpec }}
20+ {{- toYaml . | nindent 6 }}
21+ {{- end }}
1922 restartPolicy : Never
23+ {{- with .Values.testPodSpec }}
24+ {{- toYaml . | nindent 2 }}
25+ {{- end }}
Original file line number Diff line number Diff line change 10421042 }
10431043 }
10441044 },
1045+ "testPodSpec" : {
1046+ "type" : " object" ,
1047+ "description" : " Extra spec for the test pod to match cluster policy"
1048+ },
1049+ "testContainerSpec" : {
1050+ "type" : " object" ,
1051+ "description" : " Extra spec for the test container to match cluster policy"
1052+ },
10451053 "common" : {},
10461054 "extraObjects" : {
10471055 "type" : " array" ,
Original file line number Diff line number Diff line change @@ -342,6 +342,9 @@ migrate:
342342 labels : {}
343343 timeout :
344344
345+ testPodSpec : {}
346+ testContainerSpec : {}
347+
345348# -- Array of extra K8s manifests to deploy
346349# # Note: Supports use of custom Helm templates
347350extraObjects : []
You can’t perform that action at this time.
0 commit comments