12 Temmuz 2022 Salı

azure Volume

Giriş 
Açıklaması şöyle
AWS/AKS/GKE and other cloud providers provide storage to be used by their managed Kubernetes services.
Örnek
Şöyle yaparız
apiVersion: v1
kind: Pod
metadata:
 name: azure-volume
spec:
 containers:
  - image: httpd
    name: azure-volume
    volumeMounts:
      - name: azureVolume
        mountPath: /mnt/azure
 volumes:
      - name: azure
        azureDisk:
          diskName: my-test.vhd
          diskURI: https://my.blob.com/vhd/my-test.vhd
Açıklaması şöyle
In the above specification, 
- diskName : Name of the VHD blob object
- diskURI : URI of the VHD blob

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...