fix(headscale): update appVersion
This commit is contained in:
parent
e7c432ce69
commit
12930f5291
4 changed files with 10 additions and 3 deletions
|
@ -3,7 +3,8 @@ name: headscale
|
||||||
description: An open source, self-hosted implementation of the Tailscale control server.
|
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
|
icon: https://raw.githubusercontent.com/juanfont/headscale/56a7b1e34952c3e0306a134b2be9b4277f5d8d6e/docs/logo/headscale3-dots.svg
|
||||||
type: application
|
type: application
|
||||||
version: 0.2.3
|
version: 0.2.4
|
||||||
|
# renovate: image=docker.io/headscale/headscale
|
||||||
appVersion: "0.22.3"
|
appVersion: "0.22.3"
|
||||||
maintainers:
|
maintainers:
|
||||||
- name: WrenIX
|
- name: WrenIX
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
= headscale
|
= 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/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]
|
image::https://img.shields.io/badge/AppVersion-0.22.3-informational?style=flat-square[AppVersion: 0.22.3]
|
||||||
== Maintainers
|
== Maintainers
|
||||||
|
@ -212,6 +212,11 @@ helm uninstall headscale-release
|
||||||
| `"IfNotPresent"`
|
| `"IfNotPresent"`
|
||||||
|
|
|
|
||||||
|
|
||||||
|
| image.registry
|
||||||
|
| string
|
||||||
|
| `"docker.io"`
|
||||||
|
|
|
||||||
|
|
||||||
| image.repository
|
| image.repository
|
||||||
| string
|
| string
|
||||||
| `"headscale/headscale"`
|
| `"headscale/headscale"`
|
||||||
|
|
|
@ -35,7 +35,7 @@ spec:
|
||||||
- name: {{ .Chart.Name }}
|
- name: {{ .Chart.Name }}
|
||||||
securityContext:
|
securityContext:
|
||||||
{{- toYaml .Values.securityContext | nindent 12 }}
|
{{- 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 }}
|
imagePullPolicy: {{ .Values.image.pullPolicy }}
|
||||||
args:
|
args:
|
||||||
- "headscale"
|
- "headscale"
|
||||||
|
|
|
@ -5,6 +5,7 @@
|
||||||
replicaCount: 1
|
replicaCount: 1
|
||||||
|
|
||||||
image:
|
image:
|
||||||
|
registry: docker.io
|
||||||
repository: headscale/headscale
|
repository: headscale/headscale
|
||||||
pullPolicy: IfNotPresent
|
pullPolicy: IfNotPresent
|
||||||
# Overrides the image tag whose default is the chart appVersion.
|
# Overrides the image tag whose default is the chart appVersion.
|
||||||
|
|
Loading…
Add table
Reference in a new issue