Skip to main content

Static Helm Configuration

< Helm Configuration Overview

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):

Use static values



What comes next?



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 }}