5 Kasım 2022 Cumartesi

Kubernetes kind : ReplicaSet

Giriş
spec/selector hangi podlara uygulanacağını belirtir.
spec/template podları yaratırken kullanılacak şablonu belirtir. Örneğin spec/template/containers pod için kullanılacak image ismini belirtir.

kubectl get replicasets ile replicasetler listelenir

Örnek
Şöyle yaparız
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

Hiç yorum yok:

Yorum Gönder

Cluster Propotional Autoscaler - ReplicaSet Ekler/Siler

Giriş Açıklaması şöyle CPA aims to horizontally scale the number of Pod replicas based on the cluster’s scale. A common example is DNS ser...