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

Kubernetes kind: Cluster

Örnek Şöyle yaparız apiVersion: cluster.k8s.io/v1alpha1 kind: Cluster metadata: name: my-cluster spec: autoscaler: enabled: true ...