feat: Release common version 1.5.1 (#150)

Co-authored-by: Bᴇʀɴᴅ Sᴄʜᴏʀɢᴇʀs <me@bjw-s.dev>
Co-authored-by: Branden Cash <203336+ammmze@users.noreply.github.com>
This commit is contained in:
Bᴇʀɴᴅ Sᴄʜᴏʀɢᴇʀs 2023-06-02 10:46:41 +02:00 committed by GitHub
parent d12ac05011
commit a081de5302
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
16 changed files with 66 additions and 50 deletions

View file

@ -3,7 +3,7 @@ apiVersion: v2
name: common
description: Function library for Helm charts
type: library
version: 1.5.0
version: 1.5.1
kubeVersion: ">=1.22.0-0"
keywords:
- common
@ -14,15 +14,11 @@ maintainers:
email: me@bjw-s.dev
annotations:
artifacthub.io/changes: |-
- kind: added
description: support for for hostPID
- kind: added
description: support for for hostPID
- kind: added
description: Add support for CronJob backoffLimit
- kind: fixed
description: Ingress secret name template is evaluated before deciding whether to omit it
- kind: changed
description: Omit replicas field in Deployment if null is given
description: Updated code-server image tag to v4.13.0
- kind: changed
description: Updated code-server image tag to v4.12.0
description: Updated netshoot image tag to v0.11
- kind: changed
description: Updated netshoot image tag to v0.10
description: Updated gluetun image tag to v3.34.3

View file

@ -45,8 +45,9 @@ spec:
{{- range .hosts }}
- {{ tpl . $ | quote }}
{{- end }}
{{- if .secretName }}
secretName: {{ tpl .secretName $ | quote}}
{{- $secretName := tpl (default "" .secretName) $ }}
{{- if $secretName }}
secretName: {{ $secretName | quote}}
{{- end }}
{{- end }}
{{- end }}

View file

@ -632,7 +632,7 @@ addons:
# -- Specify the Gluetun image
repository: docker.io/qmcgaw/gluetun
# -- Specify the Gluetun image tag
tag: v3.33.0
tag: v3.34.3
# -- Specify the Gluetun image pull policy
pullPolicy: IfNotPresent
@ -733,7 +733,7 @@ addons:
# -- Specify the code-server image
repository: ghcr.io/coder/code-server
# -- Specify the code-server image tag
tag: 4.12.0
tag: 4.13.0
# -- Specify the code-server image pull policy
pullPolicy: IfNotPresent
@ -827,7 +827,7 @@ addons:
# -- Specify the netshoot image
repository: ghcr.io/nicolaka/netshoot
# -- Specify the netshoot image tag
tag: v0.10
tag: v0.11
# -- Specify the netshoot image pull policy
pullPolicy: IfNotPresent