updated ingress
This commit is contained in:
@@ -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 }}
|
||||
|
||||
Reference in New Issue
Block a user