[bitnami/schema-registry] Add labels to service (#27528)

* [bitnami/schema-registry] Add labels for service

Signed-off-by: Victor Mignot <vmignot@gmail.com>

* bump version

Signed-off-by: VICTOR MIGNOT <victor.mignot-ext@randstad.fr>
Signed-off-by: Victor Mignot <vmignot@gmail.com>

* generate readme

Signed-off-by: Victor Mignot <vmignot@gmail.com>

* Update CHANGELOG.md

Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>

* Update README.md with readme-generator-for-helm

Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>

---------

Signed-off-by: Victor Mignot <vmignot@gmail.com>
Signed-off-by: VICTOR MIGNOT <victor.mignot-ext@randstad.fr>
Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>
Co-authored-by: VICTOR MIGNOT <victor.mignot-ext@randstad.fr>
Co-authored-by: Bitnami Containers <bitnami-bot@vmware.com>
This commit is contained in:
vmignot
2024-06-28 11:16:17 +02:00
committed by GitHub
parent 00957aa79e
commit 638dc9e45a
5 changed files with 14 additions and 5 deletions

View File

@@ -1,8 +1,12 @@
# Changelog
## 19.1.7 (2024-06-21)
## 19.2.0 (2024-06-28)
* [bitnami/schema-registry] Release 19.1.7 ([#27414](https://github.com/bitnami/charts/pull/27414))
* [bitnami/schema-registry] Add labels to service ([#27528](https://github.com/bitnami/charts/pull/27528))
## <small>19.1.7 (2024-06-21)</small>
* [bitnami/schema-registry] Release 19.1.7 (#27414) ([bbeca45](https://github.com/bitnami/charts/commit/bbeca45e5660f575ee0ca3c57992d11dde7beca0)), closes [#27414](https://github.com/bitnami/charts/issues/27414)
## <small>19.1.6 (2024-06-17)</small>

View File

@@ -34,4 +34,4 @@ maintainers:
name: schema-registry
sources:
- https://github.com/bitnami/charts/tree/main/bitnami/schema-registry
version: 19.1.7
version: 19.2.0

View File

@@ -342,6 +342,7 @@ For annotations, please see [this document](https://github.com/kubernetes/ingres
| `service.loadBalancerIP` | loadBalancerIP if service type is LoadBalancer | `""` |
| `service.loadBalancerSourceRanges` | Address that are allowed when service is LoadBalancer | `[]` |
| `service.annotations` | Annotations for Schema Registry service | `{}` |
| `service.labels` | Labels for Schema Registry service | `{}` |
| `service.extraPorts` | Extra ports to expose in Schema Registry service (normally used with the `sidecars` value) | `[]` |
| `service.sessionAffinity` | Control where client requests go, to the same pod or round-robin | `None` |
| `service.sessionAffinityConfig` | Additional settings for the sessionAffinity | `{}` |
@@ -533,4 +534,4 @@ Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
limitations under the License.

View File

@@ -8,7 +8,8 @@ kind: Service
metadata:
name: {{ include "common.names.fullname" . }}
namespace: {{ include "common.names.namespace" . | quote }}
labels: {{- include "common.labels.standard" ( dict "customLabels" .Values.commonLabels "context" $ ) | nindent 4 }}
{{- $labels := include "common.tplvalues.merge" ( dict "values" ( list $.Values.service.labels $.Values.commonLabels ) "context" $ ) }}
labels: {{- include "common.labels.standard" ( dict "customLabels" $labels "context" $ ) | nindent 4 }}
{{- if or .Values.service.annotations .Values.commonAnnotations }}
{{- $annotations := include "common.tplvalues.merge" ( dict "values" ( list .Values.service.annotations .Values.commonAnnotations ) "context" . ) }}
annotations: {{- include "common.tplvalues.render" ( dict "value" $annotations "context" $) | nindent 4 }}

View File

@@ -517,6 +517,9 @@ service:
## @param service.annotations Annotations for Schema Registry service
##
annotations: {}
## @param service.labels Labels for Schema Registry service
##
labels: {}
## @param service.extraPorts Extra ports to expose in Schema Registry service (normally used with the `sidecars` value)
##
extraPorts: []