Commit new Chart releases for TrueCharts
Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
parent
b68483a807
commit
38d11a0490
|
@ -1,9 +0,0 @@
|
|||
|
||||
|
||||
## [mongodb-8.0.44](https://github.com/truecharts/charts/compare/mongodb-8.0.43...mongodb-8.0.44) (2023-11-17)
|
||||
|
||||
### Chore
|
||||
|
||||
- update container image tccr.io/truecharts/mongodb to v7.0.3 ([#14745](https://github.com/truecharts/charts/issues/14745))
|
||||
|
||||
|
|
@ -4,6 +4,15 @@
|
|||
|
||||
|
||||
|
||||
## [mongodb-8.0.45](https://github.com/truecharts/charts/compare/mongodb-8.0.44...mongodb-8.0.45) (2023-11-17)
|
||||
|
||||
### Chore
|
||||
|
||||
- update container image bitnami/mongodb to 7.0.3 ([#14753](https://github.com/truecharts/charts/issues/14753))
|
||||
|
||||
|
||||
|
||||
|
||||
## [mongodb-8.0.44](https://github.com/truecharts/charts/compare/mongodb-8.0.43...mongodb-8.0.44) (2023-11-17)
|
||||
|
||||
### Chore
|
||||
|
@ -88,12 +97,3 @@
|
|||
- update helm chart common to 14.2.3 ([#14362](https://github.com/truecharts/charts/issues/14362))
|
||||
|
||||
|
||||
|
||||
|
||||
## [mongodb-8.0.34](https://github.com/truecharts/charts/compare/mongodb-8.0.33...mongodb-8.0.34) (2023-11-01)
|
||||
|
||||
### Chore
|
||||
|
||||
- update helm chart common to 14.2.2 ([#14190](https://github.com/truecharts/charts/issues/14190))
|
||||
|
||||
|
|
@ -23,7 +23,7 @@ sources:
|
|||
- https://github.com/bitnami/bitnami-docker-mongodb
|
||||
- https://www.mongodb.com
|
||||
type: application
|
||||
version: 8.0.44
|
||||
version: 8.0.45
|
||||
annotations:
|
||||
truecharts.org/category: database
|
||||
truecharts.org/SCALE-support: "true"
|
|
@ -0,0 +1,9 @@
|
|||
|
||||
|
||||
## [mongodb-8.0.45](https://github.com/truecharts/charts/compare/mongodb-8.0.44...mongodb-8.0.45) (2023-11-17)
|
||||
|
||||
### Chore
|
||||
|
||||
- update container image bitnami/mongodb to 7.0.3 ([#14753](https://github.com/truecharts/charts/issues/14753))
|
||||
|
||||
|
|
@ -1,8 +1,7 @@
|
|||
image:
|
||||
repository: tccr.io/truecharts/mongodb
|
||||
repository: bitnami/mongodb
|
||||
pullPolicy: IfNotPresent
|
||||
tag: v7.0.3@sha256:b1f2af7d594e23158886e6b4f279b34491f261e9d26d7a370ad36950214f04de
|
||||
|
||||
tag: 7.0.3@sha256:ae6638ebc49f3d348e452f5cacb53f21356bfe9f9316569edd064ba0b22fe945
|
||||
workload:
|
||||
main:
|
||||
replicas: 1
|
||||
|
@ -42,7 +41,6 @@ workload:
|
|||
- /bin/bash
|
||||
- -ec
|
||||
- echo "db.runCommand(\"ping\")" | mongosh --host localhost --port 27017 ${MONGODB_DATABASE} --quiet
|
||||
|
||||
# -- Redainess probe configuration
|
||||
# @default -- See below
|
||||
readiness:
|
||||
|
@ -59,7 +57,6 @@ workload:
|
|||
- /bin/bash
|
||||
- -ec
|
||||
- echo "db.runCommand(\"ping\")" | mongosh --host localhost --port 27017 ${MONGODB_DATABASE} --quiet
|
||||
|
||||
# -- Startup probe configuration
|
||||
# @default -- See below
|
||||
startup:
|
||||
|
@ -75,43 +72,35 @@ workload:
|
|||
- /bin/bash
|
||||
- -ec
|
||||
- echo "db.runCommand(\"ping\")" | mongosh --host localhost --port 27017 ${MONGODB_DATABASE} --quiet
|
||||
|
||||
service:
|
||||
main:
|
||||
ports:
|
||||
main:
|
||||
port: 27017
|
||||
targetPort: 27017
|
||||
|
||||
securityContext:
|
||||
container:
|
||||
runAsGroup: 0
|
||||
readOnlyRootFilesystem: false
|
||||
|
||||
persistence:
|
||||
data:
|
||||
enabled: true
|
||||
mountPath: "/bitnami/mongodb"
|
||||
|
||||
mongodbUsername: "test"
|
||||
mongodbDatabase: "test"
|
||||
mongodbRootPassword: "testroot"
|
||||
|
||||
# -- Secret or password
|
||||
# One of these options is required, unless used as a dependency for another TrueCharts chart.
|
||||
mongodbPassword: ""
|
||||
existingSecret: ""
|
||||
|
||||
secret:
|
||||
credentials:
|
||||
enabled: true
|
||||
data:
|
||||
mongodb-password: '{{ ( .Values.mongodbPassword | default "empty" ) }}'
|
||||
mongodb-root-password: '{{ ( .Values.mongodbRootPassword | default "empty" ) }}'
|
||||
|
||||
portal:
|
||||
open:
|
||||
enabled: false
|
||||
|
||||
manifestManager:
|
||||
enabled: false
|
Loading…
Reference in New Issue