Files
hello-cicd/k8s/deployment.yaml
2026-04-14 10:37:31 +02:00

25 lines
500 B
YAML

apiVersion: apps/v1
kind: Deployment
metadata:
name: hello-cicd
namespace: student-sz11zs
spec:
replicas: 1
selector:
matchLabels:
app: hello-cicd
template:
metadata:
labels:
app: hello-cicd
spec:
imagePullSecrets:
- name: gitea-creds
containers:
- name: hello-cicd
image: git.fpmoz.sum.ba/sz11zs/hello-cicd:latest
ports:
- containerPort: 8000
env:
- name: APP_VERSION
value: "latest"