Commit c5300cc1 authored by Thong Kuah's avatar Thong Kuah

Use upstream rbac.create value

In any case, Gitlab::Kubernetes::Helm::InstallCommand requires rbac or
not to be specified which will set the approriate rbac.create value on
installation or upgrade of apps
parent 403694be
...@@ -91,7 +91,6 @@ describe Clusters::Applications::Jupyter do ...@@ -91,7 +91,6 @@ describe Clusters::Applications::Jupyter do
it 'includes valid values' do it 'includes valid values' do
expect(values).to include('ingress') expect(values).to include('ingress')
expect(values).to include('hub') expect(values).to include('hub')
expect(values).to include('rbac')
expect(values).to include('proxy') expect(values).to include('proxy')
expect(values).to include('auth') expect(values).to include('auth')
expect(values).to include('singleuser') expect(values).to include('singleuser')
...@@ -111,7 +110,6 @@ describe Clusters::Applications::Jupyter do ...@@ -111,7 +110,6 @@ describe Clusters::Applications::Jupyter do
it 'includes valid values' do it 'includes valid values' do
expect(values).to include('ingress') expect(values).to include('ingress')
expect(values).to include('hub') expect(values).to include('hub')
expect(values).to include('rbac')
expect(values).to include('proxy') expect(values).to include('proxy')
expect(values).to include('auth') expect(values).to include('auth')
expect(values).to include('singleuser') expect(values).to include('singleuser')
......
...@@ -7,6 +7,3 @@ controller: ...@@ -7,6 +7,3 @@ controller:
podAnnotations: podAnnotations:
prometheus.io/scrape: "true" prometheus.io/scrape: "true"
prometheus.io/port: "10254" prometheus.io/port: "10254"
rbac:
create: false
rbac:
enabled: false
hub: hub:
extraEnv: extraEnv:
JUPYTER_ENABLE_LAB: 1 JUPYTER_ENABLE_LAB: 1
......
...@@ -12,9 +12,6 @@ nodeExporter: ...@@ -12,9 +12,6 @@ nodeExporter:
pushgateway: pushgateway:
enabled: false enabled: false
rbac:
create: false
server: server:
fullnameOverride: "prometheus-prometheus-server" fullnameOverride: "prometheus-prometheus-server"
image: image:
......
...@@ -11,7 +11,6 @@ checkInterval: 3 ...@@ -11,7 +11,6 @@ checkInterval: 3
## For RBAC support ## For RBAC support
rbac: rbac:
create: false
clusterWideAccess: false clusterWideAccess: false
## Configuration for the Pods that that the runner launches for each new job ## Configuration for the Pods that that the runner launches for each new job
......
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