summaryrefslogtreecommitdiff
path: root/lib/gitlab/prometheus/query_variables.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/gitlab/prometheus/query_variables.rb')
-rw-r--r--lib/gitlab/prometheus/query_variables.rb5
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/gitlab/prometheus/query_variables.rb b/lib/gitlab/prometheus/query_variables.rb
index 1cc85d4b4a6..9cc21129547 100644
--- a/lib/gitlab/prometheus/query_variables.rb
+++ b/lib/gitlab/prometheus/query_variables.rb
@@ -4,9 +4,12 @@ module Gitlab
module Prometheus
module QueryVariables
def self.call(environment)
+ deployment_platform = environment.deployment_platform
+ namespace = deployment_platform&.kubernetes_namespace_for(environment.project) || ''
+
{
ci_environment_slug: environment.slug,
- kube_namespace: environment.deployment_platform&.actual_namespace || '',
+ kube_namespace: namespace,
environment_filter: %{container_name!="POD",environment="#{environment.slug}"}
}
end