mirror of
https://github.com/bvanroll/cicdTest.git
synced 2025-08-29 12:02:47 +00:00
62 lines
1.8 KiB
YAML
62 lines
1.8 KiB
YAML
{{- if .Values.tests.enabled }}
|
|
apiVersion: v1
|
|
kind: Pod
|
|
metadata:
|
|
name: "{{ template "consul.fullname" . }}-test"
|
|
namespace: {{ .Release.Namespace }}
|
|
labels:
|
|
app: {{ template "consul.name" . }}
|
|
chart: {{ template "consul.chart" . }}
|
|
heritage: {{ .Release.Service }}
|
|
release: {{ .Release.Name }}
|
|
annotations:
|
|
"helm.sh/hook": test-success
|
|
spec:
|
|
{{- if .Values.global.tls.enabled }}
|
|
volumes:
|
|
- name: tls-ca-cert
|
|
secret:
|
|
{{- if .Values.global.tls.caCert.secretName }}
|
|
secretName: {{ .Values.global.tls.caCert.secretName }}
|
|
{{- else }}
|
|
secretName: {{ template "consul.fullname" . }}-ca-cert
|
|
{{- end }}
|
|
items:
|
|
- key: {{ default "tls.crt" .Values.global.tls.caCert.secretKey }}
|
|
path: tls.crt
|
|
{{- end }}
|
|
containers:
|
|
- name: consul-test
|
|
image: "{{ .Values.global.image }}"
|
|
env:
|
|
- name: HOST_IP
|
|
valueFrom:
|
|
fieldRef:
|
|
fieldPath: status.hostIP
|
|
{{- if .Values.global.tls.enabled }}
|
|
- name: CONSUL_HTTP_ADDR
|
|
value: https://$(HOST_IP):8501
|
|
- name: CONSUL_CACERT
|
|
value: /consul/tls/ca/tls.crt
|
|
{{- else }}
|
|
- name: CONSUL_HTTP_ADDR
|
|
value: http://$(HOST_IP):8500
|
|
{{- end }}
|
|
{{- if .Values.global.tls.enabled }}
|
|
volumeMounts:
|
|
- name: tls-ca-cert
|
|
mountPath: /consul/tls/ca
|
|
readOnly: true
|
|
{{- end }}
|
|
command:
|
|
- "/bin/sh"
|
|
- "-ec"
|
|
- |
|
|
export VALUE="{{ .Release.Name }}"
|
|
consul kv delete _consul_helm_test
|
|
consul kv put _consul_helm_test $VALUE
|
|
[ `consul kv get _consul_helm_test` = "$VALUE" ]
|
|
consul kv delete _consul_helm_test
|
|
restartPolicy: Never
|
|
{{- end }}
|