This commit is contained in:
ychangkim
2025-07-09 14:14:38 +09:00
parent ef8cf5771c
commit 2003279869
11 changed files with 300 additions and 0 deletions
@@ -0,0 +1,15 @@
apiVersion: v1
kind: Pod
metadata:
name: "{{ .Values.nimService.name }}-test-connection"
labels:
{{- include "nim.labels" . | nindent 4 }}
annotations:
"helm.sh/hook": test
spec:
containers:
- name: wget
image: busybox
command: ['wget']
args: ['{{ .Values.nimService.name }}:{{ .Values.nimService.expose.service.port }}']
restartPolicy: Never