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
f. Then patch the WebLogic image according to these [instructions](https://github.com/oracle/docker-images/tree/master/OracleWebLogic/samples/12213-patch-wls-for-k8s),
38
38
and copy the image to all nodes in your cluster, or put it in a Docker registry that your cluster can access.
39
39
40
+
g. Grant the Helm service account the `cluster-admin` role:
41
+
42
+
```
43
+
$ cat <<EOF | kubectl apply -f -
44
+
apiVersion: rbac.authorization.k8s.io/v1
45
+
kind: ClusterRoleBinding
46
+
metadata:
47
+
name: helm-user-cluster-admin-role
48
+
roleRef:
49
+
apiGroup: rbac.authorization.k8s.io
50
+
kind: ClusterRole
51
+
name: cluster-admin
52
+
subjects:
53
+
- kind: ServiceAccount
54
+
name: default
55
+
namespace: kube-system
56
+
EOF
57
+
```
58
+
40
59
## 2. Create a Traefik (Ingress-based) load balancer.
41
60
42
61
Use `helm` to install the [Traefik](../kubernetes/samples/charts/traefik/README.md) load balancer. Use the [values.yaml](../kubernetes/samples/charts/traefik/values.yaml) in the sample but set `kubernetes.namespaces` specifically.
@@ -62,25 +81,8 @@ b. Create a service account for the operator in the operator's namespace:
0 commit comments