Helm, Actions, Dev updates, and much more! (#4)

Co-authored-by: dunemask <dunemask@gmail.com>
Reviewed-on: https://gitea.dunemask.net/elysium/nile/pulls/4
This commit is contained in:
dunemask 2023-08-18 17:43:33 +00:00
parent db2953b151
commit 45b20ae2b0
16 changed files with 1230 additions and 883 deletions

View file

@ -0,0 +1,15 @@
apiVersion: v1
kind: Pod
metadata:
name: "{{ include "nile.fullname" . }}-test-connection"
labels:
{{- include "nile.labels" . | nindent 4 }}
annotations:
"helm.sh/hook": test
spec:
containers:
- name: wget
image: busybox
command: ['wget']
args: ['{{ include "nile.fullname" . }}:{{ .Values.service.port }}']
restartPolicy: Never