Static Helm Configuration
Each Helm Chart has default values that will be used if no values are supplied.
You can override any of the default values of the Helm Chart with custom static values, which are applied to all package deployments.
Web Interface Instructions
Steps
- Use the Text editor to enter custom static values e.g.,
cpu: 20m
. Also see the example yaml. - Click the Continue button.
Screenshot(s):
What comes next?
Related Reading
- Learn how to view the default Helm Chart values
- Learn how to use Wayfinder's System Variables
- Learn about configuring Default Helm Charts
- Learn about configuring Dynamic Helm Charts
Examples
domainFilters:
{{- range .Cluster.DNSZones }}
- {{ .Domain }}
{{- end }}
resources:
limits:
cpu: 20m <-- static value
memory: 50Mi <-- static value
serviceAccount:
create: true
name: {{ .Package.WorkloadIdentity.ServiceAccountName }}
annotations: {{ .Package.WorkloadIdentity.ServiceAccountAnnotations | toYaml | indent 4 }}
podLabels:{{ .Package.WorkloadIdentity.PodLabels | toYaml | indent 2 }}