fix(headscale-ui): update appVersion
This commit is contained in:
parent
f4c4daace8
commit
f454d0d7a8
4 changed files with 24 additions and 9 deletions
|
@ -3,9 +3,9 @@ name: headscale-ui
|
||||||
description: A simple Headscale web UI for small-scale deployments.
|
description: A simple Headscale web UI for small-scale deployments.
|
||||||
icon: https://raw.githubusercontent.com/gurucomputing/headscale-ui/master/static/favicon.png
|
icon: https://raw.githubusercontent.com/gurucomputing/headscale-ui/master/static/favicon.png
|
||||||
type: application
|
type: application
|
||||||
version: 0.1.3
|
version: 0.1.4
|
||||||
# renovate: image=ghcr.io/gurucomputing/headscale-ui
|
# renovate: image=ghcr.io/gurucomputing/headscale-ui
|
||||||
appVersion: "2023.01.30-beta-1"
|
appVersion: "2024.02.24-beta1"
|
||||||
maintainers:
|
maintainers:
|
||||||
- name: WrenIX
|
- name: WrenIX
|
||||||
url: https://wrenix.eu
|
url: https://wrenix.eu
|
||||||
|
|
|
@ -2,9 +2,9 @@
|
||||||
|
|
||||||
= headscale-ui
|
= headscale-ui
|
||||||
|
|
||||||
image::https://img.shields.io/badge/Version-0.1.3-informational?style=flat-square[Version: 0.1.3]
|
image::https://img.shields.io/badge/Version-0.1.4-informational?style=flat-square[Version: 0.1.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-2023.01.30-beta-1-informational?style=flat-square[AppVersion: 2023.01.30-beta-1]
|
image::https://img.shields.io/badge/AppVersion-2024.02.24-beta1-informational?style=flat-square[AppVersion: 2024.02.24-beta1]
|
||||||
== Maintainers
|
== Maintainers
|
||||||
|
|
||||||
.Maintainers
|
.Maintainers
|
||||||
|
@ -77,6 +77,16 @@ helm uninstall headscale-ui-release
|
||||||
| `""`
|
| `""`
|
||||||
|
|
|
|
||||||
|
|
||||||
|
| global.image.pullPolicy
|
||||||
|
| string
|
||||||
|
| `nil`
|
||||||
|
| if set it will overwrite all pullPolicy
|
||||||
|
|
||||||
|
| global.image.registry
|
||||||
|
| string
|
||||||
|
| `nil`
|
||||||
|
| if set it will overwrite all registry entries
|
||||||
|
|
||||||
| image.pullPolicy
|
| image.pullPolicy
|
||||||
| string
|
| string
|
||||||
| `"IfNotPresent"`
|
| `"IfNotPresent"`
|
||||||
|
|
|
@ -34,8 +34,10 @@ spec:
|
||||||
- name: {{ .Chart.Name }}
|
- name: {{ .Chart.Name }}
|
||||||
securityContext:
|
securityContext:
|
||||||
{{- toYaml .Values.securityContext | nindent 12 }}
|
{{- toYaml .Values.securityContext | nindent 12 }}
|
||||||
image: "{{ .Values.image.registry }}/{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
|
{{- with .Values.image}}
|
||||||
imagePullPolicy: {{ .Values.image.pullPolicy }}
|
image: "{{ coalesce $.Values.global.image.registry .registry }}/{{ .repository }}:{{ .tag | default $.Chart.AppVersion }}"
|
||||||
|
imagePullPolicy: {{ coalesce $.Values.global.image.pullPolicy .pullPolicy }}
|
||||||
|
{{- end }}
|
||||||
ports:
|
ports:
|
||||||
- name: http
|
- name: http
|
||||||
containerPort: {{ .Values.service.port }}
|
containerPort: {{ .Values.service.port }}
|
||||||
|
|
|
@ -1,6 +1,9 @@
|
||||||
# Default values for headscale-ui.
|
global:
|
||||||
# This is a YAML-formatted file.
|
image:
|
||||||
# Declare variables to be passed into your templates.
|
# -- if set it will overwrite all registry entries
|
||||||
|
registry:
|
||||||
|
# -- if set it will overwrite all pullPolicy
|
||||||
|
pullPolicy:
|
||||||
|
|
||||||
replicaCount: 1
|
replicaCount: 1
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue