fix(conduit): update appVersion

This commit is contained in:
WrenIX 2024-05-14 13:18:49 +02:00
parent e7e97a1657
commit 9ef411a665
Signed by: wrenix
GPG key ID: 7AFDB012974B1BB5
5 changed files with 26 additions and 10 deletions

View file

@ -3,9 +3,9 @@ name: conduit
description: Conduit is a simple, fast and reliable chat server powered by Matrix. description: Conduit is a simple, fast and reliable chat server powered by Matrix.
icon: https://conduit.rs/conduit.svg icon: https://conduit.rs/conduit.svg
type: application type: application
version: 0.2.5 version: 0.3.0
# renovate: image=registry.gitlab.com/famedly/conduit/matrix-conduit # renovate: image=registry.gitlab.com/famedly/conduit/matrix-conduit
appVersion: "0.6.0" appVersion: "0.7.0"
maintainers: maintainers:
- name: WrenIX - name: WrenIX
url: https://wrenix.eu url: https://wrenix.eu

View file

@ -2,9 +2,9 @@
= conduit = conduit
image::https://img.shields.io/badge/Version-0.2.5-informational?style=flat-square[Version: 0.2.5] image::https://img.shields.io/badge/Version-0.3.0-informational?style=flat-square[Version: 0.3.0]
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.6.0-informational?style=flat-square[AppVersion: 0.6.0] image::https://img.shields.io/badge/AppVersion-0.7.0-informational?style=flat-square[AppVersion: 0.7.0]
== Maintainers == Maintainers
.Maintainers .Maintainers
@ -142,9 +142,14 @@ helm uninstall conduit-release
| `"IfNotPresent"` | `"IfNotPresent"`
| |
| image.registry
| string
| `"registry.gitlab.com"`
|
| image.repository | image.repository
| string | string
| `"registry.gitlab.com/famedly/conduit/matrix-conduit"` | `"famedly/conduit/matrix-conduit"`
| |
| image.tag | image.tag
@ -332,9 +337,14 @@ helm uninstall conduit-release
| `"IfNotPresent"` | `"IfNotPresent"`
| |
| wellknown.image.registry
| string
| `"docker.io"`
|
| wellknown.image.repository | wellknown.image.repository
| string | string
| `"nginx"` | `"library/nginx"`
| |
| wellknown.image.tag | wellknown.image.tag

View file

@ -38,7 +38,9 @@ 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 (printf "v%s" .Chart.AppVersion) }}" {{- with .Values.image }}
image: "{{ .registry }}/{{ .repository }}:{{ .tag | default (printf "v%s" $.Chart.AppVersion) }}"
{{- end }}
imagePullPolicy: {{ .Values.image.pullPolicy }} imagePullPolicy: {{ .Values.image.pullPolicy }}
ports: ports:
- name: http - name: http

View file

@ -36,7 +36,9 @@ spec:
- name: wellknown - name: wellknown
securityContext: securityContext:
{{- toYaml .Values.wellknown.securityContext | nindent 12 }} {{- toYaml .Values.wellknown.securityContext | nindent 12 }}
image: "{{ .Values.wellknown.image.repository }}:{{ .Values.wellknown.image.tag }}" {{- with .Values.wellknown.image }}
image: "{{ .registry }}/{{ .repository }}:{{ .tag }}"
{{- end }}
imagePullPolicy: {{ .Values.wellknown.image.pullPolicy }} imagePullPolicy: {{ .Values.wellknown.image.pullPolicy }}
ports: ports:
- name: http - name: http

View file

@ -5,7 +5,8 @@
replicaCount: 1 replicaCount: 1
image: image:
repository: registry.gitlab.com/famedly/conduit/matrix-conduit registry: registry.gitlab.com
repository: famedly/conduit/matrix-conduit
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: ""
@ -44,7 +45,8 @@ conduit:
wellknown: wellknown:
enabled: true enabled: true
image: image:
repository: nginx registry: docker.io
repository: library/nginx
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
tag: "1.25" tag: "1.25"