This repository has been archived by the owner on Jan 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 558
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
change default azure disk storage class for managed disk cluster (#1817)
* change default storage class for managed disk cluster * change unmanaged-standard to managed-standard class
- Loading branch information
1 parent
78d158e
commit 8d39c8c
Showing
3 changed files
with
44 additions
and
2 deletions.
There are no files selected for viewing
36 changes: 36 additions & 0 deletions
36
parts/kubernetesmasteraddons-managed-azure-storage-classes.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
apiVersion: storage.k8s.io/v1beta1 | ||
kind: StorageClass | ||
metadata: | ||
name: default | ||
annotations: | ||
storageclass.beta.kubernetes.io/is-default-class: "true" | ||
labels: | ||
kubernetes.io/cluster-service: "true" | ||
provisioner: kubernetes.io/azure-disk | ||
parameters: | ||
kind: Managed | ||
storageaccounttype: Standard_LRS | ||
--- | ||
apiVersion: storage.k8s.io/v1beta1 | ||
kind: StorageClass | ||
metadata: | ||
name: managed-premium | ||
annotations: | ||
labels: | ||
kubernetes.io/cluster-service: "true" | ||
provisioner: kubernetes.io/azure-disk | ||
parameters: | ||
kind: Managed | ||
storageaccounttype: Premium_LRS | ||
--- | ||
apiVersion: storage.k8s.io/v1beta1 | ||
kind: StorageClass | ||
metadata: | ||
name: managed-standard | ||
annotations: | ||
labels: | ||
kubernetes.io/cluster-service: "true" | ||
provisioner: kubernetes.io/azure-disk | ||
parameters: | ||
kind: Managed | ||
storageaccounttype: Standard_LRS |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters