[stable/cockroachdb] Add config for public service type (#4100)

* [stable/cockroachdb] Add config for public service type

* [stable/cockroachdb] Increment chart version
This commit is contained in:
Matt Cholick
2018-03-10 12:21:10 -08:00
committed by k8s-ci-robot
parent 75a8c04f6f
commit fffa07e9b9
4 changed files with 5 additions and 1 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
name: cockroachdb
home: https://www.cockroachlabs.com
version: 0.6.5
version: 0.6.6
appVersion: 1.1.5
description: CockroachDB is a scalable, survivable, strongly-consistent SQL database.
icon: https://raw.githubusercontent.com/cockroachdb/cockroach/master/docs/media/cockroach_db.png
+1
View File
@@ -51,6 +51,7 @@ The following tables lists the configurable parameters of the CockroachDB chart
| `ClusterDomain` | Cluster's default DNS domain | `cluster.local` |
| `NetworkPolicy.Enabled` | Enable NetworkPolicy | `false` |
| `NetworkPolicy.AllowExternal` | Don't require client label for connections | `true` |
| `Service.Type` | Public service type | `ClusterIP` |
Specify each parameter using the `--set key=value[,key=value]` argument to `helm install`.
@@ -10,6 +10,7 @@ metadata:
chart: "{{ .Chart.Name }}-{{ .Chart.Version }}"
component: "{{ .Release.Name }}-{{ .Values.Component }}"
spec:
type: {{ .Values.Service.type }}
ports:
# The main port, served by gRPC, serves Postgres-flavor SQL, internode
# traffic and the cli.
+2
View File
@@ -31,3 +31,5 @@ ClusterDomain: "cluster.local"
NetworkPolicy:
Enabled: false
AllowExternal: true
Service:
type: ClusterIP