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
4 changes: 2 additions & 2 deletions helmfile-deploy/post-orch/helmfile.yaml.gotmpl
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ releases:
namespace: orch-platform
chart: edge-orch/common/charts/keycloak-operator
wait: true
version: 26.1.2
version: 26.1.3
values:
- values/keycloak-operator.yaml
condition: keycloak-operator.enabled
Expand Down Expand Up @@ -386,7 +386,7 @@ releases:
namespace: orch-platform
chart: edge-orch/common/charts/keycloak-instance
wait: true
version: 26.1.2
version: 26.1.3
timeout: 600
values:
- values/platform-keycloak.yaml.gotmpl
Expand Down
22 changes: 20 additions & 2 deletions helmfile-deploy/post-orch/values/keycloak-operator.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,23 @@
#
# SPDX-License-Identifier: Apache-2.0
#
#
# Values for keycloak-operator

# Disable operator trace export to localhost:4317 to avoid repeated warning logs
# while preserving upstream-required environment variables.
operator:
container:
env:
- name: KUBERNETES_NAMESPACE
valueFrom:
fieldRef:
fieldPath: metadata.namespace
- name: RELATED_IMAGE_KEYCLOAK
value: '{{ "{{ .Values.operator.relatedImage.keycloak }}" }}'
- name: QUARKUS_OPERATOR_SDK_CONTROLLERS_KEYCLOAKREALMIMPORTCONTROLLER_NAMESPACES
value: JOSDK_WATCH_CURRENT
- name: QUARKUS_OPERATOR_SDK_CONTROLLERS_KEYCLOAKCONTROLLER_NAMESPACES
value: JOSDK_WATCH_CURRENT
# Runtime key to disable OTel SDK and stop OTLP export warnings.
# QUARKUS_OTEL_TRACES_EXPORTER is a build-time property and is not effective here.
- name: QUARKUS_OTEL_SDK_DISABLED
value: "true"
Loading