Files
truecharts/charts/stable/servas/values.yaml
TrueCharts Bot c283f5bd3b chore(deps): update container image beromir/servas to v0.1.0@efbe35c by renovate (#17012)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| beromir/servas | minor | `0.0.7` -> `0.1.0` |

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

---

### Configuration

📅 **Schedule**: Branch creation - "before 10pm on monday" in timezone
Europe/Amsterdam, 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://togithub.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4xMjYuMiIsInVwZGF0ZWRJblZlciI6IjM3LjEyNi4yIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIn0=-->
2024-01-08 07:33:55 +01:00

69 lines
1.8 KiB
YAML

image:
repository: beromir/servas
pullPolicy: IfNotPresent
tag: 0.1.0@sha256:efbe35c680b7697def3c4cfc58eb0f8800c6550547159b3e56a55fda25adf907
securityContext:
container:
runAsNonRoot: false
readOnlyRootFilesystem: false
runAsUser: 0
runAsGroup: 0
service:
main:
ports:
main:
protocol: http
targetPort: 80
port: 11080
workload:
main:
podSpec:
containers:
main:
probes:
liveness:
path: "/"
type: http
readiness:
path: "/"
type: http
startup:
path: "/"
type: http
env:
APP_NAME: Servas
APP_KEY:
secretKeyRef:
name: servas-secrets
key: APP_KEY
APP_ENV: production
APP_DEBUG: false
# APP_URL: "http://localhost:{{ .Values.service.main.ports.main.port }}"
SERVAS_ENABLE_REGISTRATION: true
DB_CONNECTION: mysql
DB_HOST:
secretKeyRef:
expandObjectName: false
name: '{{ printf "%s-%s" .Release.Name "mariadbcreds" }}'
key: plainhost
DB_PORT: 3306
DB_DATABASE: "{{ .Values.mariadb.mariadbDatabase }}"
DB_USERNAME: "{{ .Values.mariadb.mariadbUsername }}"
DB_PASSWORD:
secretKeyRef:
expandObjectName: false
name: '{{ printf "%s-%s" .Release.Name "mariadbcreds" }}'
key: mariadb-password
persistence:
nginx:
enabled: true
mountPath: "/var/run/nginx"
type: emptyDir
mariadb:
enabled: true
mariadbUsername: servas
mariadbDatabase: servas
portal:
open:
enabled: true