Commit caa92cbc authored by Kamil Trzciński's avatar Kamil Trzciński

Merge branch 'mc/feature/move-ops-dashboard-premium' into 'master'

Move operations dashboard from Ultimate to Premium

Closes #9218

See merge request gitlab-org/gitlab-ee!10586
parents 5f2b8734 4724e8ae
...@@ -2,6 +2,8 @@ ...@@ -2,6 +2,8 @@
> [Introduced](https://gitlab.com/gitlab-org/gitlab-ee/issues/5781) > [Introduced](https://gitlab.com/gitlab-org/gitlab-ee/issues/5781)
in [GitLab Ultimate](https://about.gitlab.com/pricing/) 11.5. in [GitLab Ultimate](https://about.gitlab.com/pricing/) 11.5.
[Moved](https://gitlab.com/gitlab-org/gitlab-ee/issues/9218) to
[GitLab Premium](https://about.gitlab.com/pricing/) in 11.10.
The Operations Dashboard provides a summary of each project's operational health, The Operations Dashboard provides a summary of each project's operational health,
including pipeline and alert status. including pipeline and alert status.
......
...@@ -76,6 +76,7 @@ class License < ApplicationRecord ...@@ -76,6 +76,7 @@ class License < ApplicationRecord
issues_analytics issues_analytics
merge_pipelines merge_pipelines
design_management design_management
operations_dashboard
] ]
EEP_FEATURES.freeze EEP_FEATURES.freeze
...@@ -92,7 +93,6 @@ class License < ApplicationRecord ...@@ -92,7 +93,6 @@ class License < ApplicationRecord
pod_logs pod_logs
pseudonymizer pseudonymizer
prometheus_alerts prometheus_alerts
operations_dashboard
tracing tracing
insights insights
web_ide_terminal web_ide_terminal
......
---
title: Move operations dashboard from Ultimate to Premium
merge_request: 10586
author:
type: changed
...@@ -75,7 +75,7 @@ describe Dashboard::Operations::ProjectsService do ...@@ -75,7 +75,7 @@ describe Dashboard::Operations::ProjectsService do
License::ULTIMATE_PLAN | false | true | true License::ULTIMATE_PLAN | false | true | true
License::ULTIMATE_PLAN | true | false | false License::ULTIMATE_PLAN | true | false | false
License::ULTIMATE_PLAN | true | true | false License::ULTIMATE_PLAN | true | true | false
License::PREMIUM_PLAN | false | false | false License::PREMIUM_PLAN | false | false | true
nil | false | false | false nil | false | false | false
end end
...@@ -97,7 +97,7 @@ describe Dashboard::Operations::ProjectsService do ...@@ -97,7 +97,7 @@ describe Dashboard::Operations::ProjectsService do
where(:check_namespace_plan, :plan, :available) do where(:check_namespace_plan, :plan, :available) do
true | :gold | true true | :gold | true
true | :silver | false true | :silver | true
true | nil | false true | nil | false
false | :gold | true false | :gold | true
false | :silver | true false | :silver | true
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment