Values¶
-
class
avionix.chart.values_yaml.Value(value_reference)¶ Used to reference a value specified in
Values.- Parameters
value_reference (
str) –A reference string specifying a value in values.yaml using dot notation.
For example,
The string
'is.my.value'would be translated in the yaml output to
'{{ .Values.is.my.value }}'which in helm will retrieve the value specified in
Valuesat{"is": {"my": { "value": <some_value> } } }