File tree 3 files changed +8
-4
lines changed
3 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -111,19 +111,19 @@ There is a much more detailed [Installation Reference](docs/README.md) available
111
111
112
112
2 . Apply the Namespace
113
113
114
- ``` kubectl apply -f deployments/namespace.yaml ```
114
+ ``` kubectl apply -f deployments/deployment/ namespace.yaml ```
115
115
116
116
3 . Apply the RBAC resources
117
117
118
118
``` ./deployments/rbac/apply.sh ```
119
119
120
120
4 . Update / Apply the ConfigMap (For best results update the ` nginx-hosts ` values first)
121
121
122
- ``` kubectl apply -f deployments/configmap.yaml ```
122
+ ``` kubectl apply -f deployments/deployment/ configmap.yaml ```
123
123
124
124
5 . Apply the Deployment
125
125
126
- ``` kubectl apply -f deployments/deployment.yaml ```
126
+ ``` kubectl apply -f deployments/deployment/deployment .yaml ```
127
127
128
128
6 . Check the logs
129
129
Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
3
+ pushd " $( dirname " $0 " ) "
4
+
3
5
echo " Applying all RBAC resources..."
4
6
5
7
kubectl apply -f serviceaccount.yaml
6
8
kubectl apply -f clusterrole.yaml
7
9
kubectl apply -f clusterrolebinding.yaml
8
10
kubectl apply -f secret.yaml
11
+
12
+ popd
Original file line number Diff line number Diff line change 1
1
apiVersion : rbac.authorization.k8s.io/v1
2
2
kind : ClusterRole
3
3
metadata :
4
- name : ingress- resource-get-watch-list
4
+ name : resource-get-watch-list
5
5
namespace : nlk
6
6
rules :
7
7
- apiGroups :
You can’t perform that action at this time.
0 commit comments