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.
icon: https://conduit.rs/conduit.svg
type: application
version: 0.2.5
version: 0.3.0
# renovate: image=registry.gitlab.com/famedly/conduit/matrix-conduit
appVersion: "0.6.0"
appVersion: "0.7.0"
maintainers:
- name: WrenIX
url: https://wrenix.eu

View file

@ -2,9 +2,9 @@
= 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/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
@ -142,9 +142,14 @@ helm uninstall conduit-release
| `"IfNotPresent"`
|
| image.registry
| string
| `"registry.gitlab.com"`
|
| image.repository
| string
| `"registry.gitlab.com/famedly/conduit/matrix-conduit"`
| `"famedly/conduit/matrix-conduit"`
|
| image.tag
@ -332,9 +337,14 @@ helm uninstall conduit-release
| `"IfNotPresent"`
|
| wellknown.image.registry
| string
| `"docker.io"`
|
| wellknown.image.repository
| string
| `"nginx"`
| `"library/nginx"`
|
| wellknown.image.tag

View file

@ -38,7 +38,9 @@ spec:
- name: {{ .Chart.Name }}
securityContext:
{{- 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 }}
ports:
- name: http

View file

@ -36,7 +36,9 @@ spec:
- name: wellknown
securityContext:
{{- 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 }}
ports:
- name: http

View file

@ -5,7 +5,8 @@
replicaCount: 1
image:
repository: registry.gitlab.com/famedly/conduit/matrix-conduit
registry: registry.gitlab.com
repository: famedly/conduit/matrix-conduit
pullPolicy: IfNotPresent
# Overrides the image tag whose default is the chart appVersion.
tag: ""
@ -44,7 +45,8 @@ conduit:
wellknown:
enabled: true
image:
repository: nginx
registry: docker.io
repository: library/nginx
pullPolicy: IfNotPresent
tag: "1.25"