feat(ch-ui): add CH-UI

This commit is contained in:
Masaki Yatsu
2025-09-12 23:30:16 +09:00
parent d43dadb91f
commit cf28e427c2
19 changed files with 1002 additions and 0 deletions

View File

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