Simple service with posting client ip to postgre

This commit is contained in:
Vbarinov
2023-03-18 05:21:13 +05:30
parent f7d04a4f13
commit ac880ad719
15 changed files with 520 additions and 0 deletions
@@ -0,0 +1,15 @@
apiVersion: v1
kind: Pod
metadata:
name: "{{ include "playgroud.fullname" . }}-test-connection"
labels:
{{- include "playgroud.labels" . | nindent 4 }}
annotations:
"helm.sh/hook": test
spec:
containers:
- name: wget
image: busybox
command: ['wget']
args: ['{{ include "playgroud.fullname" . }}:{{ .Values.service.port }}']
restartPolicy: Never