Last active
February 21, 2018 17:18
-
-
Save tamalsaha/b77a9b87a1f3ad027315c9b5d146c3c1 to your computer and use it in GitHub Desktop.
RBAC enabled Kubernetes 1.9 cluster using Minikube
This file contains hidden or 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
#!/bin/bash | |
minikube delete | |
# https://github.com/kubernetes/kubeadm/issues/629 | |
minikube start \ | |
--kubernetes-version=v1.9.0 \ | |
--bootstrapper=kubeadm \ | |
--extra-config=apiserver.admission-control="NamespaceLifecycle,LimitRanger,ServiceAccount,PersistentVolumeLabel,DefaultStorageClass,ValidatingAdmissionWebhook,ResourceQuota,DefaultTolerationSeconds,MutatingAdmissionWebhook" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment