Skip to content

Adding storage class files for AKS #130

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jan 21, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Zookeeper at `zookeeper.kafka.svc.cluster.local:2181`.

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

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

## Start Zookeeper

Expand Down
9 changes: 9 additions & 0 deletions configure/aks-storageclass-broker-managed.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
apiVersion: storage.k8s.io/v1
kind: StorageClass
metadata:
name: kafka-broker
provisioner: kubernetes.io/azure-disk
reclaimPolicy: Retain
parameters:
kind: "Managed"
storageaccounttype: Premium_LRS
9 changes: 9 additions & 0 deletions configure/aks-storageclass-zookeeper-managed.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
apiVersion: storage.k8s.io/v1
kind: StorageClass
metadata:
name: kafka-zookeeper
provisioner: kubernetes.io/azure-disk
reclaimPolicy: Retain
parameters:
kind: "Managed"
storageaccounttype: Premium_LRS