Files
website/docs/tasks/inject-data-application/podpreset-replicaset.yaml
Kai Chen f15d03a1f6 Update the workloads API versions to 1.9 for rest of the docs (#7099)
* Update the workloads API versions to 1.9 for rest of the docs

* Remove comments per CR feedback

* Add a comment to be clear about which versions will work with the example
2018-02-01 15:40:04 -08:00

30 lines
601 B
YAML

apiVersion: apps/v1
kind: ReplicaSet
metadata:
name: frontend
spec:
replicas: 3
selector:
matchLabels:
role: frontend
matchExpressions:
- {key: role, operator: In, values: [frontend]}
template:
metadata:
labels:
app: guestbook
role: frontend
spec:
containers:
- name: php-redis
image: gcr.io/google_samples/gb-frontend:v3
resources:
requests:
cpu: 100m
memory: 100Mi
env:
- name: GET_HOSTS_FROM
value: dns
ports:
- containerPort: 80