95e000eb9c
This PR contains the following updates: | Package | Update | Change | |---|---|---| | docker.io/bitnamisecure/mongodb | digest | `af26342` -> `4d1a677` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi4xNy4wIiwidXBkYXRlZEluVmVyIjoiNDIuMTcuMCIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhcHAvbW9uZ29kYiIsImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19-->
97 lines
3.6 KiB
YAML
97 lines
3.6 KiB
YAML
image:
|
|
repository: docker.io/bitnamisecure/mongodb
|
|
pullPolicy: IfNotPresent
|
|
tag: latest@sha256:4d1a6779725e927f039a195019cd023c30b739b0a63b1d127a635a9c18f3c313
|
|
|
|
workload:
|
|
main:
|
|
replicas: 1
|
|
podSpec:
|
|
containers:
|
|
main:
|
|
env:
|
|
MONGODB_USERNAME: "{{ .Values.mongodbUsername }}"
|
|
MONGODB_DATABASE: "{{ .Values.mongodbDatabase }}"
|
|
MONGODB_PASSWORD: "{{ .Values.password }}"
|
|
MONGODB_ROOT_PASSWORD: "{{ .Values.rootPassword }}"
|
|
# -- 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:
|
|
- /bin/bash
|
|
- -ec
|
|
- echo "db.runCommand(\"ping\")" | mongosh --host localhost --port 27017 ${MONGODB_DATABASE} --quiet
|
|
# -- 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:
|
|
- /bin/bash
|
|
- -ec
|
|
- echo "db.runCommand(\"ping\")" | mongosh --host localhost --port 27017 ${MONGODB_DATABASE} --quiet
|
|
# -- 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:
|
|
- /bin/bash
|
|
- -ec
|
|
- echo "db.runCommand(\"ping\")" | mongosh --host localhost --port 27017 ${MONGODB_DATABASE} --quiet
|
|
service:
|
|
main:
|
|
ports:
|
|
main:
|
|
port: 27017
|
|
targetPort: 27017
|
|
protocol: tcp
|
|
|
|
securityContext:
|
|
container:
|
|
runAsGroup: 0
|
|
readOnlyRootFilesystem: false
|
|
persistence:
|
|
data:
|
|
enabled: true
|
|
mountPath: "/bitnami/mongodb"
|
|
mongodbUsername: "test"
|
|
mongodbDatabase: "test"
|
|
rootPassword: "PLACEHOLDERROOTPASSWORD"
|
|
# -- Secret or password
|
|
# One of these options is required, unless used as a dependency for another TrueCharts chart.
|
|
password: "PLACEHOLDERPASSWORD"
|
|
existingSecret: ""
|
|
secret:
|
|
credentials:
|
|
enabled: true
|
|
data:
|
|
mongodb-password: '{{ ( .Values.password | default "empty" ) }}'
|
|
mongodb-root-password: '{{ ( .Values.rootPassword | default "empty" ) }}'
|