Merge "[AAI] Add model-loader tracing config"
[oom.git] / kubernetes / portal-ng / components / portal-ng-history / templates / tests / test-connection.yaml
1 apiVersion: v1
2 kind: Pod
3 metadata:
4   name: {{ include "common.fullname" . }}-test-connection
5   namespace: {{ include "common.namespace" . }}
6   labels:
7     app: {{ include "common.name" . }}
8     chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
9     release: {{ include "common.release" . }}
10     heritage: {{ .Release.Service }}
11   annotations:
12     "helm.sh/hook": test
13 spec:
14   containers:
15     - name: wget
16       image: busybox
17       command: ['wget']
18       args: ['{{ include "common.fullname" . }}:{{ .Values.service.port }}']
19   restartPolicy: Never