TrueChartsClone/charts/incubator/servas/values.yaml

75 lines
1.8 KiB
YAML
Raw Normal View History

feat(servas) add servas (#9100) **Description** A self-hosted bookmark management tool. ⚒️ Fixes # <!--(issue)--> **⚙️ Type of change** - [X] ⚙️ Feature/App addition - [ ] 🪛 Bugfix - [ ] ⚠️ Breaking change (fix or feature that would cause existing functionality to not work as expected) - [ ] 🔃 Refactor of current code **🧪 How Has This Been Tested?** <!-- Please describe the tests that you ran to verify your changes. Provide instructions so we can reproduce. Please also list any relevant details for your test configuration --> **📃 Notes:** <!-- Please enter any other relevant information here --> **✔️ Checklist:** - [X] ⚖️ My code follows the style guidelines of this project - [X] 👀 I have performed a self-review of my own code - [ ] #️⃣ I have commented my code, particularly in hard-to-understand areas - [ ] 📄 I have made corresponding changes to the documentation - [ ] ⚠️ My changes generate no new warnings - [ ] 🧪 I have added tests to this description that prove my fix is effective or that my feature works - [ ] ⬆️ I increased versions for any altered app according to semantic versioning **➕ App addition** If this PR is an app addition please make sure you have done the following. - [X] 🪞 I have opened a PR on [truecharts/containers](https://github.com/truecharts/containers) adding the container to TrueCharts mirror repo. - [X] 🖼️ I have added an icon in the Chart's root directory called `icon.png` --- _Please don't blindly check all the boxes. Read them and only check those that apply. Those checkboxes are there for the reviewer to see what is this all about and the status of this PR with a quick glance._ --------- Signed-off-by: Stavros Kois <47820033+stavros-k@users.noreply.github.com> Co-authored-by: Stavros Kois <47820033+stavros-k@users.noreply.github.com>
2023-05-28 09:15:42 +00:00
image:
repository: tccr.io/truecharts/servas
pullPolicy: IfNotPresent
tag: v0.0.5@sha256:a319facfecb2582b501fb67f1e68dd3a00e6b5d0e0a8842cf58b9aefaf2b2b23
securityContext:
container:
runAsNonRoot: false
readOnlyRootFilesystem: false
runAsUser: 0
runAsGroup: 0
fsGroup: 568
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: secrets
key: APP_KEY
APP_ENV: production
APP_DEBUG: true
# 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
service:
main:
ports:
main:
protocol: http
targetPort: 80
port: 11080
persistence:
nginx:
enabled: true
mountPath: /var/run/nginx
portal:
open:
enabled: true
mariadb:
enabled: true
mariadbUsername: servas
mariadbDatabase: servas