mirror of
https://github.com/plcnk/charts.git
synced 2026-04-05 17:22:21 +00:00
* chore(deps): update ghcr.io/requarks/wiki docker tag to v2.5.305 * chore: Update chart metadata --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: plcnk-bot <178334506+plcnk-bot[bot]@users.noreply.github.com>
126 lines
3.3 KiB
YAML
126 lines
3.3 KiB
YAML
---
|
|
#
|
|
# IMPORTANT NOTE
|
|
#
|
|
# This chart inherits from our common library chart. You can check the default values/options here:
|
|
# https://github.com/bjw-s/helm-charts/blob/main/charts/library/common/values.yaml
|
|
#
|
|
|
|
controllers:
|
|
main:
|
|
# -- Controller type
|
|
type: deployment
|
|
# -- Number of desired pods
|
|
# **WARNING**: Set this to 1 when you first deploy Wiki.js.
|
|
# You can increase the number of replicas after the initial deployment.
|
|
replicas: 1
|
|
containers:
|
|
app:
|
|
image:
|
|
# -- Image repository
|
|
repository: ghcr.io/requarks/wiki
|
|
# -- Image pull policy
|
|
pullPolicy: IfNotPresent
|
|
# -- Image tag
|
|
tag: 2.5.305
|
|
|
|
# -- Environment variables.
|
|
# The database environment variables **need** to be set if `postgresql.enabled` is set to `false`
|
|
# @default -- See [values.yaml](./values.yaml)
|
|
env:
|
|
# -- Set container timezone
|
|
TZ: UTC
|
|
# DB_TYPE: postgres
|
|
# DB_HOST:
|
|
# DB_PORT:
|
|
# DB_NAME:
|
|
# DB_USER:
|
|
# DB_PASS:
|
|
|
|
securityContext:
|
|
# -- Mount the container's root filesystem as read-only
|
|
readOnlyRootFilesystem: true
|
|
# -- Disable privilege escalations
|
|
allowPrivilegeEscalation: false
|
|
# -- Drop all capabilities
|
|
capabilities:
|
|
drop:
|
|
- ALL
|
|
|
|
pod:
|
|
securityContext:
|
|
# -- Run container as a non-root user
|
|
runAsNonRoot: true
|
|
# -- Run as `nobody` user
|
|
runAsUser: 65534
|
|
# -- Run as `nobody` group
|
|
runAsGroup: 65534
|
|
# -- Volume binds will be granted to `nobody` group
|
|
fsGroup: 65534
|
|
|
|
# -- Set the resource requests / limits for the container.
|
|
resources: {}
|
|
# limits:
|
|
# cpu: 100m
|
|
# memory: 128Mi
|
|
# requests:
|
|
# cpu: 100m
|
|
# memory: 128Mi
|
|
|
|
# -- Configure the services for the chart here.
|
|
# @default -- See [values.yaml](./values.yaml)
|
|
service:
|
|
main:
|
|
controller: main
|
|
ports:
|
|
http:
|
|
port: 3000
|
|
|
|
# -- Configure persistent storage for Wiki.js data.
|
|
# @default -- See [values.yaml](./values.yaml)
|
|
data:
|
|
storageClass: ""
|
|
accessMode: ReadWriteOnce
|
|
size: 8Gi
|
|
|
|
ingress:
|
|
# -- Enable and configure ingress settings for the chart under this key.
|
|
# @default -- See [values.yaml](./values.yaml)
|
|
main:
|
|
enabled: false
|
|
# className: ""
|
|
# annotations: {}
|
|
# hosts:
|
|
# - host: &host-main "chart-example.local"
|
|
# paths:
|
|
# - path: /
|
|
# pathType: Prefix
|
|
# service:
|
|
# identifier: main
|
|
# port: http
|
|
# tls:
|
|
# - secretName: chart-example-tls
|
|
# hosts:
|
|
# - *host-main
|
|
|
|
# -- Enable and configure postgresql database subchart under this key.
|
|
# For more options see [postgresql chart documentation](https://github.com/bitnami/charts/tree/main/bitnami/postgresql)
|
|
# @default -- See [values.yaml](./values.yaml)
|
|
postgresql:
|
|
# -- Set this to `false` if you want to use your own database.
|
|
enabled: true
|
|
architecture: standalone
|
|
primary:
|
|
persistence:
|
|
enabled: true
|
|
storageClass: ""
|
|
size: 8Gi
|
|
auth:
|
|
enablePostgresUser: false
|
|
username: wikijs
|
|
password: changeme
|
|
database: wikijs
|
|
existingSecret: ""
|
|
secretKeys:
|
|
userPasswordKey: ""
|