kubernetes-handbook/manifests/charts/oam-core-resources/templates/tests/test-connection.yaml

16 lines
416 B
YAML
Raw Normal View History

2020-06-23 21:21:19 +08:00
apiVersion: v1
kind: Pod
metadata:
name: "{{ include "oam-core-resources.fullname" . }}-test-connection"
labels:
{{ include "oam-core-resources.labels" . | nindent 4 }}
annotations:
"helm.sh/hook": test-success
spec:
containers:
- name: wget
image: busybox
command: ['wget']
args: ['{{ include "oam-core-resources.fullname" . }}:{{ .Values.service.port }}']
restartPolicy: Never