diff options
author | Sylvain Desbureaux <sylvain.desbureaux@orange.com> | 2020-10-14 12:30:16 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2020-10-14 12:30:16 +0000 |
commit | 39bb1a03c8666eff92d3d8d7b9e1e2b45701fd10 (patch) | |
tree | 8bb34f6e9426b41ddf300cc6ee6f3b02e6d64472 /kubernetes/so/components/soHelpers/templates/_livenessProbe.tpl | |
parent | ecae12ede2c6f88bd69f02499dc3c361c77f3516 (diff) | |
parent | 0df1f8ec5332651b5ce2731dd25ee2319f393b4f (diff) |
Merge "[SO] move subcharts to components folder"
Diffstat (limited to 'kubernetes/so/components/soHelpers/templates/_livenessProbe.tpl')
-rw-r--r-- | kubernetes/so/components/soHelpers/templates/_livenessProbe.tpl | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/kubernetes/so/components/soHelpers/templates/_livenessProbe.tpl b/kubernetes/so/components/soHelpers/templates/_livenessProbe.tpl new file mode 100644 index 0000000000..cde94742c6 --- /dev/null +++ b/kubernetes/so/components/soHelpers/templates/_livenessProbe.tpl @@ -0,0 +1,20 @@ +{{- define "so.helpers.livenessProbe" -}} +{{- $dot := default . .dot -}} +{{- $initRoot := default $dot.Values.soHelpers .initRoot -}} +{{- $subchartDot := fromJson (include "common.subChartDot" (dict "dot" $dot "initRoot" $initRoot)) }} +livenessProbe: + httpGet: + path: {{ $subchartDot.Values.livenessProbe.path }} + port: {{ $subchartDot.Values.containerPort }} + scheme: {{ $subchartDot.Values.livenessProbe.scheme }} + {{- if $subchartDot.Values.global.security.aaf.enabled }} + httpHeaders: + - name: Authorization + value: {{ $subchartDot.Values.global.aaf.auth.header }} + {{- end }} + initialDelaySeconds: {{ $subchartDot.Values.livenessProbe.initialDelaySeconds }} + periodSeconds: {{ $subchartDot.Values.livenessProbe.periodSeconds }} + timeoutSeconds: {{ $subchartDot.Values.livenessProbe.timeoutSeconds }} + successThreshold: {{ $subchartDot.Values.livenessProbe.successThreshold }} + failureThreshold: {{ $subchartDot.Values.livenessProbe.failureThreshold }} +{{- end -}} |