updated ingress

This commit is contained in:
2026-07-30 12:10:12 +02:00
parent 24b6bae55a
commit 234ae789c3
3 changed files with 43 additions and 38 deletions
+7 -7
View File
@@ -1,24 +1,24 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: ${{ .Values.app }}
name: {{ .Values.app }}
labels:
app: ${{ .Values.app }}
app: {{ .Values.app }}
namespace: spearhead-docs
spec:
replicas: 1
selector:
matchLabels:
app: ${{ .Values.app }}
app: {{ .Values.app }}
template:
metadata:
labels:
app: ${{ .Values.app }}
app: {{ .Values.app }}
spec:
containers:
- name: ${{ .Values.app }}
image: ${{ .Values.image.registry }}/${{ .Values.image.repository }}:${{ .Values.image.tag }}
- name: {{ .Values.app }}
image: {{ .Values.image.registry }}/{{ .Values.image.repository }}:{{ .Values.image.tag }}
ports:
- containerPort: ${{ .Values.ports.containerPort }}
- containerPort: {{ .Values.ports.containerPort }}