do_simple/helm/templates/deployment.yaml
vitaliy 66dd5de588
Some checks failed
Build and Push to GHCR / build (push) Has been cancelled
cd: edit monifest
2025-11-18 00:46:17 +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