35ef4e5edf
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [public.ecr.aws/bitnami/mongodb](https://redirect.github.com/bitnami/containers) ([source](https://redirect.github.com/bitnami/containers/tree/HEAD/bitnami/mongodb)) | digest | `f4efb32` -> `c7cbade` | --- > [!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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzQuMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzNC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19-->
96 lines
3.6 KiB
YAML
96 lines
3.6 KiB
YAML
image:
|
|
repository: public.ecr.aws/bitnami/mongodb
|
|
pullPolicy: IfNotPresent
|
|
tag: 8.0.6@sha256:c7cbadeb3c01e96eb1858eae3dfb3dc3e7c2ead5969a5f4b47271fcca92f278d
|
|
|
|
includeCommon: true
|
|
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
|
|
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" ) }}'
|