File tree Expand file tree Collapse file tree 1 file changed +17
-1
lines changed Expand file tree Collapse file tree 1 file changed +17
-1
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ package manager) chart to deploy in a wink on any of these platforms.
11
11
12
12
1 . Create a Kubernetes cluster on your preferred Cloud provider or install Kubernetes locally on your servers
13
13
2 . Install [ Helm] ( https://helm.sh/ ) locally and on your cluster following their documentation
14
- 3 . Be sure to be connected to the right Kubernetes container
14
+ 3 . Be sure to be connected to the right Kubernetes container e.g. running: ` gcloud config get-value core/project `
15
15
4 . Update the Helm repo: ` helm repo update `
16
16
17
17
## Creating and Publishing the Docker Images
@@ -71,3 +71,19 @@ Before running your application for the first time, be sure to create the databa
71
71
72
72
PHP_POD=$(kubectl --namespace=bar get pods -l app=php -o jsonpath="{.items[0].metadata.name}")
73
73
kubectl --namespace=bar exec -it $PHP_POD -- bin/console doctrine:schema:create
74
+
75
+ ## Tiller RBAC Issue
76
+
77
+ We noticed that some tiller RBAC trouble occured, you generally can resolve it running:
78
+
79
+ kubectl create serviceaccount --namespace kube-system tiller
80
+ serviceaccount "tiller" created
81
+
82
+ kubectl create clusterrolebinding tiller-cluster-rule --clusterrole=cluster-admin --serviceaccount=kube-system:tiller
83
+ clusterrolebinding "tiller-cluster-rule" created
84
+
85
+ kubectl patch deploy --namespace kube-system tiller-deploy -p '{"spec":{"template":{"spec":{"serviceAccount":"tiller"}}}}'
86
+ deployment "tiller-deploy" patched
87
+
88
+ Please, see the [ related issue] ( https://github.com/kubernetes/helm/issues/3130 ) for further details / informations
89
+ You can also take a look to the [ related documentation] ( https://github.com/kubernetes/helm/blob/master/docs/rbac.md )
You can’t perform that action at this time.
0 commit comments