This is an automated email from the ASF dual-hosted git repository.

jjacob pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-sdap-nexus.git


The following commit(s) were added to refs/heads/master by this push:
     new f26ee98  SDAP-221: Add Helm configuration value to enable/disable 
nginx-ingress subchart installation (#91)
f26ee98 is described below

commit f26ee985969374fd3110e78ecc6d28cfcf5d5980
Author: Eamon Ford <[email protected]>
AuthorDate: Mon Mar 2 11:06:29 2020 -0800

    SDAP-221: Add Helm configuration value to enable/disable nginx-ingress 
subchart installation (#91)
---
 helm/Chart.yaml        | 4 ++--
 helm/requirements.yaml | 1 +
 helm/values.yaml       | 7 ++++---
 3 files changed, 7 insertions(+), 5 deletions(-)

diff --git a/helm/Chart.yaml b/helm/Chart.yaml
index 1979e8b..51c17aa 100644
--- a/helm/Chart.yaml
+++ b/helm/Chart.yaml
@@ -1,5 +1,5 @@
 apiVersion: v1
 appVersion: "0.1.3"
-description: JPL Science Data Analytics Platform
+description: Science Data Analytics Platform
 name: nexus
-version: 0.1.6
+version: 0.1.7
diff --git a/helm/requirements.yaml b/helm/requirements.yaml
index 42425bf..25818d2 100644
--- a/helm/requirements.yaml
+++ b/helm/requirements.yaml
@@ -2,5 +2,6 @@ dependencies:
   - name: nginx-ingress
     version: 1.28.2
     repository: https://kubernetes-charts.storage.googleapis.com
+    condition: ingressEnabled
   
 
diff --git a/helm/values.yaml b/helm/values.yaml
index 19844f6..dc314d5 100644
--- a/helm/values.yaml
+++ b/helm/values.yaml
@@ -39,15 +39,16 @@ zookeeper:
   cpu: 0.5
   storage: 8Gi
 
-ingress:
-  namespace: ingress-nginx-local
+ingressEnabled: false
 
 onEarthProxyIP: ""
 
 nginx-ingress:
   controller:
+    scope:
+      enabled: true
     kind: DaemonSet
     service:
-      enabled: false
+      enabled: true
   defaultBackend:
     enabled: false
\ No newline at end of file

Reply via email to