You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
548 B
18 lines
548 B
{{- if .Values.test.enabled }}
|
|
apiVersion: v1
|
|
kind: Pod
|
|
metadata:
|
|
name: "{{ include "gitea.fullname" . }}-test-connection"
|
|
namespace: {{ .Values.namespace | default .Release.Namespace }}
|
|
labels:
|
|
{{ include "gitea.labels" . | nindent 4 }}
|
|
annotations:
|
|
"helm.sh/hook": test-success
|
|
spec:
|
|
containers:
|
|
- name: wget
|
|
image: "{{ .Values.test.image.name }}:{{ .Values.test.image.tag }}"
|
|
command: ['wget']
|
|
args: ['{{ include "gitea.fullname" . }}-http:{{ .Values.service.http.port }}']
|
|
restartPolicy: Never
|
|
{{- end }}
|
|
|