fix(conduit): fix wellknown resources and replica

This commit is contained in:
WrenIX 2024-02-13 15:12:35 +01:00
parent f1caa90f87
commit 2198203fe9
Signed by: wrenix
GPG key ID: 7AFDB012974B1BB5
3 changed files with 8 additions and 9 deletions

View file

@ -3,7 +3,7 @@ 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.4
version: 0.2.5
# renovate: image=registry.gitlab.com/famedly/conduit/matrix-conduit
appVersion: "0.6.0"
maintainers:

View file

@ -2,7 +2,7 @@
= conduit
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-0.2.5-informational?style=flat-square[Version: 0.2.5]
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]
== Maintainers

View file

@ -5,14 +5,13 @@ metadata:
name: {{ include "conduit.fullname" . }}-wellknown
labels:
{{- include "conduit.labels" . | nindent 4 }}
app.kubernetes.io/component: wellknown
spec:
{{- if not .Values.autoscaling.enabled }}
replicas: {{ .Values.replicaCount }}
{{- end }}
replicas: {{ .Values.wellknown.replicaCount }}
selector:
matchLabels:
{{- include "conduit.selectorLabels" . | nindent 6 }}
type: wellknown
app.kubernetes.io/component: wellknown
template:
metadata:
{{- with .Values.wellknown.podAnnotations }}
@ -21,10 +20,10 @@ spec:
{{- end }}
labels:
{{- include "conduit.selectorLabels" . | nindent 8 }}
app.kubernetes.io/component: wellknown
{{- with .Values.wellknown.podLabels }}
{{- toYaml . | nindent 8 }}
{{- end }}
type: wellknown
spec:
{{- with .Values.imagePullSecrets }}
imagePullSecrets:
@ -52,7 +51,7 @@ spec:
path: /
port: http
resources:
{{- toYaml .Values.resources | nindent 12 }}
{{- toYaml .Values.wellknown.resources | nindent 12 }}
volumeMounts:
- name: "data"
mountPath: "/usr/share/nginx/html/.well-known/matrix/"
@ -72,4 +71,4 @@ spec:
- name: "data"
configMap:
name: {{ include "conduit.fullname" . }}-wellknown
{{- end }}
{{- end }}