c9ce7b0dd0
This PR contains the following updates: | Package | Update | Change | |---|---|---| | docker.io/wisemapping/wisemapping | digest | `a0b4999` → `fdc5503` | --- > [!WARNING] > Some dependencies could not be looked up. Check the [Dependency Dashboard](../issues/18710) for more information. Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Configuration 📅 **Schedule**: (UTC) - 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:eyJjcmVhdGVkSW5WZXIiOiI0My4xMzAuMSIsInVwZGF0ZWRJblZlciI6IjQzLjEzMC4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImFwcC93aXNlbWFwcGluZyIsImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvZGlnZXN0Il19-->
71 lines
1.8 KiB
YAML
71 lines
1.8 KiB
YAML
# yaml-language-server: $schema=./values.schema.json
|
|
image:
|
|
repository: docker.io/wisemapping/wisemapping
|
|
pullPolicy: IfNotPresent
|
|
tag: latest@sha256:fdc5503134fe7e701cd2603b8c61be0f5abe982c53ea9b002352875c5dbc8e1e
|
|
|
|
# When this is defined, the contents will be mounted
|
|
# as configmap into the container at /usr/local/tomcat/webapps/ROOT/WEB-INF/app.properties.
|
|
wisemappingConfig: {}
|
|
|
|
securityContext:
|
|
container:
|
|
readOnlyRootFilesystem: false
|
|
runAsNonRoot: false
|
|
runAsUser: 0
|
|
runAsGroup: 0
|
|
|
|
service:
|
|
main:
|
|
ports:
|
|
main:
|
|
port: 8080
|
|
targetPort: 8080
|
|
|
|
workload:
|
|
main:
|
|
podSpec:
|
|
initContainers:
|
|
init-config:
|
|
enabled: true
|
|
type: init
|
|
imageSelector: "image"
|
|
command:
|
|
- /bin/sh
|
|
- -c
|
|
args:
|
|
- |
|
|
mkdir -p /usr/local/tomcat/webapps/ROOT/WEB-INF/
|
|
if [ ! -f /usr/local/tomcat/webapps/ROOT/WEB-INF/app.properties ]; then
|
|
echo "Config file not found, copying dummy..."
|
|
cp /usr/local/tomcat/webapps/ROOT/WEB-INF/app.properties.dummy /usr/local/tomcat/webapps/ROOT/WEB-INF/app.properties
|
|
echo "Config file copied, you can now edit it at /usr/local/tomcat/webapps/ROOT/WEB-INF/app.properties"
|
|
fi
|
|
containers:
|
|
main:
|
|
probes:
|
|
liveness:
|
|
type: tcp
|
|
readiness:
|
|
type: tcp
|
|
startup:
|
|
type: tcp
|
|
env:
|
|
ADMIN_EMAIL: "change@me.com"
|
|
|
|
persistence:
|
|
config:
|
|
# Only enable when not using wisemappingConfig
|
|
enabled: false
|
|
mountPath: /usr/local/tomcat/webapps/ROOT/WEB-INF/
|
|
targetSelector:
|
|
main:
|
|
main: {}
|
|
init-config: {}
|
|
|
|
cnpg:
|
|
main:
|
|
enabled: true
|
|
user: wisemapping
|
|
database: wisemapping
|