Commit feee33e0 authored by Amit Rathi's avatar Amit Rathi

Remove application flags

parent 402d7a92
...@@ -4,9 +4,9 @@ module Gitlab ...@@ -4,9 +4,9 @@ module Gitlab
class InstallCommand class InstallCommand
include BaseCommand include BaseCommand
attr_reader :name, :files, :chart, :version, :repository, :preinstall, :postinstall, :application_flags attr_reader :name, :files, :chart, :version, :repository, :preinstall, :postinstall
def initialize(name:, chart:, files:, rbac:, version: nil, repository: nil, preinstall: nil, postinstall: nil, application_flags: []) def initialize(name:, chart:, files:, rbac:, version: nil, repository: nil, preinstall: nil, postinstall: nil)
@name = name @name = name
@chart = chart @chart = chart
@version = version @version = version
...@@ -15,7 +15,6 @@ module Gitlab ...@@ -15,7 +15,6 @@ module Gitlab
@repository = repository @repository = repository
@preinstall = preinstall @preinstall = preinstall
@postinstall = postinstall @postinstall = postinstall
@application_flags = application_flags
end end
def generate_script def generate_script
...@@ -72,7 +71,6 @@ module Gitlab ...@@ -72,7 +71,6 @@ module Gitlab
rbac_create_flag + rbac_create_flag +
namespace_flag + namespace_flag +
value_flag + value_flag +
application_flags
end end
def rbac_create_flag def rbac_create_flag
......
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