[DO-1377] rename chart

This commit is contained in:
Rustam Tagaev
2024-12-02 12:25:28 +03:00
parent f805045dcb
commit 596607b291
11 changed files with 35 additions and 47 deletions

View File

@@ -1,9 +1,9 @@
apiVersion: v1
kind: Pod
metadata:
name: "{{ include "myHelmChart.fullname" . }}-test-connection"
name: "{{ include "openresty.fullname" . }}-test-connection"
labels:
{{- include "myHelmChart.labels" . | nindent 4 }}
{{- include "openresty.labels" . | nindent 4 }}
annotations:
"helm.sh/hook": test
spec:
@@ -11,5 +11,5 @@ spec:
- name: wget
image: busybox
command: ['wget']
args: ['{{ include "myHelmChart.fullname" . }}:{{ .Values.service.port }}']
args: ['{{ include "openresty.fullname" . }}:{{ .Values.service.port }}']
restartPolicy: Never