Helm charts
Helm get: helm get values <release name> - It will get all the values user passed using --set option when using helm install command helm get values <release name> -a - It will give all computed values. More info here To dry run: helm install <name> --debug --dry-run <chartsfolder>/ Eg: helm create test helm install my-app --debug --dry-run test/ Named Template: video indent vs nindent: indent The indent function indents every line in a given string to the specified indent width. This is useful when aligning multi-line strings: indent 4 $lots_of_text The above will indent every line of text by 4 space characters. nindent The nindent function is the same as the indent function, but prepends a new line to the beginning of the string. nindent 4 $lots_of_text The above will indent every line of text by 4 space characters and add a new line to the beginning. '-' (dash symbol) in curly braces: Explanation: here Not...