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:
Nathan Lanier 2022-10-18 13:59:34 -05:00 committed by GitHub
parent 28ddbb1f6c
commit 31531b607d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
13 changed files with 594 additions and 0 deletions

View 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