Skip to content
Snippets Groups Projects

Add helm chart OBS proxy

Merged Sjoerd Simons requested to merge wip/sjoerd/helming into main
12 files
+ 468
0
Compare changes
  • Side-by-side
  • Inline
Files
12
apiVersion: v1
kind: Pod
metadata:
name: "{{ include "obs-proxy.fullname" . }}-test-connection"
labels:
{{- include "obs-proxy.labels" . | nindent 4 }}
annotations:
"helm.sh/hook": test
spec:
containers:
- name: wget
image: busybox
command: ['wget']
args: ['{{ include "obs-proxy.fullname" . }}:{{ .Values.service.port }}']
restartPolicy: Never
Loading