2023-04-09 19:49:50 +00:00
|
|
|
apiVersion: apps/v1
|
|
|
|
|
kind: Deployment
|
|
|
|
|
metadata:
|
|
|
|
|
namespace: durpot
|
|
|
|
|
name: durpot
|
|
|
|
|
labels:
|
|
|
|
|
app: durpot
|
|
|
|
|
spec:
|
|
|
|
|
selector:
|
|
|
|
|
matchLabels:
|
|
|
|
|
app: durpot
|
|
|
|
|
replicas: 1
|
|
|
|
|
template:
|
|
|
|
|
metadata:
|
|
|
|
|
labels:
|
|
|
|
|
app: durpot
|
|
|
|
|
spec:
|
|
|
|
|
containers:
|
2023-05-27 16:55:03 -05:00
|
|
|
- name: {{ .Chart.Name }}
|
|
|
|
|
image: "{{ .Values.deployment.image }}:{{ default .Chart.Version .Values.deployment.tag }}"
|
|
|
|
|
imagePullPolicy: {{ .Values.deployment.imagePullPolicy }}
|
2023-04-09 19:49:50 +00:00
|
|
|
- name: durpot
|
|
|
|
|
image: registry.gitlab.com/developerdurp/durpot
|
|
|
|
|
imagePullPolicy: Always
|
|
|
|
|
envFrom:
|
|
|
|
|
- secretRef:
|
|
|
|
|
name: durpot-secret
|