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

KEDA - Kubernetes Event-Driven Autoscaling

Örnek Şöyle yaparız apiVersion: keda.sh/v1alpha1 kind: ScaledObject metadata:   name: reactive-springboot-app-scaler   namespace: default sp...