Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Remove buttons from Gitlab interface

Tags:

gitlab

Is there a way to remove the buttons for Add Changelog, Add license, Add Contribution guide, Add kubernetes cluster, and set up CI/CD, as well as the banner for Auto DevOps (Beta) from a project page?

These are all features that are not necessary for me at the moment and it would be a much cleaner interface without the buttons & banner. There is an image below to show what I mean.

Version GitLab 10.6.0-ee

Image showing the offending buttons

like image 737
Syntax Error Avatar asked Mar 29 '18 08:03

Syntax Error


1 Answers

This process worked for me on GitLab 10.8.14 to remove the auto devops message from annoying everyone.

sudo gitlab-rails console

Feature.get(:auto_devops_banner_disabled).enable => true

exit

sudo gitlab-ctl reconfigure
like image 200
Deac Karns Avatar answered Nov 14 '22 21:11

Deac Karns