diff --git a/README.md b/README.md index fd72cc6b..b4b47bb6 100644 --- a/README.md +++ b/README.md @@ -216,6 +216,7 @@ subdirectory `/helmfile/apps/services`. | PostgreSQL | `postgresql.enabled` | `true` | Database | Eval | | Redis | `redis.enabled` | `true` | Cache Database | Eval | | Univention Corporate Server | `univentionCorporateServer.enabled` | `true` | Identity Management & Portal | Functional | +| Univention Management Stack | `univentionManagementStack.enabled` | `false` | Identity Management & Portal | Eval | | XWiki | `xwiki.enabled` | `true` | Knowledgebase | Functional | diff --git a/helmfile.yaml b/helmfile.yaml index 3d0fa8e0..116d7064 100644 --- a/helmfile.yaml +++ b/helmfile.yaml @@ -9,6 +9,7 @@ helmfiles: - path: "helmfile/apps/services/helmfile.yaml" - path: "helmfile/apps/keycloak/helmfile.yaml" - path: "helmfile/apps/univention-corporate-container/helmfile.yaml" + - path: "helmfile/apps/univention-management-stack/helmfile.yaml" - path: "helmfile/apps/keycloak-bootstrap/helmfile.yaml" - path: "helmfile/apps/intercom-service/helmfile.yaml" - path: "helmfile/apps/open-xchange/helmfile.yaml" diff --git a/helmfile/apps/univention-management-stack/helmfile.yaml b/helmfile/apps/univention-management-stack/helmfile.yaml new file mode 100644 index 00000000..c95842fc --- /dev/null +++ b/helmfile/apps/univention-management-stack/helmfile.yaml @@ -0,0 +1,3 @@ +# SPDX-FileCopyrightText: 2023 Bundesministerium des Innern und für Heimat, PG ZenDiS "Projektgruppe für Aufbau ZenDiS" +# SPDX-License-Identifier: Apache-2.0 +--- diff --git a/helmfile/environments/default/workplace.yaml b/helmfile/environments/default/workplace.yaml index b8dd882d..e6522989 100644 --- a/helmfile/environments/default/workplace.yaml +++ b/helmfile/environments/default/workplace.yaml @@ -37,6 +37,8 @@ redis: enabled: true univentionCorporateServer: enabled: true +univentionManagementStack: + enabled: false xwiki: enabled: true ...