[stable/schema-registry-ui] add support for service annotations, documented missing params in README (#10806)

Signed-off-by: Fabrizio Fortino <fabrizio.fortino@gmail.com>
This commit is contained in:
Fabrizio Fortino
2019-01-21 14:12:50 -08:00
committed by Kubernetes Prow Robot
parent f91f0511f8
commit 32422d891b
4 changed files with 19 additions and 4 deletions
+1 -1
View File
@@ -10,7 +10,7 @@ keywords:
- Kafka
- avro
- schema-registry
version: 0.1.1
version: 0.2.1
maintainers:
- email: cristian04@gmail.com
name: cristian04
+11 -3
View File
@@ -62,9 +62,17 @@ The following table lists the configurable parameters of the SchemaRegistryUI ch
| `image.repository` | The `SchemaRegistryUI` image repository | `landoop/schema-registry-ui` |
| `image.tag` | The `SchemaRegistryUI` image tag | `0.9.4` |
| `image.imagePullPolicy` | Image Pull Policy | `IfNotPresent` |
| `service.type` | Type of the service | `LoadBalancer` |
| `service.port` | Port to use | `80` |
| `ingress.enabled` | Ingress rules. Disabled by default | `false` |
| `schemaRegistry.url` | URL to the schema registry endpoint | `http://localhost` |
| `schemaRegistry.port` | Port for the schema registry | `8081` |
| `service.type` | Type of the service | `LoadBalancer` |
| `service.port` | Port to use | `80` |
| `service.annotations` | Kubernetes service annotations | `{}` |
| `ingress.enabled` | Ingress rules. Disabled by default | `false` |
| `ingress.annotations` | Ingress annotations | `{}` |
| `ingress.path` | Ingress path | `/` |
| `ingress.hosts` | Ingress accepted hostnames | `[schema-registry-ui.local]` |
| `ingress.tls` | Ingress TLS configuration | `/` |
| `nodeSelector` | Node labels for pod assignment | `{}` |
| `tolerations` | List of node taints to tolerate | `[]` |
| `affinity` | Node/pod affinites | `{}` |
| `resources` | CPU/Memory resource requests/limits | `{}` |
@@ -7,6 +7,12 @@ metadata:
chart: {{ template "schema-registry-ui.chart" . }}
release: {{ .Release.Name }}
heritage: {{ .Release.Service }}
{{- with .Values.service.annotations }}
annotations:
{{- range $key, $value := . }}
{{ $key }}: {{ $value | quote }}
{{- end }}
{{- end }}
spec:
type: {{ .Values.service.type }}
ports:
+1
View File
@@ -12,6 +12,7 @@ image:
service:
type: LoadBalancer
port: 80
annotations: {}
schemaRegistry:
url: "http://localhost"