Added flag for ingress URL format (#11219)

Signed-off-by: Chaoran Yu <yuchaoran2011@gmail.com>
This commit is contained in:
Chaoran Yu
2019-02-06 20:53:07 -08:00
committed by Kubernetes Prow Robot
parent df256c332a
commit eee84d29fd
4 changed files with 5 additions and 2 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
name: sparkoperator
description: A Helm chart for Spark on Kubernetes operator
version: 0.1.8
version: 0.1.9
appVersion: v1beta1-0.7-2.4.0
kubeVersion: ">=1.8.0-0"
keywords:
+2 -1
View File
@@ -30,12 +30,13 @@ The following table lists the configurable parameters of the Spark operator char
| `enableWebhook` | Whether to enable mutating admission webhook | false |
| `enableMetrics` | Whether to expose metrics to be scraped by Premetheus | true |
| `controllerThreads` | Number of worker threads used by the SparkApplication controller | 10 |
| `ingressUrlFormat` | Ingress URL format | "" |
| `installCrds` | Whether to install CRDs | true |
| `metricsPort` | Port for the metrics endpoint | 10254 |
| `metricsEndpoint` | Metrics endpoint | "/metrics" |
| `metricsPrefix` | Prefix for the metrics | "" |
| `resyncInterval` | Informer resync interval in seconds | 30 |
| `webhookPort` | Service port of the webhook server | 8080 | |
| `webhookPort` | Service port of the webhook server | 8080 |
Specify each parameter using the `--set key=value[,key=value]` argument to `helm install`.
@@ -58,6 +58,7 @@ spec:
args:
- -v=2
- -namespace={{ .Values.sparkJobNamespace }}
- -ingress-url-format={{ .Values.ingressUrlFormat }}
- -install-crds={{ .Values.installCrds }}
- -controller-threads={{ .Values.controllerThreads }}
- -resync-interval={{ .Values.resyncInterval }}
+1
View File
@@ -19,6 +19,7 @@ enableWebhook: false
enableMetrics: true
controllerThreads: 10
ingressUrlFormat: ""
installCrds: true
metricsPort: 10254
metricsEndpoint: "/metrics"