Create Helm Chart (#43)
* chore: initial commit of helm chart yaml * chore: add docs and reset ingress classname default * chore: helm repo add and install documentation * chore: add env variables to deployment and values * fix: remove port env variable
This commit is contained in:
parent
28ddbb1f6c
commit
31531b607d
13 changed files with 594 additions and 0 deletions
15
chart/templates/tests/test-connection.yaml
Normal file
15
chart/templates/tests/test-connection.yaml
Normal file
|
@ -0,0 +1,15 @@
|
|||
apiVersion: v1
|
||||
kind: Pod
|
||||
metadata:
|
||||
name: "{{ include "christmas-community.fullname" . }}-test-connection"
|
||||
labels:
|
||||
{{- include "christmas-community.labels" . | nindent 4 }}
|
||||
annotations:
|
||||
"helm.sh/hook": test
|
||||
spec:
|
||||
containers:
|
||||
- name: wget
|
||||
image: busybox
|
||||
command: ['wget']
|
||||
args: ['{{ include "christmas-community.fullname" . }}:{{ .Values.service.port }}']
|
||||
restartPolicy: Never
|
Loading…
Add table
Add a link
Reference in a new issue