mirror of
https://github.com/emilybache/GildedRose-Refactoring-Kata.git
synced 2026-02-21 01:11:08 +00:00
16 lines
414 B
YAML
16 lines
414 B
YAML
apiVersion: v1
|
|
kind: Pod
|
|
metadata:
|
|
name: "{{ include "gilded-rose.fullname" . }}-test-connection-backend"
|
|
labels:
|
|
{{- include "gilded-rose.labels" . | nindent 4 }}
|
|
annotations:
|
|
"helm.sh/hook": test
|
|
spec:
|
|
containers:
|
|
- name: wget
|
|
image: busybox
|
|
command: ['wget']
|
|
args: ['{{ include "gilded-rose.fullname" . }}:{{ .Values.backend.service.port }}/status']
|
|
restartPolicy: Never
|