Commit new Chart releases for TrueCharts

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
TrueCharts-Bot 2023-01-12 14:58:55 +00:00
parent cbd884237c
commit 0f1f0f2122
233 changed files with 4302 additions and 371 deletions

View File

@ -0,0 +1,99 @@
**Important:**
*for the complete changelog, please refer to the website*
## [postgresql-11.0.19](https://github.com/truecharts/charts/compare/postgresql-11.0.18...postgresql-11.0.19) (2023-01-12)
### Chore
- update container image tccr.io/truecharts/postgresql to 14.6.0
## [postgresql-11.0.18](https://github.com/truecharts/charts/compare/postgresql-11.0.17...postgresql-11.0.18) (2023-01-07)
### Chore
- update container image tccr.io/truecharts/postgresql to 14.6.0
## [postgresql-11.0.17](https://github.com/truecharts/charts/compare/postgresql-11.0.16...postgresql-11.0.17) (2022-12-27)
### Chore
- update helm chart common to 11.1.2 ([#5855](https://github.com/truecharts/charts/issues/5855))
## [postgresql-11.0.16](https://github.com/truecharts/charts/compare/postgresql-11.0.15...postgresql-11.0.16) (2022-12-26)
### Chore
- update helm chart common to 11.1.1
## [postgresql-11.0.15](https://github.com/truecharts/charts/compare/postgresql-11.0.14...postgresql-11.0.15) (2022-12-25)
### Chore
- update container image tccr.io/truecharts/postgresql to 14.6.0
## [postgresql-11.0.14](https://github.com/truecharts/charts/compare/postgresql-11.0.13...postgresql-11.0.14) (2022-12-24)
### Chore
- update helm chart common to v11.1.0 ([#5686](https://github.com/truecharts/charts/issues/5686))
## [postgresql-11.0.13](https://github.com/truecharts/charts/compare/postgresql-11.0.12...postgresql-11.0.13) (2022-12-17)
## [postgresql-11.0.12](https://github.com/truecharts/charts/compare/postgresql-11.0.11...postgresql-11.0.12) (2022-12-14)
### Chore
- update helm chart common to v11.0.8
## [postgresql-11.0.11](https://github.com/truecharts/charts/compare/postgresql-11.0.10...postgresql-11.0.11) (2022-12-12)
### Chore
- update container image tccr.io/truecharts/postgresql to 14.6.0
## [postgresql-11.0.10](https://github.com/truecharts/charts/compare/postgresql-11.0.9...postgresql-11.0.10) (2022-12-11)
### Chore
- update helm chart common to v11.0.7 ([#5266](https://github.com/truecharts/charts/issues/5266))
## [postgresql-11.0.9](https://github.com/truecharts/charts/compare/postgresql-11.0.8...postgresql-11.0.9) (2022-12-07)
## [postgresql-11.0.8](https://github.com/truecharts/charts/compare/postgresql-11.0.7...postgresql-11.0.8) (2022-12-06)

View File

@ -0,0 +1,31 @@
apiVersion: v2
appVersion: "14.6.0"
dependencies:
- name: common
repository: https://library-charts.truecharts.org
version: 11.1.2
deprecated: false
description: PostgresSQL
home: https://truecharts.org/charts/dependency/postgresql
icon: https://truecharts.org/img/hotlink-ok/chart-icons/postgresql.png
keywords:
- postgres
- postgressql
- dtabase
- sql
kubeVersion: ">=1.16.0-0"
maintainers:
- email: info@truecharts.org
name: TrueCharts
url: https://truecharts.org
name: postgresql
sources:
- https://github.com/truecharts/charts/tree/master/charts/dependency/postgresql
- https://www.postgresql.org/
type: application
version: 11.0.19
annotations:
truecharts.org/catagories: |
- database
truecharts.org/SCALE-support: "true"
truecharts.org/grade: U

View File

@ -0,0 +1,9 @@
## [postgresql-11.0.19](https://github.com/truecharts/charts/compare/postgresql-11.0.18...postgresql-11.0.19) (2023-01-12)
### Chore
- update container image tccr.io/truecharts/postgresql to 14.6.0

View File

@ -0,0 +1,8 @@
PostgresSQL
This App is supplied by TrueCharts, for more information visit the manual: [https://truecharts.org/charts/dependency/postgresql](https://truecharts.org/charts/dependency/postgresql)
---
TrueCharts can only exist due to the incredible effort of our staff.
Please consider making a [donation](https://truecharts.org/about/sponsor) or contributing back to the project any way you can!

View File

@ -0,0 +1,129 @@
image:
repository: tccr.io/truecharts/postgresql
pullPolicy: IfNotPresent
tag: 14.6.0@sha256:e62480ab765247161e54506890190b2a5cfe2275cf5882c47d3e2e0f8cbc083f
controller:
# -- Set the controller type.
# Valid options are deployment, daemonset or statefulset
type: statefulset
# -- Number of desired pods
replicas: 1
# -- Set the controller upgrade strategy
# For Deployments, valid values are Recreate (default) and RollingUpdate.
# For StatefulSets, valid values are OnDelete and RollingUpdate (default).
# DaemonSets ignore this.
strategy: RollingUpdate
rollingUpdate:
# -- Set deployment RollingUpdate max unavailable
unavailable: 1
# -- Set deployment RollingUpdate max surge
surge:
# -- Set statefulset RollingUpdate partition
partition:
# -- ReplicaSet revision history limit
revisionHistoryLimit: 3
securityContext:
readOnlyRootFilesystem: false
service:
main:
ports:
main:
port: 5432
targetPort: 5432
## TODO: Fix the backup-on-upgrade system
enableUpgradeBackup: false
podSecurityContext:
runAsGroup: 0
volumeClaimTemplates:
db:
enabled: true
mountPath: "/bitnami/postgresql"
# -- Probe configuration
# -- [[ref]](https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/)
# @default -- See below
probes:
# -- Liveness probe configuration
# @default -- See below
liveness:
# -- Enable the liveness probe
enabled: true
# -- Set this to `true` if you wish to specify your own livenessProbe
custom: true
# -- The spec field contains the values for the default livenessProbe.
# If you selected `custom: true`, this field holds the definition of the livenessProbe.
# @default -- See below
spec:
exec:
command:
- sh
- -c
- "until pg_isready -U ${POSTGRES_USER} -h localhost; do sleep 2 ; done"
# -- Redainess probe configuration
# @default -- See below
readiness:
# -- Enable the readiness probe
enabled: true
# -- Set this to `true` if you wish to specify your own readinessProbe
custom: true
# -- The spec field contains the values for the default readinessProbe.
# If you selected `custom: true`, this field holds the definition of the readinessProbe.
# @default -- See below
spec:
exec:
command:
- sh
- -c
- "until pg_isready -U ${POSTGRES_USER} -h localhost; do sleep 2 ; done"
# -- Startup probe configuration
# @default -- See below
startup:
# -- Enable the startup probe
enabled: true
custom: true
# -- The spec field contains the values for the default livenessProbe.
# If you selected `custom: true`, this field holds the definition of the livenessProbe.
# @default -- See below
spec:
exec:
command:
- sh
- -c
- "until pg_isready -U ${POSTGRES_USER} -h localhost; do sleep 2 ; done"
postgresqlPassword: "testpass"
postgresqlUsername: "test"
postgresqlDatabase: "test"
postgrespassword: "testroot"
existingSecret: ""
secret:
credentials:
enabled: true
data:
postgresql-password: '{{ ( .Values.postgresqlPassword | default "empty" ) }}'
postgresql-postgres-password: '{{ ( .Values.postgrespassword | default "empty" ) }}'
env:
POSTGRES_PASSWORD:
secretKeyRef:
name: '{{ .Values.existingSecret | default ( printf "%s-credentials" ( include "tc.common.names.fullname" . ) ) }}'
key: "postgresql-password"
POSTGRESQL_POSTGRES_PASSWORD:
secretKeyRef:
name: '{{ .Values.existingSecret | default ( printf "%s-credentials" ( include "tc.common.names.fullname" . ) ) }}'
key: "postgresql-postgres-password"
POSTGRES_USER: "{{ .Values.postgresqlUsername }}"
POSTGRES_DB: "{{ .Values.postgresqlDatabase }}"
# POSTGRESQL_POSTGRES_PASSWORD: "{{ .Values.postgrespassword }}"
# POSTGRESQL_PASSWORD: "{{ .Values.password }}"
portal:
enabled: false

File diff suppressed because it is too large Load Diff

View File

@ -1,9 +0,0 @@
## [redis-5.0.24](https://github.com/truecharts/charts/compare/redis-5.0.23...redis-5.0.24) (2023-01-07)
### Chore
- update container image tccr.io/truecharts/redis to 7.0.7

View File

@ -4,6 +4,15 @@
## [redis-5.0.25](https://github.com/truecharts/charts/compare/redis-5.0.24...redis-5.0.25) (2023-01-12)
### Chore
- update container image tccr.io/truecharts/redis to 7.0.7
## [redis-5.0.24](https://github.com/truecharts/charts/compare/redis-5.0.23...redis-5.0.24) (2023-01-07)
### Chore
@ -88,12 +97,3 @@
- update container image tccr.io/truecharts/redis to v7.0.7
## [redis-5.0.14](https://github.com/truecharts/charts/compare/redis-5.0.13...redis-5.0.14) (2022-12-16)
### Chore
- update container image tccr.io/truecharts/redis to 7.0.6

View File

@ -23,7 +23,7 @@ sources:
- https://github.com/bitnami/bitnami-docker-redis
- http://redis.io/
type: application
version: 5.0.24
version: 5.0.25
annotations:
truecharts.org/catagories: |
- database

View File

@ -0,0 +1,9 @@
## [redis-5.0.25](https://github.com/truecharts/charts/compare/redis-5.0.24...redis-5.0.25) (2023-01-12)
### Chore
- update container image tccr.io/truecharts/redis to 7.0.7

View File

@ -1,7 +1,7 @@
image:
repository: tccr.io/truecharts/redis
pullPolicy: IfNotPresent
tag: 7.0.7@sha256:b585665b978f53aac8c40452acf0110a58e1caa7cbb251590b3e63ba4e0275c9
tag: 7.0.7@sha256:aece92d54cff3a5b984bc114165643898aed87b504e2bb6d19eaefb25082fff1
controller:
# -- Set the controller type.

View File

@ -1,9 +0,0 @@
## [solr-2.0.20](https://github.com/truecharts/charts/compare/solr-2.0.19...solr-2.0.20) (2023-01-07)
### Chore
- update container image tccr.io/truecharts/solr to 9.1.0

View File

@ -4,6 +4,15 @@
## [solr-2.0.21](https://github.com/truecharts/charts/compare/solr-2.0.20...solr-2.0.21) (2023-01-12)
### Chore
- update container image tccr.io/truecharts/solr to 9.1.0
## [solr-2.0.20](https://github.com/truecharts/charts/compare/solr-2.0.19...solr-2.0.20) (2023-01-07)
### Chore
@ -88,12 +97,3 @@
- update container image tccr.io/truecharts/solr to 9.1.0
## [solr-2.0.10](https://github.com/truecharts/charts/compare/solr-2.0.9...solr-2.0.10) (2022-12-11)
### Chore
- update helm chart common to v11.0.7 ([#5266](https://github.com/truecharts/charts/issues/5266))

View File

@ -23,7 +23,7 @@ sources:
- https://github.com/apache/solr
- https://hub.docker.com/r/bitnami/solr/
type: application
version: 2.0.20
version: 2.0.21
annotations:
truecharts.org/catagories: |
- search

View File

@ -0,0 +1,27 @@
# README
## General Info
TrueCharts can be installed as both *normal* Helm Charts or as Apps on TrueNAS SCALE.
However only installations using the TrueNAS SCALE Apps system are supported.
For more information about this App, please check the docs on the TrueCharts [website](https://truecharts.org/charts/dependency/)
**This chart is not maintained by the upstream project and any issues with the chart should be raised [here](https://github.com/truecharts/charts/issues/new/choose)**
## Support
- Please check our [quick-start guides for TrueNAS SCALE](https://truecharts.org/manual/SCALE%20Apps/Important-MUST-READ).
- See the [Website](https://truecharts.org)
- Check our [Discord](https://discord.gg/tVsPTHWTtr)
- Open a [issue](https://github.com/truecharts/charts/issues/new/choose)
---
## Sponsor TrueCharts
TrueCharts can only exist due to the incredible effort of our staff.
Please consider making a [donation](https://truecharts.org/sponsor) or contributing back to the project any way you can!
*All Rights Reserved - The TrueCharts Project*

View File

@ -0,0 +1,9 @@
## [solr-2.0.21](https://github.com/truecharts/charts/compare/solr-2.0.20...solr-2.0.21) (2023-01-12)
### Chore
- update container image tccr.io/truecharts/solr to 9.1.0

View File

@ -1,7 +1,7 @@
image:
repository: tccr.io/truecharts/solr
pullPolicy: IfNotPresent
tag: 9.1.0@sha256:749abaf8b33374642c7eaa9309e9aacda10d23231fab2d9857791f418624c09c
tag: 9.1.0@sha256:9c1dcac6755b84b94914c6510c01dc2fd743df86c1c90f5d522ec5e272bb7b3f
controller:
# -- Set the controller type.

View File

@ -0,0 +1,2 @@
{{ include "tc.common.loader.all" . }}

View File

@ -1,9 +0,0 @@
## [dashy-2.0.12](https://github.com/truecharts/charts/compare/dashy-2.0.11...dashy-2.0.12) (2023-01-04)
### Chore
- update container image tccr.io/truecharts/dashy to 2.1.1

View File

@ -4,6 +4,15 @@
## [dashy-2.0.13](https://github.com/truecharts/charts/compare/dashy-2.0.12...dashy-2.0.13) (2023-01-12)
### Chore
- update container image tccr.io/truecharts/dashy to 2.1.1
## [dashy-2.0.12](https://github.com/truecharts/charts/compare/dashy-2.0.11...dashy-2.0.12) (2023-01-04)
### Chore
@ -88,12 +97,3 @@
## [dashy-2.0.4](https://github.com/truecharts/charts/compare/dashy-2.0.2...dashy-2.0.4) (2022-11-30)
## [dashy-2.0.4](https://github.com/truecharts/charts/compare/dashy-2.0.2...dashy-2.0.4) (2022-11-30)
## [dashy-2.0.4](https://github.com/truecharts/charts/compare/dashy-2.0.2...dashy-2.0.4) (2022-11-30)

View File

@ -19,7 +19,7 @@ sources:
- https://github.com/truecharts/charts/tree/master/charts/incubator/dashy
- https://github.com/airsonic/airsonic
- https://hub.docker.com/r/lissy93/dashy
version: 2.0.12
version: 2.0.13
annotations:
truecharts.org/catagories: |
- dashboard

View File

@ -0,0 +1,9 @@
## [dashy-2.0.13](https://github.com/truecharts/charts/compare/dashy-2.0.12...dashy-2.0.13) (2023-01-12)
### Chore
- update container image tccr.io/truecharts/dashy to 2.1.1

View File

@ -1,6 +1,6 @@
image:
repository: tccr.io/truecharts/dashy
tag: 2.1.1@sha256:886c804224ffea715c46ae285d6aedc0a358cd1fce2e74be23dc145cc1603c66
tag: 2.1.1@sha256:15a9b131f91777c5ee5325ce0f89b426ebfdbd8b20f20742eec272b854730a52
pullPolicy: IfNotPresent
securityContext:

View File

@ -1,9 +0,0 @@
## [jelu-2.0.10](https://github.com/truecharts/charts/compare/jelu-2.0.9...jelu-2.0.10) (2022-12-27)
### Chore
- update helm general non-major ([#5856](https://github.com/truecharts/charts/issues/5856))

View File

@ -4,6 +4,15 @@
## [jelu-2.0.11](https://github.com/truecharts/charts/compare/jelu-2.0.10...jelu-2.0.11) (2023-01-12)
### Chore
- update container image tccr.io/truecharts/jelu to latest
## [jelu-2.0.10](https://github.com/truecharts/charts/compare/jelu-2.0.9...jelu-2.0.10) (2022-12-27)
### Chore
@ -88,12 +97,3 @@
## [jelu-2.0.3](https://github.com/truecharts/charts/compare/jelu-2.0.2...jelu-2.0.3) (2022-11-30)
## [jelu-2.0.3](https://github.com/truecharts/charts/compare/jelu-2.0.2...jelu-2.0.3) (2022-11-30)

View File

@ -26,4 +26,4 @@ sources:
- https://github.com/bayang/jelu
- https://hub.docker.com/r/wabayang/jelu
type: application
version: 2.0.10
version: 2.0.11

View File

@ -0,0 +1,9 @@
## [jelu-2.0.11](https://github.com/truecharts/charts/compare/jelu-2.0.10...jelu-2.0.11) (2023-01-12)
### Chore
- update container image tccr.io/truecharts/jelu to latest

View File

@ -2,7 +2,7 @@ env: {}
image:
pullPolicy: IfNotPresent
repository: tccr.io/truecharts/jelu
tag: latest@sha256:58dd6e4e50c3b94341ed8d0db9e2ba809a783fb2712e4d68684cbb50457254e8
tag: latest@sha256:037aef8d0b9dad448371283497983cbcc1a575fa58a050fe22896d63cad49490
persistence:
config:
enabled: true

View File

@ -1,9 +0,0 @@
## [nitter-1.0.2](https://github.com/truecharts/charts/compare/nitter-1.0.1...nitter-1.0.2) (2023-01-07)
### Chore
- update helm general non-major ([#6121](https://github.com/truecharts/charts/issues/6121))

View File

@ -4,6 +4,15 @@
## [nitter-1.0.3](https://github.com/truecharts/charts/compare/nitter-1.0.2...nitter-1.0.3) (2023-01-12)
### Chore
- update container image tccr.io/truecharts/nitter to latest
## [nitter-1.0.2](https://github.com/truecharts/charts/compare/nitter-1.0.1...nitter-1.0.2) (2023-01-07)
### Chore

View File

@ -25,7 +25,7 @@ sources:
- https://github.com/truecharts/charts/tree/master/charts/incubator/nitter
- https://github.com/zedeus/nitter
type: application
version: 1.0.2
version: 1.0.3
annotations:
truecharts.org/catagories: |
- media

View File

@ -0,0 +1,9 @@
## [nitter-1.0.3](https://github.com/truecharts/charts/compare/nitter-1.0.2...nitter-1.0.3) (2023-01-12)
### Chore
- update container image tccr.io/truecharts/nitter to latest

View File

@ -1,7 +1,7 @@
image:
repository: tccr.io/truecharts/nitter
pullPolicy: IfNotPresent
tag: latest@sha256:1ccd5f6123333870afca1b3ca5267357cd57d45824ae47976023a01fb79c9334
tag: latest@sha256:207683c2209c22743b388d889cbd2bd1deb80e01131dc77d9c6ff6b7b5ddac74
nitter:
general:

View File

@ -1,9 +0,0 @@
## [plextraktsync-3.0.14](https://github.com/truecharts/charts/compare/plextraktsync-3.0.13...plextraktsync-3.0.14) (2023-01-07)
### Chore
- update container image tccr.io/truecharts/plextraktsync to latest

View File

@ -4,6 +4,15 @@
## [plextraktsync-3.0.15](https://github.com/truecharts/charts/compare/plextraktsync-3.0.14...plextraktsync-3.0.15) (2023-01-12)
### Chore
- update container image tccr.io/truecharts/plextraktsync to latest
## [plextraktsync-3.0.14](https://github.com/truecharts/charts/compare/plextraktsync-3.0.13...plextraktsync-3.0.14) (2023-01-07)
### Chore
@ -85,15 +94,6 @@
## [plextraktsync-3.0.6](https://github.com/truecharts/charts/compare/plextraktsync-3.0.4...plextraktsync-3.0.6) (2022-11-30)
### Chore
- update container image tccr.io/truecharts/plextraktsync to latest
## [plextraktsync-3.0.6](https://github.com/truecharts/charts/compare/plextraktsync-3.0.4...plextraktsync-3.0.6) (2022-11-30)
### Chore

View File

@ -28,4 +28,4 @@ sources:
- https://github.com/Taxel/PlexTraktSync
- https://ghcr.io/taxel/plextraktsync
type: application
version: 3.0.14
version: 3.0.15

View File

@ -0,0 +1,9 @@
## [plextraktsync-3.0.15](https://github.com/truecharts/charts/compare/plextraktsync-3.0.14...plextraktsync-3.0.15) (2023-01-12)
### Chore
- update container image tccr.io/truecharts/plextraktsync to latest

View File

@ -1,7 +1,7 @@
image:
pullPolicy: IfNotPresent
repository: tccr.io/truecharts/plextraktsync
tag: latest@sha256:390dc4c12d4a457a8f9d3fcb21c7a8ed9357d3afbc7f28fb1d4ab1afad7f1aac
tag: latest@sha256:6cd6905406923bed6dd662e93ac38eb6d46aeea83904ab88bdafbad70328f937
podSecurityContext:
runAsGroup: 0

View File

@ -1,9 +0,0 @@
## [pyload-ng-2.0.12](https://github.com/truecharts/charts/compare/pyload-ng-2.0.11...pyload-ng-2.0.12) (2023-01-07)
### Chore
- update container image tccr.io/truecharts/pyload-ng to latest

View File

@ -4,6 +4,15 @@
## [pyload-ng-2.0.13](https://github.com/truecharts/charts/compare/pyload-ng-2.0.12...pyload-ng-2.0.13) (2023-01-12)
### Chore
- update container image tccr.io/truecharts/pyload-ng to latest
## [pyload-ng-2.0.12](https://github.com/truecharts/charts/compare/pyload-ng-2.0.11...pyload-ng-2.0.12) (2023-01-07)
### Chore
@ -85,15 +94,6 @@
## [pyload-ng-2.0.4](https://github.com/truecharts/charts/compare/pyload-ng-2.0.3...pyload-ng-2.0.4) (2022-12-01)
### Chore
- update container image tccr.io/truecharts/pyload-ng to latest
## [pyload-ng-2.0.4](https://github.com/truecharts/charts/compare/pyload-ng-2.0.3...pyload-ng-2.0.4) (2022-12-01)
### Chore

View File

@ -27,4 +27,4 @@ sources:
- https://github.com/orgs/linuxserver/packages/container/package/pyload-ng
- https://github.com/linuxserver/docker-pyload-ng#readme
type: application
version: 2.0.12
version: 2.0.13

View File

@ -0,0 +1,9 @@
## [pyload-ng-2.0.13](https://github.com/truecharts/charts/compare/pyload-ng-2.0.12...pyload-ng-2.0.13) (2023-01-12)
### Chore
- update container image tccr.io/truecharts/pyload-ng to latest

View File

@ -3,7 +3,7 @@ env:
image:
pullPolicy: IfNotPresent
repository: tccr.io/truecharts/pyload-ng
tag: latest@sha256:d7526c19d6d0c502944693b4c7c33c9bd9a9de2c5dc32a7f925a84a3d0f04adc
tag: latest@sha256:7836c88e779cdebd5a9df328e32b5888b416f75652e42a90a0a4f0e77d9e5eb9
persistence:
config:
enabled: true

View File

@ -1,9 +0,0 @@
## [ra-rom-processor-2.0.12](https://github.com/truecharts/charts/compare/ra-rom-processor-2.0.11...ra-rom-processor-2.0.12) (2023-01-07)
### Chore
- update container image tccr.io/truecharts/ra-rom-processor to latest

View File

@ -4,6 +4,15 @@
## [ra-rom-processor-2.0.13](https://github.com/truecharts/charts/compare/ra-rom-processor-2.0.12...ra-rom-processor-2.0.13) (2023-01-12)
### Chore
- update container image tccr.io/truecharts/ra-rom-processor to latest
## [ra-rom-processor-2.0.12](https://github.com/truecharts/charts/compare/ra-rom-processor-2.0.11...ra-rom-processor-2.0.12) (2023-01-07)
### Chore
@ -85,15 +94,6 @@
## [ra-rom-processor-2.0.4](https://github.com/truecharts/charts/compare/ra-rom-processor-2.0.2...ra-rom-processor-2.0.4) (2022-11-30)
### Chore
- update container image tccr.io/truecharts/ra-rom-processor to latest
## [ra-rom-processor-2.0.4](https://github.com/truecharts/charts/compare/ra-rom-processor-2.0.2...ra-rom-processor-2.0.4) (2022-11-30)
### Chore

View File

@ -23,7 +23,7 @@ sources:
- https://hub.docker.com/r/randomninjaatk/raromprocessor
- https://github.com/RandomNinjaAtk/docker-raromprocessor#instructionsusage-guidelines
type: application
version: 2.0.12
version: 2.0.13
annotations:
truecharts.org/catagories: |
- MediaApp-Other

View File

@ -0,0 +1,9 @@
## [ra-rom-processor-2.0.13](https://github.com/truecharts/charts/compare/ra-rom-processor-2.0.12...ra-rom-processor-2.0.13) (2023-01-12)
### Chore
- update container image tccr.io/truecharts/ra-rom-processor to latest

View File

@ -1,7 +1,7 @@
image:
pullPolicy: IfNotPresent
repository: tccr.io/truecharts/ra-rom-processor
tag: latest@sha256:f76274259b054b3dcba20a962150a0616ceae2e8b17420a8229cea8d20fbb240
tag: latest@sha256:fbe9374383c2795bbe9957a5a06495690eddd30c06e01a538bd6a8a3397829d4
podSecurityContext:
runAsGroup: 0

Some files were not shown because too many files have changed in this diff Show More