do_simple/helm/templates/deployment.yaml
vitaliy 266cd60e10
All checks were successful
Build and Push to GHCR / build (push) Successful in 10m51s
cd: edit monifest
2025-11-18 00:29:28 +03:00

21 lines
405 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/chertkov/do_simple:latest"
ports:
- containerPort: 8080