add helm charts
This commit is contained in:
29
backing-services/zot/templates/tests/test-connection.yaml
Normal file
29
backing-services/zot/templates/tests/test-connection.yaml
Normal file
@@ -0,0 +1,29 @@
|
||||
apiVersion: v1
|
||||
kind: Pod
|
||||
metadata:
|
||||
name: "{{ include "zot.fullname" . }}-test-connection"
|
||||
namespace: {{ .Values.namespace | default .Release.Namespace }}
|
||||
labels:
|
||||
{{- include "zot.labels" . | nindent 4 }}
|
||||
annotations:
|
||||
"helm.sh/hook": test
|
||||
"helm.sh/hook-delete-policy": before-hook-creation,hook-succeeded,hook-failed
|
||||
spec:
|
||||
containers:
|
||||
- name: wget
|
||||
image: alpine:3.18
|
||||
command:
|
||||
- sh
|
||||
- -c
|
||||
- |
|
||||
scheme="http"
|
||||
{{- if eq $.Values.httpGet.scheme "HTTPS"}}
|
||||
scheme="https"
|
||||
{{- end }}
|
||||
echo "$scheme"
|
||||
{{- if .Values.authHeader }}
|
||||
wget --no-check-certificate --header "Authorization: Basic {{ .Values.authHeader }}" $scheme://{{ include "zot.fullname" . }}:{{ .Values.service.port }}/v2/_catalog
|
||||
{{- else }}
|
||||
wget --no-check-certificate $scheme://{{ include "zot.fullname" . }}:{{ .Values.service.port }}/v2/_catalog
|
||||
{{- end }}
|
||||
restartPolicy: Never
|
||||
Reference in New Issue
Block a user