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
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ image:
tag: "fe613cc832bc53753274fb6e1a178dd8d00d2c33" # {"$imagepolicy": "development:openfilter-pipelines-controller:tag"}
claimerImage:
repository: plainsightai/openfilter-pipelines-claimer
tag: "fe613cc832bc53753274fb6e1a178dd8d00d2c33" # {"$imagepolicy": "development:openfilter-pipelines-controller:tag"}
telemetry:
exporterType: otlp
# Scheme prefix is load-bearing. openfilter ≥ 0.2.1 infers OTLP gRPC TLS
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ image:
tag: "fe613cc832bc53753274fb6e1a178dd8d00d2c33" # {"$imagepolicy": "lab:openfilter-pipelines-controller:tag"}
claimerImage:
repository: plainsightai/openfilter-pipelines-claimer
tag: "fe613cc832bc53753274fb6e1a178dd8d00d2c33" # {"$imagepolicy": "lab:openfilter-pipelines-controller:tag"}
telemetry:
# Lab has no monitoring overlay (no controllers/monitoring/overrides/lab.yaml),
# so opt out of the base.yaml OTLP export to avoid filter pods retrying
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ image:
tag: "fe613cc832bc53753274fb6e1a178dd8d00d2c33" # {"$imagepolicy": "production:openfilter-pipelines-controller:tag"}
claimerImage:
repository: plainsightai/openfilter-pipelines-claimer
tag: "fe613cc832bc53753274fb6e1a178dd8d00d2c33" # {"$imagepolicy": "production:openfilter-pipelines-controller:tag"}
resources:
requests:
cpu: "100m"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ image:
tag: "fe613cc832bc53753274fb6e1a178dd8d00d2c33" # {"$imagepolicy": "staging:openfilter-pipelines-controller:tag"}
claimerImage:
repository: plainsightai/openfilter-pipelines-claimer
tag: "fe613cc832bc53753274fb6e1a178dd8d00d2c33" # {"$imagepolicy": "staging:openfilter-pipelines-controller:tag"}
telemetry:
exporterType: otlp
# Scheme prefix is load-bearing. openfilter ≥ 0.2.1 infers OTLP gRPC TLS
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,12 @@ spec:
{{- end }}
{{- end }}
- name: CLAIMER_IMAGE
value: "{{ .Values.claimerImage.repository }}:{{ .Values.claimerImage.tag | default .Chart.AppVersion }}"
# Fall through to image.tag when claimerImage.tag is unset so
# ArgoCD Image Updater (which only rewrites image.tag from the
# gitops `image-list` annotation) keeps the controller + claimer
# in lockstep. AppVersion is the last-resort floor for fresh
# installs that haven't been bumped yet.
value: "{{ .Values.claimerImage.repository }}:{{ .Values.claimerImage.tag | default .Values.image.tag | default .Chart.AppVersion }}"
{{- if .Values.gpuNodeSelector }}
- name: GPU_NODE_SELECTOR
value: {{ .Values.gpuNodeSelector | quote }}
Expand Down
Loading