Skip to content

Commit 1bfdd7b

Browse files
committed
Adding storage class files for AKS
1 parent b6a1004 commit 1bfdd7b

File tree

3 files changed

+19
-1
lines changed

3 files changed

+19
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Zookeeper at `zookeeper.kafka.svc.cluster.local:2181`.
3535

3636
For Minikube run `kubectl apply -f configure/minikube-storageclass-broker.yml; kubectl apply -f configure/minikube-storageclass-zookeeper.yml`.
3737

38-
There's a similar setup for GKE, `configure/gke-*`. You might want to tweak it before creating.
38+
There's a similar setup for AKS under `configure/aks-*` and for GKE under `configure/gke-*`. You might want to tweak it before creating.
3939

4040
## Start Zookeeper
4141

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
apiVersion: storage.k8s.io/v1
2+
kind: StorageClass
3+
metadata:
4+
name: kafka-broker
5+
provisioner: kubernetes.io/azure-disk
6+
reclaimPolicy: Retain
7+
parameters:
8+
kind: "Managed"
9+
storageaccounttype: Premium_LRS
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
apiVersion: storage.k8s.io/v1
2+
kind: StorageClass
3+
metadata:
4+
name: kafka-zookeeper
5+
provisioner: kubernetes.io/azure-disk
6+
reclaimPolicy: Retain
7+
parameters:
8+
kind: "Managed"
9+
storageaccounttype: Premium_LRS

0 commit comments

Comments
 (0)