mirror of
https://github.com/helm/charts.git
synced 2026-08-23 22:37:45 +00:00
[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:
committed by
Kubernetes Prow Robot
parent
f91f0511f8
commit
32422d891b
@@ -10,7 +10,7 @@ keywords:
|
||||
- Kafka
|
||||
- avro
|
||||
- schema-registry
|
||||
version: 0.1.1
|
||||
version: 0.2.1
|
||||
maintainers:
|
||||
- email: cristian04@gmail.com
|
||||
name: cristian04
|
||||
|
||||
@@ -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:
|
||||
|
||||
@@ -12,6 +12,7 @@ image:
|
||||
service:
|
||||
type: LoadBalancer
|
||||
port: 80
|
||||
annotations: {}
|
||||
|
||||
schemaRegistry:
|
||||
url: "http://localhost"
|
||||
|
||||
Reference in New Issue
Block a user