Initial Install on Azure #298
-
There seem to be a handful of steps that are not called out in the documentation. For people who work with these things every day it may be obvious, but it is unclear for those who do not. Take for example the initial helm charts. There are a lot of values like this: https://terrakube-ui.domain.com It would be advisable to walk through changing the service ingress to "LoadBalancer" along with populating the generated public IP's to support external connectivity. Just deploying the helm chart as-is will leave the service inaccessible. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 21 replies
-
Hello @erick-prosimo, I understand your point there are like different parameters that you need to change in order to make the installation work. For the domain that you need to update I was thinking maybe just leaving one parameter asking the domain that you will use and create some output in the helm chart with the URLs for the api, registry, dex component, etc instead of filling all the URL in the helm chart values. Example domain: myterrakube.com And in the helm chart output could be something like this. Your terrakube installation is complete the URLs will be the following:
Api: terrakube-api.myterrakube.com
Registry: terrakube-reg.myterrakube.com
Dex: terrakube-api.myterrakube.com/dex
But there are other parameters I am not really sure what could be the best practice becuase there are like several configuration options depending of where you are installing terrakube this is the reason we left like several examples in the helm chart repository. All suggestions, ideas are welcome even if you want to contribute feel free to send the pull request to improve the documentation. |
Beta Was this translation helpful? Give feedback.
Hello @erick-prosimo, I understand your point there are like different parameters that you need to change in order to make the installation work.
For the domain that you need to update I was thinking maybe just leaving one parameter asking the domain that you will use and create some output in the helm chart with the URLs for the api, registry, dex component, etc instead of filling all the URL in the helm chart values.
Example
And in the helm chart output could be something like this.
Your terrakube installation is complete the URLs will be the following: Api: terrakube-api.myterrakube.com Registry: terrakube-reg.myterrakube.com Dex: terrakube-api.myterrakube.com/…