You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: site/helm-charts.md
+21Lines changed: 21 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -16,6 +16,27 @@ The WebLogic Kubernetes Operator uses Helm to create and deploy any necessary re
16
16
17
17
Helm has two parts: a client (Helm) and a server (Tiller). Tiller runs inside of your Kubernetes cluster, and manages releases (installations) of your charts. See https://github.com/kubernetes/helm/blob/master/docs/install.md for detailed instructions on installing Helm and Tiller.
18
18
19
+
In order to use Helm to install and manage the operator, you need to ensure that the Service Account that Tiller uses
20
+
has the `cluster-admin` role. The default would be `default` in namespace `kube-system`. You can give that Service
21
+
Account the necessary permissions with this command:
22
+
23
+
```
24
+
cat << EOF | kubectl apply -f -
25
+
apiVersion: rbac.authorization.k8s.io/v1beta1
26
+
kind: ClusterRoleBinding
27
+
metadata:
28
+
name: tiller-cluster-admin
29
+
roleRef:
30
+
name: cluster-admin
31
+
subjects:
32
+
- kind: ServiceAccount
33
+
name: default
34
+
namespace: kube-system
35
+
userNames:
36
+
- system:serviceaccount:kube-system:default
37
+
EOF
38
+
```
39
+
19
40
## Operator's Helm chart configuration
20
41
21
42
The operator Helm chart is pre-configured with default values for the configuration of the operator.
0 commit comments