[CHORE] Migrate to helm chart (#4)
Co-authored-by: dunemask <dunemask@gmail.com> Reviewed-on: https://gitea.dunemask.net/elysium/nubian/pulls/4
This commit is contained in:
parent
3dba2dd52f
commit
ee5c3fd600
12 changed files with 414 additions and 1 deletions
15
templates/tests/test-connection.yaml
Normal file
15
templates/tests/test-connection.yaml
Normal file
|
@ -0,0 +1,15 @@
|
|||
apiVersion: v1
|
||||
kind: Pod
|
||||
metadata:
|
||||
name: "{{ include "nubian.fullname" . }}-test-connection"
|
||||
labels:
|
||||
{{- include "nubian.labels" . | nindent 4 }}
|
||||
annotations:
|
||||
"helm.sh/hook": test
|
||||
spec:
|
||||
containers:
|
||||
- name: wget
|
||||
image: busybox
|
||||
command: ['wget']
|
||||
args: ['{{ include "nubian.fullname" . }}:{{ .Values.service.port }}']
|
||||
restartPolicy: Never
|
Reference in a new issue