mirror of
https://gitlab.durp.info/durfy/apps/durpot.git
synced 2026-05-07 16:00:33 -05:00
27 lines
656 B
YAML
27 lines
656 B
YAML
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:
|
|
- name: {{ .Chart.Name }}
|
|
image: "{{ .Values.deployment.image }}:{{ default .Chart.Version .Values.deployment.tag }}"
|
|
imagePullPolicy: {{ .Values.deployment.imagePullPolicy }}
|
|
- name: durpot
|
|
image: registry.gitlab.com/developerdurp/durpot
|
|
imagePullPolicy: Always
|
|
envFrom:
|
|
- secretRef:
|
|
name: durpot-secret
|