kind: ReplicaSet

From wikieduonline
Jump to navigation Jump to search

https://kubernetes.io/docs/concepts/workloads/controllers/replicaset/#example

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

Related[edit]

See also[edit]

Advertising: