From 12930f52916d27846a9a3a404d9d2aac79085b10 Mon Sep 17 00:00:00 2001 From: WrenIX Date: Tue, 6 Feb 2024 22:24:22 +0100 Subject: [PATCH] fix(headscale): update appVersion --- headscale/Chart.yaml | 3 ++- headscale/README.adoc | 7 ++++++- headscale/templates/deployment.yaml | 2 +- headscale/values.yaml | 1 + 4 files changed, 10 insertions(+), 3 deletions(-) diff --git a/headscale/Chart.yaml b/headscale/Chart.yaml index 1cea2e3..0a57ab4 100644 --- a/headscale/Chart.yaml +++ b/headscale/Chart.yaml @@ -3,7 +3,8 @@ name: headscale description: An open source, self-hosted implementation of the Tailscale control server. icon: https://raw.githubusercontent.com/juanfont/headscale/56a7b1e34952c3e0306a134b2be9b4277f5d8d6e/docs/logo/headscale3-dots.svg type: application -version: 0.2.3 +version: 0.2.4 +# renovate: image=docker.io/headscale/headscale appVersion: "0.22.3" maintainers: - name: WrenIX diff --git a/headscale/README.adoc b/headscale/README.adoc index 07ff7ec..757f87f 100644 --- a/headscale/README.adoc +++ b/headscale/README.adoc @@ -2,7 +2,7 @@ = headscale -image::https://img.shields.io/badge/Version-0.2.3-informational?style=flat-square[Version: 0.2.3] +image::https://img.shields.io/badge/Version-0.2.4-informational?style=flat-square[Version: 0.2.4] image::https://img.shields.io/badge/Version-application-informational?style=flat-square[Type: application] image::https://img.shields.io/badge/AppVersion-0.22.3-informational?style=flat-square[AppVersion: 0.22.3] == Maintainers @@ -212,6 +212,11 @@ helm uninstall headscale-release | `"IfNotPresent"` | +| image.registry +| string +| `"docker.io"` +| + | image.repository | string | `"headscale/headscale"` diff --git a/headscale/templates/deployment.yaml b/headscale/templates/deployment.yaml index 51061b5..cbe8321 100644 --- a/headscale/templates/deployment.yaml +++ b/headscale/templates/deployment.yaml @@ -35,7 +35,7 @@ spec: - name: {{ .Chart.Name }} securityContext: {{- toYaml .Values.securityContext | nindent 12 }} - image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}" + image: "{{ .Values.image.registry }}/{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}" imagePullPolicy: {{ .Values.image.pullPolicy }} args: - "headscale" diff --git a/headscale/values.yaml b/headscale/values.yaml index 6208e1c..aa81d50 100644 --- a/headscale/values.yaml +++ b/headscale/values.yaml @@ -5,6 +5,7 @@ replicaCount: 1 image: + registry: docker.io repository: headscale/headscale pullPolicy: IfNotPresent # Overrides the image tag whose default is the chart appVersion.