mantisbt V4.1 mit salt
This commit is contained in:
@@ -3,17 +3,17 @@ entries:
|
|||||||
mantisbt:
|
mantisbt:
|
||||||
- apiVersion: v2
|
- apiVersion: v2
|
||||||
appVersion: 2.27.0
|
appVersion: 2.27.0
|
||||||
created: "2025-12-15T13:17:25.365016+01:00"
|
created: "2025-12-15T15:15:41.372342+01:00"
|
||||||
dependencies:
|
dependencies:
|
||||||
- condition: mariadb.enabled
|
- condition: mariadb.enabled
|
||||||
name: mariadb
|
name: mariadb
|
||||||
repository: https://charts.bitnami.com/bitnami
|
repository: https://charts.bitnami.com/bitnami
|
||||||
version: 19.*.*
|
version: 19.*.*
|
||||||
description: MantisBT Bug Tracker - A Helm chart for Kubernetes
|
description: MantisBT Bug Tracker - A Helm chart for Kubernetes
|
||||||
digest: 551c7fa565a9ff177bdc237e5aa7618745aef3f80b56927cf8445b97ea0a8806
|
digest: c2c8609f8789e8cda33da558c41540c05da0b0bd5b4b0d13f11e3dcaf9f3159e
|
||||||
name: mantisbt
|
name: mantisbt
|
||||||
type: application
|
type: application
|
||||||
urls:
|
urls:
|
||||||
- https://gitea.innovation-hub-niedersachsen.de/innohub/charts/raw/main/mantisbt/mantisbt-0.4.0.tgz
|
- https://gitea.innovation-hub-niedersachsen.de/innohub/charts/raw/main/mantisbt/mantisbt-0.4.1.tgz
|
||||||
version: 0.4.0
|
version: 0.4.1
|
||||||
generated: "2025-12-15T13:17:25.361809+01:00"
|
generated: "2025-12-15T15:15:41.369286+01:00"
|
||||||
|
|||||||
Binary file not shown.
BIN
mantisbt/mantisbt-0.4.1.tgz
Normal file
BIN
mantisbt/mantisbt-0.4.1.tgz
Normal file
Binary file not shown.
@@ -2,7 +2,7 @@ apiVersion: v2
|
|||||||
name: mantisbt
|
name: mantisbt
|
||||||
description: MantisBT Bug Tracker - A Helm chart for Kubernetes
|
description: MantisBT Bug Tracker - A Helm chart for Kubernetes
|
||||||
type: application
|
type: application
|
||||||
version: "0.4.0"
|
version: "0.4.1"
|
||||||
appVersion: "2.27.0"
|
appVersion: "2.27.0"
|
||||||
|
|
||||||
dependencies:
|
dependencies:
|
||||||
|
|||||||
82
mantisbt/mantisbt/argocd-application.yaml
Normal file
82
mantisbt/mantisbt/argocd-application.yaml
Normal file
@@ -0,0 +1,82 @@
|
|||||||
|
# ArgoCD Application für MantisBT v0.4.0 (mit xlrl/mantisbt)
|
||||||
|
apiVersion: argoproj.io/v1alpha1
|
||||||
|
kind: Application
|
||||||
|
metadata:
|
||||||
|
name: mantisbt
|
||||||
|
namespace: argocd
|
||||||
|
finalizers:
|
||||||
|
- resources-finalizer.argocd.argoproj.io
|
||||||
|
spec:
|
||||||
|
project: default
|
||||||
|
source:
|
||||||
|
repoURL: 'https://gitea.innovation-hub-niedersachsen.de/innohub/charts/raw/main/mantisbt'
|
||||||
|
targetRevision: 0.4.*
|
||||||
|
chart: mantisbt
|
||||||
|
helm:
|
||||||
|
values: |
|
||||||
|
image:
|
||||||
|
repository: xlrl/mantisbt
|
||||||
|
tag: "latest"
|
||||||
|
|
||||||
|
ingress:
|
||||||
|
enabled: true
|
||||||
|
className: traefik
|
||||||
|
annotations:
|
||||||
|
kubernetes.io/ingress.class: traefik
|
||||||
|
traefik.ingress.kubernetes.io/router.tls: "true"
|
||||||
|
traefik.ingress.kubernetes.io/router.entrypoints: websecure
|
||||||
|
cert-manager.io/cluster-issuer: lets-encrypt
|
||||||
|
hosts:
|
||||||
|
- mantisbt.innovation-hub-niedersachsen.de
|
||||||
|
tls:
|
||||||
|
- secretName: mantisbt-tls
|
||||||
|
hosts:
|
||||||
|
- mantisbt.innovation-hub-niedersachsen.de
|
||||||
|
|
||||||
|
mantisbt:
|
||||||
|
# WICHTIG: Nach der Installation auf "0" setzen!
|
||||||
|
enableAdmin: "1"
|
||||||
|
timezone: "Europe/Berlin"
|
||||||
|
# Master Salt - WICHTIG: Einmal setzen und nicht mehr ändern!
|
||||||
|
masterSalt: "shJaiK32W2tABdTZjwRUrZN+90AWLHXaLKiOt1Fwpaw="
|
||||||
|
|
||||||
|
persistence:
|
||||||
|
enabled: true
|
||||||
|
storageClass: longhorn
|
||||||
|
size: 10Gi
|
||||||
|
|
||||||
|
resources:
|
||||||
|
requests:
|
||||||
|
memory: 256Mi
|
||||||
|
cpu: 100m
|
||||||
|
limits:
|
||||||
|
memory: 512Mi
|
||||||
|
cpu: 500m
|
||||||
|
|
||||||
|
mariadb:
|
||||||
|
enabled: true
|
||||||
|
image:
|
||||||
|
tag: "latest"
|
||||||
|
auth:
|
||||||
|
database: mantisbt
|
||||||
|
username: mantisbt
|
||||||
|
password: "MantisDBPassword_2024!"
|
||||||
|
rootPassword: "RootDBPassword_2024!"
|
||||||
|
primary:
|
||||||
|
persistence:
|
||||||
|
enabled: true
|
||||||
|
storageClass: longhorn
|
||||||
|
size: 8Gi
|
||||||
|
|
||||||
|
destination:
|
||||||
|
server: 'https://kubernetes.default.svc'
|
||||||
|
namespace: mantisbt
|
||||||
|
syncPolicy:
|
||||||
|
managedNamespaceMetadata:
|
||||||
|
labels:
|
||||||
|
pod-security.kubernetes.io/enforce: "privileged"
|
||||||
|
automated:
|
||||||
|
selfHeal: true
|
||||||
|
prune: true
|
||||||
|
syncOptions:
|
||||||
|
- CreateNamespace=true
|
||||||
@@ -63,6 +63,12 @@ spec:
|
|||||||
value: {{ .Values.mantisbt.timezone | default "Europe/Berlin" | quote }}
|
value: {{ .Values.mantisbt.timezone | default "Europe/Berlin" | quote }}
|
||||||
- name: MANTIS_ENABLE_ADMIN
|
- name: MANTIS_ENABLE_ADMIN
|
||||||
value: {{ .Values.mantisbt.enableAdmin | default "1" | quote }}
|
value: {{ .Values.mantisbt.enableAdmin | default "1" | quote }}
|
||||||
|
# Master salt from secret - keeps crypto keys stable across deployments
|
||||||
|
- name: MASTER_SALT
|
||||||
|
valueFrom:
|
||||||
|
secretKeyRef:
|
||||||
|
name: {{ template "mantisbt.fullname" . }}-secret
|
||||||
|
key: master-salt
|
||||||
{{- range $key := .Values.env }}
|
{{- range $key := .Values.env }}
|
||||||
{{- if .value }}
|
{{- if .value }}
|
||||||
- name: {{ .name }}
|
- name: {{ .name }}
|
||||||
|
|||||||
@@ -10,11 +10,8 @@ metadata:
|
|||||||
type: Opaque
|
type: Opaque
|
||||||
stringData:
|
stringData:
|
||||||
database-password: {{ include "mantisbt.databasePassword" . | quote }}
|
database-password: {{ include "mantisbt.databasePassword" . | quote }}
|
||||||
admin-password: {{ .Values.mantisbt.adminPassword | quote }}
|
# Master salt - use provided value or generate random one
|
||||||
master-salt: {{ randAlphaNum 64 | b64enc | quote }}
|
master-salt: {{ .Values.mantisbt.masterSalt | default (randAlphaNum 64 | b64enc) | quote }}
|
||||||
{{- if .Values.mantisbt.email.smtpPassword }}
|
|
||||||
smtp-password: {{ .Values.mantisbt.email.smtpPassword | quote }}
|
|
||||||
{{- end }}
|
|
||||||
{{- range .Values.secretEnv }}
|
{{- range .Values.secretEnv }}
|
||||||
{{ .name }}: {{ .value | quote }}
|
{{ .name }}: {{ .value | quote }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
|||||||
@@ -74,6 +74,11 @@ mantisbt:
|
|||||||
|
|
||||||
# Timezone (xlrl uses MANTIS_TIMEZONE)
|
# Timezone (xlrl uses MANTIS_TIMEZONE)
|
||||||
timezone: "Europe/Berlin"
|
timezone: "Europe/Berlin"
|
||||||
|
|
||||||
|
# Master Salt for crypto - IMPORTANT: Set this to keep it stable across deployments!
|
||||||
|
# If not set, a random one will be generated (but changes on each deploy)
|
||||||
|
# Generate with: openssl rand -base64 32
|
||||||
|
masterSalt: ""
|
||||||
|
|
||||||
# Environment variables
|
# Environment variables
|
||||||
env: []
|
env: []
|
||||||
|
|||||||
Reference in New Issue
Block a user