Fixed the base url when using Kubernetes port fw

This commit is contained in:
Rodrigue Chakode 2021-09-26 11:31:41 +02:00 committed by GitHub
parent 450dcf0d48
commit 73a3eb0266
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -104,7 +104,7 @@ Proceed with the deployment as follows:
* Check that the application is up and running. * Check that the application is up and running.
``` ```
kubectl -n hugo-mx-gateway port-forward service/hugo-mx-gateway 8080:80 kubectl -n hugo-mx-gateway port-forward service/hugo-mx-gateway 8080:80
curl https://127.0.0.1:8080/ curl http://127.0.0.1:8080/
{"status": "ok"} {"status": "ok"}
``` ```