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/helmfile.yaml

98 lines
2.5 KiB
YAML
Raw Normal View History

environments:
dev:
values:
🔖(minor) release 3.4.0 Added: - ✨(frontend) multi-pages - ✨(frontend) Duplicate a doc - ✨Ask for access - ✨(frontend) add customization for translations - ✨(backend) add ancestors links definitions to document abilities - ✨(backend) include ancestors accesses on document accesses list view - ✨(backend) add ancestors links reach and role to document API - 📝(project) add troubleshoot doc - 📝(project) add system-requirement doc - 🔧(front) configure x-frame-options to DENY in nginx conf - ✨(backend) allow to disable checking unsafe mimetype on attachment upload - ✨(doc) add documentation to install with compose - ✨ Give priority to users connected to collaboration server (aka no websocket feature) Changed: - ♻️(backend) stop requiring owner for non-root documents - ♻️(backend) simplify roles by ranking them and return only the max role - 📌(yjs) stop pinning node to minor version on yjs docker image - 🧑‍💻(docker) add .next to .dockerignore - 🧑‍💻(docker) handle frontend development images with docker compose - 🧑‍💻(docker) add y-provider config to development environment - ⚡️(frontend) optimize document fetch error handling Fixed: - 🐛(backend) fix link definition select options linked to ancestors - 🐛(frontend) table of content disappearing - 🐛(frontend) fix multiple EmojiPicker - 🐛(frontend) fix meta title - 🔧(git) set LF line endings for all text files - 📝(docs) minor fixes to docs/env.md - ✨support `_FILE` environment variables for secrets Removed: - 🔥(frontend) remove Beta from logo
2025-07-09 09:49:30 +02:00
- version: 3.4.0
---
repositories:
- name: bitnami
url: registry-1.docker.io/bitnamicharts
oci: true
---
releases:
- name: keycloak
installed: {{ eq .Environment.Name "dev" | toYaml }}
missingFileHandler: Warn
namespace: {{ .Namespace }}
chart: bitnami/keycloak
version: 17.3.6
values:
- postgresql:
auth:
username: keycloak
password: keycloak
database: keycloak
- extraEnvVars:
- name: KEYCLOAK_EXTRA_ARGS
value: "--import-realm"
- name: KC_HOSTNAME_URL
value: https://docs-keycloak.127.0.0.1.nip.io
- extraVolumes:
- name: import
configMap:
name: docs-keycloak
- extraVolumeMounts:
- name: import
mountPath: /opt/bitnami/keycloak/data/import/
- auth:
adminUser: su
adminPassword: su
- proxy: edge
- ingress:
enabled: true
hostname: docs-keycloak.127.0.0.1.nip.io
- extraDeploy:
- apiVersion: v1
kind: ConfigMap
metadata:
name: docs-keycloak
namespace: {{ .Namespace }}
data:
impress.json: |
{{ readFile "../../docker/auth/realm.json" | replace "http://localhost:3200" "https://impress.127.0.0.1.nip.io" | indent 14 }}
- name: postgres
installed: {{ eq .Environment.Name "dev" | toYaml }}
namespace: {{ .Namespace }}
chart: bitnami/postgresql
version: 13.1.5
values:
- auth:
username: dinum
password: pass
database: impress
- tls:
enabled: true
autoGenerated: true
- name: minio
installed: {{ eq .Environment.Name "dev" | toYaml }}
namespace: {{ .Namespace }}
chart: bitnami/minio
version: 12.10.10
values:
- auth:
rootUser: root
rootPassword: password
- provisioning:
enabled: true
buckets:
- name: impress-media-storage
versioning: true
- name: redis
installed: {{ eq .Environment.Name "dev" | toYaml }}
namespace: {{ .Namespace }}
chart: bitnami/redis
version: 20.6.2
values:
- auth:
password: pass
architecture: standalone
- name: impress
version: {{ .Values.version }}
namespace: {{ .Namespace }}
chart: ./impress
values:
- env.d/{{ .Environment.Name }}/values.impress.yaml.gotmpl