Commit new Chart releases for TrueCharts

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
TrueCharts-Bot 2022-09-03 08:20:37 +00:00
parent 9c6cee7636
commit 3e6bf01ebc
32 changed files with 54 additions and 49 deletions

View File

@ -2,6 +2,15 @@
## [inventree-4.0.7](https://github.com/truecharts/charts/compare/inventree-4.0.6...inventree-4.0.7) (2022-09-03)
### Fix
- update nginx.conf mount method ([#3656](https://github.com/truecharts/charts/issues/3656))
## [inventree-4.0.6](https://github.com/truecharts/charts/compare/inventree-4.0.4...inventree-4.0.6) (2022-08-30)
### Chore
@ -88,12 +97,3 @@
## [inventree-3.0.42](https://github.com/truecharts/charts/compare/inventree-3.0.41...inventree-3.0.42) (2022-08-17)
### Chore
- update helm general non-major helm releases ([#3484](https://github.com/truecharts/charts/issues/3484))
## [inventree-3.0.41](https://github.com/truecharts/charts/compare/inventree-3.0.40...inventree-3.0.41) (2022-08-14)

View File

@ -9,4 +9,4 @@ dependencies:
repository: https://charts.truecharts.org
version: 3.0.67
digest: sha256:1c6ba2cfc84ac5c9cca053fd1d5442cd3f885a349425199967457130aee0eb4a
generated: "2022-09-01T22:08:49.062329895Z"
generated: "2022-09-03T08:12:45.712440944Z"

View File

@ -28,7 +28,7 @@ sources:
- https://github.com/truecharts/charts/tree/master/charts/stable/inventree
- https://inventree.readthedocs.io
- https://github.com/inventree/InvenTree
version: 4.0.6
version: 4.0.7
annotations:
truecharts.org/catagories: |
- utilities

View File

@ -1,6 +1,6 @@
# inventree
![Version: 4.0.6](https://img.shields.io/badge/Version-4.0.6-informational?style=flat-square) ![AppVersion: 0.8.2](https://img.shields.io/badge/AppVersion-0.8.2-informational?style=flat-square)
![Version: 4.0.7](https://img.shields.io/badge/Version-4.0.7-informational?style=flat-square) ![AppVersion: 0.8.2](https://img.shields.io/badge/AppVersion-0.8.2-informational?style=flat-square)
InvenTree is an open-source Inventory Management System which provides powerful low-level stock control and part tracking.

View File

@ -6,6 +6,7 @@ image:
nginxImage:
repository: tccr.io/truecharts/nginx
tag: v1.23.1@sha256:1620254cd011e2b81361f1f4682fd6cceadf13b07f8e37f322b60407d6d5a766
pullPolicy: IfNotPresent
securityContext:
readOnlyRootFilesystem: false
@ -53,13 +54,10 @@ persistence:
enabled: true
mountPath: "/home/inventree/data"
inventree-nginx:
enabled: "true"
enabled: true
noMount: true
subPath: "nginx.conf"
type: "custom"
volumeSpec:
configMap:
name: '{{ include "tc.common.names.fullname" . }}-inventree-config'
type: configMap
objectName: '{{ include "tc.common.names.fullname" . }}-inventree-config-nginx'
postgresql:
enabled: true

View File

@ -2593,7 +2593,9 @@ questions:
required: true
- variable: docs
group: Documentation
label: "Please read the documentation at https://truecharts.org"
label: Please read the documentation at https://truecharts.org
description: Please read the documentation at
<br /><a href="https://truecharts.org">https://truecharts.org</a>
schema:
additional_attrs: true
type: dict
@ -2605,7 +2607,9 @@ questions:
default: true
- variable: donateNag
group: Documentation
label: "Please consider supporting TrueCharts, see: https://truecharts.org/docs/about/sponsor"
label: Please consider supporting TrueCharts, see https://truecharts.org/docs/about/sponsor
description: Please consider supporting TrueCharts, see
<br /><a href="https://truecharts.org/docs/about/sponsor">https://truecharts.org/docs/about/sponsor</a>
schema:
additional_attrs: true
type: dict

View File

@ -2,6 +2,8 @@
{{- define "inventree.config" -}}
{{- $configName := printf "%s-inventree-config" (include "tc.common.names.fullname" .) }}
{{- $nginxConfigName := printf "%s-inventree-config-nginx" (include "tc.common.names.fullname" .) }}
---
apiVersion: v1
@ -51,6 +53,14 @@ data:
{{- with .Values.inventree.general.login_attempts }}
INVENTREE_LOGIN_ATTEMPTS: {{ . | quote }}
{{- end }}
---
apiVersion: v1
kind: ConfigMap
metadata:
name: {{ $nginxConfigName }}
labels:
{{- include "tc.common.labels" . | nindent 4 }}
data:
nginx.conf: |-
server {
listen {{ .Values.service.main.ports.main.port }};

View File

@ -1,19 +1,19 @@
{{/* Define the nginx container */}}
{{- define "inventree.nginx" -}}
image: {{ .Values.nginxImage.repository }}:{{ .Values.nginxImage.tag }}
imagePullPolicy: '{{ .Values.nginxImage.pullPolicy }}'
securityContext:
runAsUser: {{ .Values.podSecurityContext.runAsUser }}
runAsGroup: {{ .Values.podSecurityContext.runAsGroup }}
readOnlyRootFilesystem: {{ .Values.securityContext.readOnlyRootFilesystem }}
runAsNonRoot: {{ .Values.securityContext.runAsNonRoot }}
imagePullPolicy: {{ .Values.nginxImage.pullPolicy }}
ports:
- containerPort: {{ .Values.service.main.ports.main.port }}
name: main
securityContext:
runAsUser: 0
runAsGroup: {{ .Values.podSecurityContext.runAsGroup }}
readOnlyRootFilesystem: false
runAsNonRoot: false
volumeMounts:
- name: inventree-nginx
mountPath: "/etc/nginx/conf.d/default.conf"
subPath: nginx.conf
subPath: default.conf
readOnly: true
- name: data
mountPath: "/var/www"

View File

@ -2,6 +2,15 @@
## [wger-1.1.1](https://github.com/truecharts/charts/compare/wger-1.1.0...wger-1.1.1) (2022-09-03)
### Fix
- update nginx.conf mount method ([#3656](https://github.com/truecharts/charts/issues/3656))
## [wger-1.1.0](https://github.com/truecharts/charts/compare/wger-1.0.0...wger-1.1.0) (2022-09-01)
### Feat
@ -88,12 +97,3 @@
## [wger-0.0.45](https://github.com/truecharts/charts/compare/wger-0.0.44...wger-0.0.45) (2022-08-25)
### Chore
- update docker general non-major ([#3561](https://github.com/truecharts/charts/issues/3561))
## [wger-0.0.44](https://github.com/truecharts/charts/compare/wger-0.0.43...wger-0.0.44) (2022-08-24)
### Chore

View File

@ -9,4 +9,4 @@ dependencies:
repository: https://charts.truecharts.org
version: 3.0.67
digest: sha256:1c6ba2cfc84ac5c9cca053fd1d5442cd3f885a349425199967457130aee0eb4a
generated: "2022-08-31T00:26:22.322759343Z"
generated: "2022-09-03T08:12:45.347032486Z"

View File

@ -27,7 +27,7 @@ sources:
- https://github.com/truecharts/charts/tree/master/charts/stable/wger
- https://github.com/wger-project/wger
- https://github.com/wger-project/docker
version: 1.1.0
version: 1.1.1
annotations:
truecharts.org/catagories: |
- life

View File

@ -1,6 +1,6 @@
# wger
![Version: 1.1.0](https://img.shields.io/badge/Version-1.1.0-informational?style=flat-square) ![AppVersion: latest](https://img.shields.io/badge/AppVersion-latest-informational?style=flat-square)
![Version: 1.1.1](https://img.shields.io/badge/Version-1.1.1-informational?style=flat-square) ![AppVersion: latest](https://img.shields.io/badge/AppVersion-latest-informational?style=flat-square)
Workout Manager is a free, open source web application that helps you manage your personal workouts, weight and diet plans and can also be used as a simple gym management utility.

View File

@ -64,17 +64,10 @@ persistence:
type: emptyDir
mountPath: "/home/wger/static"
wger-config:
enabled: "true"
enabled: true
noMount: true
readOnly: true
type: "custom"
mountPath: "/etc/nginx/conf.d"
volumeSpec:
configMap:
name: '{{ include "tc.common.names.fullname" . }}-wger-nginx-config'
items:
- key: nginx.conf
path: default.conf
type: configMap
objectName: '{{ include "tc.common.names.fullname" . }}-wger-nginx-config'
postgresql:
enabled: true