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
Once the server is running you can see the UI either by port forwarding or using kubefwd for the operator pod.
17
+
18
+
For development you can also run locally yarn in the web-app/ folder just make sure the port in `package.json` is the same as the operator console service.
19
+
```
20
+
"proxy": "http://localhost:9090/"
21
+
```
22
+
23
+
And in the web-app run:
24
+
```
25
+
yarn install
26
+
yarn start
27
+
```
28
+
29
+
## Deploy operator in K8s with custom image using Kind:
30
+
31
+
Build an image like:
32
+
```
33
+
make build TAG="minio/operator:<YOUR_TAG>" && kind load docker-image minio/operator:<YOUR_TAG>
34
+
```
35
+
36
+
And update the image from resources/base/ for `console-ui.yaml` and `deployment.yaml`
0 commit comments