fix(headscale-ui): update appVersion

This commit is contained in:
WrenIX 2024-02-06 22:27:05 +01:00
parent 12930f5291
commit b1dbc043ed
Signed by: wrenix
GPG key ID: 7AFDB012974B1BB5
4 changed files with 12 additions and 5 deletions

View file

@ -3,7 +3,8 @@ 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.2 version: 0.1.3
# renovate: image=ghcr.io/gurucomputing/headscale-ui
appVersion: "2023.01.30-beta-1" appVersion: "2023.01.30-beta-1"
maintainers: maintainers:
- name: WrenIX - name: WrenIX

View file

@ -2,7 +2,7 @@
= headscale-ui = headscale-ui
image::https://img.shields.io/badge/Version-0.1.2-informational?style=flat-square[Version: 0.1.2] 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-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-2023.01.30-beta-1-informational?style=flat-square[AppVersion: 2023.01.30-beta-1]
== Maintainers == Maintainers
@ -82,9 +82,14 @@ helm uninstall headscale-ui-release
| `"IfNotPresent"` | `"IfNotPresent"`
| |
| image.registry
| string
| `"ghcr.io"`
|
| image.repository | image.repository
| string | string
| `"ghcr.io/gurucomputing/headscale-ui"` | `"gurucomputing/headscale-ui"`
| |
| image.tag | image.tag

View file

@ -34,7 +34,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 }}
ports: ports:
- name: http - name: http

View file

@ -5,7 +5,8 @@
replicaCount: 1 replicaCount: 1
image: image:
repository: ghcr.io/gurucomputing/headscale-ui registry: ghcr.io
repository: gurucomputing/headscale-ui
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
# Overrides the image tag whose default is the chart appVersion. # Overrides the image tag whose default is the chart appVersion.
tag: "" tag: ""