whoogle-search/charts/whoogle/templates/tests/test-connection.yaml
Robbie Blaine 6c1e00fa51
feat: Simple Helm Chart
* Add a simple Kubernetes Helm Chart to deploy Whoogle
2021-11-04 12:05:37 +02:00

16 lines
379 B
YAML

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