21 lines
405 B
YAML
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 |