fix(common): Release v3.3.1

This commit is contained in:
Bernd Schorgers 2024-07-30 10:44:08 +02:00
parent 60b34d0323
commit 073d3a8405
No known key found for this signature in database
GPG key ID: BC5E2BD907F9A8EC
5 changed files with 27 additions and 5 deletions

View file

@ -3,7 +3,7 @@ apiVersion: v2
name: common
description: Function library for Helm charts
type: library
version: 3.3.0
version: 3.3.1
kubeVersion: ">=1.22.0-0"
keywords:
- common
@ -25,7 +25,7 @@ annotations:
Added `persistentVolumeClaimRetentionPolicy` field to statefulset spec.
- kind: fixed
description: |-
Added `externalName` field to service schema.
Added `externalName` field to service schema. (fixed in v3.3.1)
- kind: fixed
description: |-
Always allow specifying `nodePort` field on service ports.

View file

@ -1,6 +1,6 @@
# common
![Version: 3.3.0](https://img.shields.io/badge/Version-3.3.0-informational?style=flat-square) ![Type: library](https://img.shields.io/badge/Type-library-informational?style=flat-square)
![Version: 3.3.1](https://img.shields.io/badge/Version-3.3.1-informational?style=flat-square) ![Type: library](https://img.shields.io/badge/Type-library-informational?style=flat-square)
Function library for Helm charts
@ -27,7 +27,7 @@ Include this chart as a dependency in your `Chart.yaml` e.g.
# Chart.yaml
dependencies:
- name: common
version: 3.3.0
version: 3.3.1
repository: https://bjw-s.github.io/helm-charts/
```

View file

@ -49,6 +49,11 @@ spec:
loadBalancerSourceRanges:
{{ toYaml $serviceObject.loadBalancerSourceRanges | nindent 4 }}
{{- end -}}
{{- else if eq $svcType "ExternalName" }}
type: {{ $svcType }}
{{- if $serviceObject.externalName }}
externalName: {{ $serviceObject.externalName }}
{{- end }}
{{- else }}
type: {{ $svcType }}
{{- end }}

View file

@ -1,6 +1,6 @@
{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "https://raw.githubusercontent.com/bjw-s/helm-charts/common-3.3.0/charts/library/common/values.schema.json",
"$id": "https://raw.githubusercontent.com/bjw-s/helm-charts/common-3.3.1/charts/library/common/values.schema.json",
"type": "object",
"properties": {