Skip to content

Commit

Permalink
notes on retrieving langkit hostname
Browse files Browse the repository at this point in the history
  • Loading branch information
AnchorArray committed Apr 11, 2024
1 parent 69e5954 commit 2029a56
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions charts/langkit/docs/quickstart/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -118,3 +118,19 @@ registry_token=""
--registry-username "${registry_username}" \
--registry-token "${registry_token}"
```
1. Retrieve Langkit URL
> :warning: A Network Load Balancer is created by the Langkit service. You
> can reach the service at the DNS address of the load balancer. It may take
> a few moments for the load balancer to be provisioned. The following
> command will return the hostname once it's available.

```shell
hostname=$(kubectl get service langkit \
--namespace "${namespace}" \
-o json | \
jq -r '.status.loadBalancer.ingress[0].hostname')
printf "\nLangkit Hostname: http://${hostname}\n\n"
```

0 comments on commit 2029a56

Please sign in to comment.