File tree Expand file tree Collapse file tree 1 file changed +8
-6
lines changed Expand file tree Collapse file tree 1 file changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -9,24 +9,26 @@ You’ll need a Kubernetes cluster to run against. You can use [KIND](https://si
9
9
** Note:** Your controller will automatically use the current context in your kubeconfig file (i.e. whatever cluster ` kubectl cluster-info ` shows).
10
10
11
11
### Running on the cluster
12
- 1 . Install Instances of Custom Resources:
12
+
13
+ 1 . Build and push your image to the location specified by ` IMG ` :
13
14
14
15
``` sh
15
- kubectl apply -f config/samples/
16
+ make docker-build docker-push IMG= < some-registry > /ibm-object-csi-driver-operator:tag
16
17
```
17
18
18
- 2 . Build and push your image to the location specified by ` IMG ` :
19
+ 2 . Deploy the controller to the cluster with the image specified by ` IMG ` :
19
20
20
21
``` sh
21
- make docker-build docker-push IMG=< some-registry> /ibm-object-csi-driver-operator:tag
22
+ make deploy IMG=< some-registry> /ibm-object-csi-driver-operator:tag
22
23
```
23
24
24
- 3 . Deploy the controller to the cluster with the image specified by ` IMG ` :
25
+ 3 . Install Instances of Custom Resources :
25
26
26
27
``` sh
27
- make deploy IMG= < some-registry > /ibm-object-csi-driver-operator:tag
28
+ kubectl apply -f config/samples/
28
29
```
29
30
31
+
30
32
### Uninstall CRDs
31
33
To delete the CRDs from the cluster:
32
34
You can’t perform that action at this time.
0 commit comments