kubernetes-up-and-running/9-1-kuard-rs.yaml
kammous 4f5c952545 Rename all files accordingly to kuard 2nd edition
- Move all objects, except for chapter 17 from v1beta to v1
- Fix an error on kuard image for Job chapter (#12)
2020-04-04 13:58:19 +02:00

22 lines
352 B
YAML

apiVersion: apps/v1
kind: ReplicaSet
metadata:
labels:
app: kuard
name: kuard
spec:
replicas: 10
selector:
matchLabels:
app: kuard
version: "2"
template:
metadata:
labels:
app: kuard
version: "2"
spec:
containers:
- name: kuard
image: "gcr.io/kuar-demo/kuard-amd64:2"