mirror of
https://github.com/casdoor/casdoor.git
synced 2025-08-02 18:50:32 +08:00

Signed-off-by: henrywangx <henrywangx@gmail.com> Co-authored-by: xiong wang <xiong.wang@inceptio.ai>
16 lines
379 B
YAML
16 lines
379 B
YAML
apiVersion: v1
|
|
kind: Pod
|
|
metadata:
|
|
name: "{{ include "casdoor.fullname" . }}-test-connection"
|
|
labels:
|
|
{{- include "casdoor.labels" . | nindent 4 }}
|
|
annotations:
|
|
"helm.sh/hook": test
|
|
spec:
|
|
containers:
|
|
- name: wget
|
|
image: busybox
|
|
command: ['wget']
|
|
args: ['{{ include "casdoor.fullname" . }}:{{ .Values.service.port }}']
|
|
restartPolicy: Never
|