add first and second services

This commit is contained in:
Vbarinov
2023-04-13 14:40:25 +03:00
parent 0088a0ee52
commit 1a9731974a
22 changed files with 813 additions and 0 deletions
@@ -0,0 +1,15 @@
apiVersion: v1
kind: Pod
metadata:
name: "{{ include "second-service.fullname" . }}-test-connection"
labels:
{{- include "second-service.labels" . | nindent 4 }}
annotations:
"helm.sh/hook": test
spec:
containers:
- name: wget
image: busybox
command: ['wget']
args: ['{{ include "second-service.fullname" . }}:{{ .Values.service.port }}']
restartPolicy: Never