Czyste repo z helm create

This commit is contained in:
2026-01-23 01:16:39 +01:00
parent 64ebc2c756
commit 3c14904d69
12 changed files with 539 additions and 0 deletions

View File

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