mantisbt fix
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-12T10:19:45.381062+01:00"
|
created: "2025-12-12T12:12:31.570744+01:00"
|
||||||
dependencies:
|
dependencies:
|
||||||
- condition: postgresql.enabled
|
- condition: postgresql.enabled
|
||||||
name: postgresql
|
name: postgresql
|
||||||
repository: https://charts.bitnami.com/bitnami
|
repository: https://charts.bitnami.com/bitnami
|
||||||
version: 16.*.*
|
version: 16.*.*
|
||||||
description: MantisBT Bug Tracker - A Helm chart for Kubernetes
|
description: MantisBT Bug Tracker - A Helm chart for Kubernetes
|
||||||
digest: 14e0657e509b2e4545bde0678b88eb17f21d6c66c03110a38082820d3f952a61
|
digest: ef966f22a43ee16de9873c29749a361ae869f1c14343dbbeb2e20fa24229b136
|
||||||
name: mantisbt
|
name: mantisbt
|
||||||
type: application
|
type: application
|
||||||
urls:
|
urls:
|
||||||
- https://gitea.innovation-hub-niedersachsen.de/innohub/charts/raw/main/mantisbt/mantisbt-0.1.0.tgz
|
- https://gitea.innovation-hub-niedersachsen.de/innohub/charts/raw/main/mantisbt/mantisbt-0.1.1.tgz
|
||||||
version: 0.1.0
|
version: 0.1.1
|
||||||
generated: "2025-12-12T10:19:45.376611+01:00"
|
generated: "2025-12-12T12:12:31.566386+01:00"
|
||||||
|
|||||||
Binary file not shown.
BIN
mantisbt/mantisbt-0.1.1.tgz
Normal file
BIN
mantisbt/mantisbt-0.1.1.tgz
Normal file
Binary file not shown.
@@ -3,4 +3,4 @@ dependencies:
|
|||||||
repository: https://charts.bitnami.com/bitnami
|
repository: https://charts.bitnami.com/bitnami
|
||||||
version: 16.7.27
|
version: 16.7.27
|
||||||
digest: sha256:5dc0caa006210414bad6131a00cff7b8ccc86a675ee6fd19a8f003eb2083890c
|
digest: sha256:5dc0caa006210414bad6131a00cff7b8ccc86a675ee6fd19a8f003eb2083890c
|
||||||
generated: "2025-12-12T10:14:31.503437+01:00"
|
generated: "2025-12-12T12:11:52.463199+01:00"
|
||||||
|
|||||||
@@ -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.1.0"
|
version: "0.1.1"
|
||||||
appVersion: "2.27.0"
|
appVersion: "2.27.0"
|
||||||
|
|
||||||
dependencies:
|
dependencies:
|
||||||
|
|||||||
@@ -104,28 +104,30 @@ spec:
|
|||||||
{{- toYaml .Values.securityContext | nindent 12 }}
|
{{- toYaml .Values.securityContext | nindent 12 }}
|
||||||
resources:
|
resources:
|
||||||
{{ toYaml .Values.resources | indent 12 }}
|
{{ toYaml .Values.resources | indent 12 }}
|
||||||
{{- if .Values.persistence.enabled }}
|
|
||||||
volumeMounts:
|
volumeMounts:
|
||||||
- name: data
|
|
||||||
mountPath: {{ .Values.persistence.mountPath }}
|
|
||||||
- name: config
|
- name: config
|
||||||
mountPath: /var/www/html/config/config_inc.php
|
mountPath: /var/www/html/config/config_inc.php
|
||||||
subPath: config_inc.php
|
subPath: config_inc.php
|
||||||
{{- end }}
|
{{- if .Values.persistence.enabled }}
|
||||||
|
- name: uploads
|
||||||
|
mountPath: /var/www/html/uploads
|
||||||
|
{{- end }}
|
||||||
livenessProbe:
|
livenessProbe:
|
||||||
httpGet:
|
httpGet:
|
||||||
path: /login_page.php
|
path: /
|
||||||
port: http
|
port: http
|
||||||
initialDelaySeconds: 60
|
initialDelaySeconds: 120
|
||||||
periodSeconds: 10
|
periodSeconds: 10
|
||||||
timeoutSeconds: 5
|
timeoutSeconds: 5
|
||||||
|
failureThreshold: 6
|
||||||
readinessProbe:
|
readinessProbe:
|
||||||
httpGet:
|
httpGet:
|
||||||
path: /login_page.php
|
path: /
|
||||||
port: http
|
port: http
|
||||||
initialDelaySeconds: 30
|
initialDelaySeconds: 60
|
||||||
periodSeconds: 5
|
periodSeconds: 5
|
||||||
timeoutSeconds: 3
|
timeoutSeconds: 3
|
||||||
|
failureThreshold: 10
|
||||||
{{- with .Values.nodeSelector }}
|
{{- with .Values.nodeSelector }}
|
||||||
nodeSelector:
|
nodeSelector:
|
||||||
{{ toYaml . | indent 8 }}
|
{{ toYaml . | indent 8 }}
|
||||||
@@ -139,11 +141,11 @@ spec:
|
|||||||
{{ toYaml . | indent 8 }}
|
{{ toYaml . | indent 8 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
volumes:
|
volumes:
|
||||||
{{- if .Values.persistence.enabled }}
|
|
||||||
- name: data
|
|
||||||
persistentVolumeClaim:
|
|
||||||
claimName: {{ template "mantisbt.fullname" . }}-data
|
|
||||||
{{- end }}
|
|
||||||
- name: config
|
- name: config
|
||||||
configMap:
|
configMap:
|
||||||
name: {{ template "mantisbt.fullname" . }}-config
|
name: {{ template "mantisbt.fullname" . }}-config
|
||||||
|
{{- if .Values.persistence.enabled }}
|
||||||
|
- name: uploads
|
||||||
|
persistentVolumeClaim:
|
||||||
|
claimName: {{ template "mantisbt.fullname" . }}-uploads
|
||||||
|
{{- end }}
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
apiVersion: v1
|
apiVersion: v1
|
||||||
kind: PersistentVolumeClaim
|
kind: PersistentVolumeClaim
|
||||||
metadata:
|
metadata:
|
||||||
name: {{ template "mantisbt.fullname" . }}-data
|
name: {{ template "mantisbt.fullname" . }}-uploads
|
||||||
labels:
|
labels:
|
||||||
app: {{ template "mantisbt.name" . }}
|
app: {{ template "mantisbt.name" . }}
|
||||||
chart: {{ template "mantisbt.chart" . }}
|
chart: {{ template "mantisbt.chart" . }}
|
||||||
|
|||||||
@@ -53,9 +53,9 @@ autoscaling:
|
|||||||
deploymentLabels: {}
|
deploymentLabels: {}
|
||||||
podLabels: {}
|
podLabels: {}
|
||||||
|
|
||||||
|
# Persistence for uploads only (not the whole /var/www/html!)
|
||||||
persistence:
|
persistence:
|
||||||
enabled: true
|
enabled: true
|
||||||
mountPath: /var/www/html
|
|
||||||
accessMode: ReadWriteOnce
|
accessMode: ReadWriteOnce
|
||||||
size: 5Gi
|
size: 5Gi
|
||||||
storageClass: ""
|
storageClass: ""
|
||||||
|
|||||||
Reference in New Issue
Block a user