This repository has been archived on 2026-03-24. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
docs/src/helm/impress
Anthony LC 2194301716 🔖(minor) release 1.8.0
Added:
- 🌐(backend) add german translation
- 🌐(frontend) Add German translation
- (frontend) Add a broadcast store
- (backend) whitelist pod's IP address
- (backend) config endpoint
- (frontend) config endpoint
- (frontend) add sentry
- (frontend) add crisp chatbot

Changed:
- 🚸(backend) improve users similarity search and
sort results
- ♻️(frontend) simplify stores
- (frontend) update $css Box props type to add
styled components RuleSet
- (CI) trivy continue on error

Fixed:
- 🔧(backend) fix logging for docker and make it
configurable by envar
- 🦺(backend) add comma to sub regex
- 🐛(editor) collaborative user tag hidden when
read only
- 🐛(frontend) users have view access when revoked
- 🐛(frontend) fix placeholder editable when double clicks
2024-11-27 09:47:42 +01:00
..
2024-11-20 11:51:20 +01:00
2024-11-27 09:47:42 +01:00
2024-11-20 11:51:20 +01:00
2024-11-20 11:51:20 +01:00
2024-11-20 11:51:20 +01:00

Impress helm chart

Parameters

General configuration

Name Description Value
image.repository Repository to use to pull impress's container image lasuite/impress-backend
image.tag impress's container tag latest
image.pullPolicy Container image pull policy IfNotPresent
image.credentials.username Username for container registry authentication
image.credentials.password Password for container registry authentication
image.credentials.registry Registry url for which the credentials are specified
image.credentials.name Name of the generated secret for imagePullSecrets
nameOverride Override the chart name ""
fullnameOverride Override the full application name ""
ingress.enabled whether to enable the Ingress or not false
ingress.className IngressClass to use for the Ingress nil
ingress.host Host for the Ingress impress.example.com
ingress.path Path to use for the Ingress /
ingress.hosts Additional host to configure for the Ingress []
ingress.tls.enabled Weather to enable TLS for the Ingress true
ingress.tls.additional[].secretName Secret name for additional TLS config
ingress.tls.additional[].hosts[] Hosts for additional TLS config
ingress.customBackends Add custom backends to ingress []
ingressAdmin.enabled whether to enable the Ingress or not false
ingressAdmin.className IngressClass to use for the Ingress nil
ingressAdmin.host Host for the Ingress impress.example.com
ingressAdmin.path Path to use for the Ingress /admin
ingressAdmin.hosts Additional host to configure for the Ingress []
ingressAdmin.tls.enabled Weather to enable TLS for the Ingress true
ingressAdmin.tls.additional[].secretName Secret name for additional TLS config
ingressAdmin.tls.additional[].hosts[] Hosts for additional TLS config

backend

Name Description Value
backend.command Override the backend container command []
backend.args Override the backend container args []
backend.replicas Amount of backend replicas 3
backend.shareProcessNamespace Enable share process namespace between containers false
backend.sidecars Add sidecars containers to backend deployment []
backend.securityContext Configure backend Pod security context nil
backend.envVars Configure backend container environment variables undefined
backend.envVars.BY_VALUE Example environment variable by setting value directly
backend.envVars.FROM_CONFIGMAP.configMapKeyRef.name Name of a ConfigMap when configuring env vars from a ConfigMap
backend.envVars.FROM_CONFIGMAP.configMapKeyRef.key Key within a ConfigMap when configuring env vars from a ConfigMap
backend.envVars.FROM_SECRET.secretKeyRef.name Name of a Secret when configuring env vars from a Secret
backend.envVars.FROM_SECRET.secretKeyRef.key Key within a Secret when configuring env vars from a Secret
backend.podAnnotations Annotations to add to the backend Pod {}
backend.service.type backend Service type ClusterIP
backend.service.port backend Service listening port 80
backend.service.targetPort backend container listening port 8000
backend.service.annotations Annotations to add to the backend Service {}
backend.migrate.command backend migrate command ["python","manage.py","migrate","--no-input"]
backend.migrate.restartPolicy backend migrate job restart policy Never
backend.probes.liveness.path Configure path for backend HTTP liveness probe /__heartbeat__
backend.probes.liveness.targetPort Configure port for backend HTTP liveness probe undefined
backend.probes.liveness.initialDelaySeconds Configure initial delay for backend liveness probe 10
backend.probes.liveness.initialDelaySeconds Configure timeout for backend liveness probe 10
backend.probes.startup.path Configure path for backend HTTP startup probe undefined
backend.probes.startup.targetPort Configure port for backend HTTP startup probe undefined
backend.probes.startup.initialDelaySeconds Configure initial delay for backend startup probe undefined
backend.probes.startup.initialDelaySeconds Configure timeout for backend startup probe undefined
backend.probes.readiness.path Configure path for backend HTTP readiness probe /__lbheartbeat__
backend.probes.readiness.targetPort Configure port for backend HTTP readiness probe undefined
backend.probes.readiness.initialDelaySeconds Configure initial delay for backend readiness probe 10
backend.probes.readiness.initialDelaySeconds Configure timeout for backend readiness probe 10
backend.resources Resource requirements for the backend container {}
backend.nodeSelector Node selector for the backend Pod {}
backend.tolerations Tolerations for the backend Pod []
backend.affinity Affinity for the backend Pod {}
backend.persistence Additional volumes to create and mount on the backend. Used for debugging purposes {}
backend.persistence.volume-name.size Size of the additional volume
backend.persistence.volume-name.type Type of the additional volume, persistentVolumeClaim or emptyDir
backend.persistence.volume-name.mountPath Path where the volume should be mounted to
backend.extraVolumeMounts Additional volumes to mount on the backend. []
backend.extraVolumes Additional volumes to mount on the backend. []

frontend

Name Description Value
frontend.image.repository Repository to use to pull impress's frontend container image lasuite/impress-frontend
frontend.image.tag impress's frontend container tag latest
frontend.image.pullPolicy frontend container image pull policy IfNotPresent
frontend.command Override the frontend container command []
frontend.args Override the frontend container args []
frontend.replicas Amount of frontend replicas 3
frontend.shareProcessNamespace Enable share process namefrontend between containers false
frontend.sidecars Add sidecars containers to frontend deployment []
frontend.securityContext Configure frontend Pod security context nil
frontend.envVars Configure frontend container environment variables undefined
frontend.envVars.BY_VALUE Example environment variable by setting value directly
frontend.envVars.FROM_CONFIGMAP.configMapKeyRef.name Name of a ConfigMap when configuring env vars from a ConfigMap
frontend.envVars.FROM_CONFIGMAP.configMapKeyRef.key Key within a ConfigMap when configuring env vars from a ConfigMap
frontend.envVars.FROM_SECRET.secretKeyRef.name Name of a Secret when configuring env vars from a Secret
frontend.envVars.FROM_SECRET.secretKeyRef.key Key within a Secret when configuring env vars from a Secret
frontend.podAnnotations Annotations to add to the frontend Pod {}
frontend.service.type frontend Service type ClusterIP
frontend.service.port frontend Service listening port 80
frontend.service.targetPort frontend container listening port 8080
frontend.service.annotations Annotations to add to the frontend Service {}
frontend.probes Configure probe for frontend {}
frontend.probes.liveness.path Configure path for frontend HTTP liveness probe
frontend.probes.liveness.targetPort Configure port for frontend HTTP liveness probe
frontend.probes.liveness.initialDelaySeconds Configure initial delay for frontend liveness probe
frontend.probes.liveness.initialDelaySeconds Configure timeout for frontend liveness probe
frontend.probes.startup.path Configure path for frontend HTTP startup probe
frontend.probes.startup.targetPort Configure port for frontend HTTP startup probe
frontend.probes.startup.initialDelaySeconds Configure initial delay for frontend startup probe
frontend.probes.startup.initialDelaySeconds Configure timeout for frontend startup probe
frontend.probes.readiness.path Configure path for frontend HTTP readiness probe
frontend.probes.readiness.targetPort Configure port for frontend HTTP readiness probe
frontend.probes.readiness.initialDelaySeconds Configure initial delay for frontend readiness probe
frontend.probes.readiness.initialDelaySeconds Configure timeout for frontend readiness probe
frontend.resources Resource requirements for the frontend container {}
frontend.nodeSelector Node selector for the frontend Pod {}
frontend.tolerations Tolerations for the frontend Pod []
frontend.affinity Affinity for the frontend Pod {}
frontend.persistence Additional volumes to create and mount on the frontend. Used for debugging purposes {}
frontend.persistence.volume-name.size Size of the additional volume
frontend.persistence.volume-name.type Type of the additional volume, persistentVolumeClaim or emptyDir
frontend.persistence.volume-name.mountPath Path where the volume should be mounted to
frontend.extraVolumeMounts Additional volumes to mount on the frontend. []
frontend.extraVolumes Additional volumes to mount on the frontend. []