Files
kubernetes-course/istio/helloworld-v2.yaml
2019-09-29 14:56:01 +02:00

27 lines
481 B
YAML

apiVersion: apps/v1
kind: Deployment
metadata:
name: hello-v2
spec:
replicas: 3
selector:
matchLabels:
app: hello
template:
metadata:
labels:
app: hello
version: v2
spec:
containers:
- name: hello
image: wardviaene/http-echo
env:
- name: TEXT
value: hello, this is v2
- name: NEXT
value: "world-2:8080"
ports:
- name: http
containerPort: 8080