Difference between revisions of "Kind: ReplicaSet"

From wikieduonline
Jump to navigation Jump to search
Line 1: Line 1:
 
{{lc}}
 
{{lc}}
kind: [[ReplicaSet]]
+
 
 +
 
 +
<pre>
 +
apiVersion: apps/v1
 +
kind: ReplicaSet
 +
metadata:
 +
  name: frontend
 +
  labels:
 +
    app: guestbook
 +
    tier: frontend
 +
spec:
 +
  # modify replicas according to your case
 +
  replicas: 3
 +
  selector:
 +
    matchLabels:
 +
      tier: frontend
 +
  template:
 +
    metadata:
 +
      labels:
 +
        tier: frontend
 +
    spec:
 +
      containers:
 +
      - name: php-redis
 +
        image: gcr.io/google_samples/gb-frontend:v3
 +
</pre>
 +
 
  
 
  [[kind: Deployment]]
 
  [[kind: Deployment]]

Revision as of 09:25, 16 December 2022


apiVersion: apps/v1
kind: ReplicaSet
metadata:
  name: frontend
  labels:
    app: guestbook
    tier: frontend
spec:
  # modify replicas according to your case
  replicas: 3
  selector:
    matchLabels:
      tier: frontend
  template:
    metadata:
      labels:
        tier: frontend
    spec:
      containers:
      - name: php-redis
        image: gcr.io/google_samples/gb-frontend:v3


kind: Deployment

See also

Advertising: