nemonik / taiga-helm

A helm chart for Taiga
BSD 3-Clause "New" or "Revised" License
18 stars 20 forks source link

feature request: could you document these url variables a little better? #3

Closed karezza closed 2 years ago

karezza commented 2 years ago

The following need to be changed after setting up an ingress, but its not obvious how:

env: 
  taigaURL: "http://localhost:9000"
  taigaWebsocketsURL: "ws://localhost:9000"
  taigaSitesDomain: "localhost:9000"
  taigaSitesScheme: "http"
nemonik commented 2 years ago

I am sort of translating your issue as you don't know what to do in regards to overriding the values you noted. You provide your own values file (like https://github.com/nemonik/taiga-helm/blob/master/example-values.yaml) overriding what you'd like to override in the chart's value file.

And then as the README.md states

helm install taiga nemonik/taiga --namespace taiga --create-namespace -f <the path to your values file such as my example-values.yaml file edited. You use the chart's values.yaml file as a basis.>

Also see my class automation here

https://github.com/nemonik/hands-on-DevOps-gen2/tree/master/taiga

For an idea as how to proceed.

-Michael

nemonik commented 2 years ago

You would also need to include in your values file

taigaGateway: 
  ingress:
     hosts: <your taiga fdqn>
     paths:
        - "/"
Etc etc etc

See the chart's values file and my class automation to figure things out.

This is in the readme...

nemonik commented 2 years ago

Point taken. I have updated the documentation pointing back the aforementioned Taiga project where the chart values were derived.