element-call-helm

An experimental helm chart deploying a full element-call instance
git clone git://archive.git.mtrnord.blog/MTRNord/element-call-helm.git
Log | Files | Refs | README

test-connection.yaml (372B)


      1 apiVersion: v1
      2 kind: Pod
      3 metadata:
      4   name: "{{ include "element_call.fullname" . }}-test-connection"
      5   labels:
      6     {{- include "element_call.labels" . | nindent 4 }}
      7   annotations:
      8     "helm.sh/hook": test
      9 spec:
     10   containers:
     11     - name: wget
     12       image: busybox
     13       command: ['wget']
     14       args: ['{{ include "element_call.fullname" . }}:8080']
     15   restartPolicy: Never