Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

New guy here. I was wondering if anyone could help me with the differentiating characteristics that I could use to identify ingress controllers vs ingresses via yamls and services. I have a preexisting cluster and I think the Ingress controller may have been installed via helm but I am not sure. Is there a way to get a look at the yaml that helm uses when installing the nginx ingress controller?


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
3.9k views
Welcome To Ask or Share your Answers For Others

1 Answer

Answer1

If you want to see the YAML a chart might generate you can use the template command

helm template rel1 repo1/chart1 -f values.yaml

Answer2

If you want to see the manifest that helm used in the past?

helm history myrelease -n namespace1
helm get manifest myrelease --revision 5 -n namespace1

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...