Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions charts/templates/_helpers.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,9 @@ helm.sh/chart: {{ include "hyperfleet-adapter.chart" . }}
{{ include "hyperfleet-adapter.selectorLabels" . }}
app.kubernetes.io/version: {{ .Values.image.tag | default .Chart.AppVersion | quote }}
app.kubernetes.io/managed-by: {{ .Release.Service }}
{{- with .Values.labels }}
{{ toYaml . }}
{{- end }}
{{- end }}

{{/*
Expand Down
10 changes: 10 additions & 0 deletions charts/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -226,6 +226,16 @@ podDisruptionBudget:
# -- Additional labels applied to all pods
podLabels: {}

# -- Custom labels applied to all resources managed by this Helm chart
# (Deployment, Service, ServiceAccount, ClusterRole, ClusterRoleBinding, ConfigMaps, etc.)
# Useful for labeling resources for cleanup, tracking, or organization.
# Example:
# labels:
# environment: production
# team: platform
# hyperfleet-e2e-run: e2e-20260615-102422-bb5nfo2d
# labels: {}

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
# labels: {}
labels: {}

nit: Every other empty-map default in this file is uncommented (podLabels: {}, podAnnotations: {}, affinity: {}, serviceMonitor.labels: {}). Uncomment so the key is visible in helm show values and follows the same pattern.


# -- Pod-level security context
podSecurityContext:
# -- Filesystem group for volume mounts
Expand Down