templates added

This commit is contained in:
titver968
2025-02-28 12:54:09 +01:00
parent af9ce09d64
commit 5cb47623b3
3 changed files with 61 additions and 0 deletions

20
templates/deployment.yaml Normal file
View File

@@ -0,0 +1,20 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: {{ include "tatort.fullname" . }}
spec:
replicas: 1
selector:
matchLabels:
app: {{ include "tatort.name" . }}
template:
metadata:
labels:
app: {{ include "tatort.name" . }}
spec:
containers:
- name: tatort-container
image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}"
imagePullPolicy: {{ .Values.image.pullPolicy }}
ports:
- containerPort: 80