Commit 1f34d625 authored by Jose Vargas's avatar Jose Vargas

Remove runner_instructions ff

This removes the runner_instructions feature flag
for the runner instructions modal
parent a2eb891c
...@@ -10,7 +10,5 @@ document.addEventListener('DOMContentLoaded', () => { ...@@ -10,7 +10,5 @@ document.addEventListener('DOMContentLoaded', () => {
useDefaultState: true, useDefaultState: true,
}); });
if (gon?.features?.runnerInstructions) {
initInstallRunner(); initInstallRunner();
}
}); });
...@@ -20,7 +20,5 @@ document.addEventListener('DOMContentLoaded', () => { ...@@ -20,7 +20,5 @@ document.addEventListener('DOMContentLoaded', () => {
initSharedRunnersForm(); initSharedRunnersForm();
initVariableList(); initVariableList();
if (gon?.features?.runnerInstructions) {
initInstallRunner(); initInstallRunner();
}
}); });
...@@ -41,7 +41,5 @@ document.addEventListener('DOMContentLoaded', () => { ...@@ -41,7 +41,5 @@ document.addEventListener('DOMContentLoaded', () => {
initSharedRunnersToggle(); initSharedRunnersToggle();
} }
if (gon?.features?.runnerInstructions) {
initInstallRunner(); initInstallRunner();
}
}); });
...@@ -4,9 +4,6 @@ class Admin::RunnersController < Admin::ApplicationController ...@@ -4,9 +4,6 @@ class Admin::RunnersController < Admin::ApplicationController
include RunnerSetupScripts include RunnerSetupScripts
before_action :runner, except: [:index, :tag_list, :runner_setup_scripts] before_action :runner, except: [:index, :tag_list, :runner_setup_scripts]
before_action do
push_frontend_feature_flag(:runner_instructions, default_enabled: :yaml)
end
feature_category :continuous_integration feature_category :continuous_integration
......
...@@ -9,9 +9,6 @@ module Groups ...@@ -9,9 +9,6 @@ module Groups
before_action :authorize_admin_group! before_action :authorize_admin_group!
before_action :authorize_update_max_artifacts_size!, only: [:update] before_action :authorize_update_max_artifacts_size!, only: [:update]
before_action :define_variables, only: [:show] before_action :define_variables, only: [:show]
before_action do
push_frontend_feature_flag(:runner_instructions, @group, default_enabled: :yaml)
end
feature_category :continuous_integration feature_category :continuous_integration
......
...@@ -12,7 +12,6 @@ module Projects ...@@ -12,7 +12,6 @@ module Projects
before_action do before_action do
push_frontend_feature_flag(:ajax_new_deploy_token, @project) push_frontend_feature_flag(:ajax_new_deploy_token, @project)
push_frontend_feature_flag(:vueify_shared_runners_toggle, @project) push_frontend_feature_flag(:vueify_shared_runners_toggle, @project)
push_frontend_feature_flag(:runner_instructions, @project, default_enabled: :yaml)
end end
helper_method :highlight_badge helper_method :highlight_badge
......
---
title: Add runner instructions modal in the CI/CD settings section
merge_request: 53087
author:
type: changed
---
name: runner_instructions
introduced_by_url: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/51014
rollout_issue_url: https://gitlab.com/gitlab-org/gitlab/-/issues/296818
milestone: '13.9'
type: development
group: group::"continuous integration"
default_enabled: false
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