do_simple/helm/templates/deployment.yaml
vitaliy 7825ac6a05
All checks were successful
Go / build (push) Successful in 11m49s
k8s: helm manifest
2025-11-13 15:41:24 +03:00

21 lines
412 B
YAML

apiVersion: apps/v1
kind: Deployment
metadata:
name: go_hello
labels:
app: go_hello
spec:
replicas: {{ .values.replicaCount }}
selector:
matchLabels:
app: go_hello
template:
metadata:
labels:
app: go_hello
spec:
containers:
- name: go_hello
image: "git.gocommunity.ru/go-hello:{{ .Chart.AppVersion }}"
ports:
- containerPort: 8080