From 3751fdec33705147a3a1b4c9daf065bbfd2ba746 Mon Sep 17 00:00:00 2001 From: trick77 Date: Sun, 17 May 2026 11:26:11 +0200 Subject: [PATCH] fix(openshift): default RIPTIDE_ENV to 'dev' instead of 'unknown' sentinel Align with noergler, which just defaults to 'dev' when the env var isn't set rather than carrying a loud sentinel. --- openshift/collector/configmap-app.yaml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/openshift/collector/configmap-app.yaml b/openshift/collector/configmap-app.yaml index 7e81c2a..01ee4b5 100644 --- a/openshift/collector/configmap-app.yaml +++ b/openshift/collector/configmap-app.yaml @@ -4,10 +4,7 @@ metadata: name: riptide-collector-app data: RIPTIDE_LOG_LEVEL: "INFO" - # Stamped on every log record as `env`. Each overlay MUST patch this to - # the real environment ("intg" / "prod"). The "unknown" sentinel makes a - # missing patch loud at first glance in Splunk rather than mis-tagging. - RIPTIDE_ENV: "unknown" + RIPTIDE_ENV: "dev" RIPTIDE_CONFIG_PATH: "/etc/riptide-collector/riptide.json" RIPTIDE_TEAM_KEYS_PATH: "/etc/riptide-collector-team-keys/team-keys.json" RIPTIDE_CONFIG_RELOAD_SECONDS: "30"