mirror of
https://github.com/fankes/beszel.git
synced 2025-10-19 01:39:34 +08:00
14 lines
366 B
YAML
14 lines
366 B
YAML
apiVersion: v1
|
|
kind: Pod
|
|
metadata:
|
|
name: "{{ .Release.Name }}-smoke-test"
|
|
annotations:
|
|
"helm.sh/hook": test
|
|
spec:
|
|
containers:
|
|
- name: hook1-container
|
|
image: curlimages/curl
|
|
imagePullPolicy: IfNotPresent
|
|
command: ['sh', '-c', 'curl http://{{ template "beszel.fullname" . }}-web:8090/']
|
|
restartPolicy: Never
|
|
terminationGracePeriodSeconds: 0 |