From ba191e0dd8eab219bb7bab30697b497202084ff2 Mon Sep 17 00:00:00 2001 From: Pieter-Jan Vrielynck <43749206+pvriel@users.noreply.github.com> Date: Fri, 20 Sep 2024 12:16:35 +0200 Subject: [PATCH] [KANSUP74-23] updated README with additional configuration options --- README.md | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/README.md b/README.md index 16dc616..20c429c 100644 --- a/README.md +++ b/README.md @@ -1076,6 +1076,26 @@ Digital Workspace are disabled. * Description: If you use an image that is not public. then you can create dockerconfigjson secrets on your cluster and reference them here. +#### `mq.additionalVolumes` +* Required: false +* Default: None +* Description: A list of additional volumes for the mq pods. Example: +```yaml + - name: activemq-data-1 + persistentVolumeClaim: + claimName: alfresco-pvc-1 +``` + +#### `mq.additionalVolumeMounts` +* Required: false +* Default: None +* Description: A list of additional volume mounts for the mq pods. Example: +```yaml + - name: activemq-data-1 + mountPath: /mountpath + subPath: subpath +``` + ### Postgresql #### `postgresql.enabled` @@ -2270,3 +2290,18 @@ additional settings can be added through additionalEnvironmentVariables. * Required: when `persistentStorage.mq.storageClassName` is `scw-bssd` * Default: None * Description: The volume handle pointing to the AWS EFS location + +### `persistentStorage.mq.additionalClaims` +* Required: false +* Default: None +* Description: A list of additional volume claims that can be added to the mq pods. Layout should be as follows: + +```yaml + - name: name1 + mountPath: /apps/example + subPath: subPath/example + storageClassName: "standard" + storage: 2 + efs: + volumeHandle: "efs-identifier" +``` \ No newline at end of file