Skip to content

Commit f2071f0

Browse files
committed
Document changes for helm
1 parent 43f1b34 commit f2071f0

File tree

2 files changed

+6
-15
lines changed

2 files changed

+6
-15
lines changed

metro-ai-suite/image-based-video-search/docs/user-guide/how-to-deploy-helm.md

Lines changed: 2 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -60,21 +60,9 @@ helm install ibvs . --create-namespace -n ibvs \
6060
--set noProxy="localhost\,127.0.0.1"
6161
```
6262

63-
To get the port where the application is serving, run the following command:
6463

65-
```bash
66-
kubectl -n ibvs get svc/ibvs-app
67-
```
68-
69-
This is an example output of the previous command:
70-
71-
```text
72-
NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE
73-
ibvs-app NodePort 10.109.118.49 <none> 3000:31998/TCP 14m
74-
```
75-
76-
Now frontend should be accessible at http://localhost:31998/.
77-
> Note: To access the above url remotely, replace the `localhost` with your system IP address.
64+
Now frontend should be accessible at https://<ip-addr>:30443/.
65+
> Note: To access the above url remotely, replace the `<ip-addr>` with your system IP address.
7866
7967
Finally, the app can be uninstalled using the following command:
8068

metro-ai-suite/image-based-video-search/src/nginx/generate_certs.sh

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,7 @@ if [ ! -f "$SSL_DIR/server.crt" ] || [ ! -f "$SSL_DIR/server.key" ]; then
1818
-keyout "$SSL_DIR/server.key" \
1919
-out "$SSL_DIR/server.crt" \
2020
-subj "/C=US/ST=CA/L=San Francisco/O=Intel/OU=Edge AI/CN=localhost"
21-
fi
21+
fi
22+
23+
# Start nginx
24+
nginx -g "daemon off;"

0 commit comments

Comments
 (0)