c0612aed8d
* add pod preset page for language/id * fix formatting * fix typos and wording * fix formatting and add few missed lines * fix note formatting * add Garbage Collection page in Bahasa Indonesia and minor fix on Pod Preset page * remove replication.yaml * add controllers/replicaset.yaml to example * fix formatting error * change dependent to dependen and fix note translation * delete trailing space in heading
17 lines
314 B
YAML
17 lines
314 B
YAML
apiVersion: apps/v1
|
|
kind: ReplicaSet
|
|
metadata:
|
|
name: my-repset
|
|
spec:
|
|
replicas: 3
|
|
selector:
|
|
matchLabels:
|
|
pod-is-for: garbage-collection-example
|
|
template:
|
|
metadata:
|
|
labels:
|
|
pod-is-for: garbage-collection-example
|
|
spec:
|
|
containers:
|
|
- name: nginx
|
|
image: nginx |