From b30a39a2dc748e3ee21da6683c2fee7cbf4f6a3a Mon Sep 17 00:00:00 2001 From: Kevin Conner Date: Fri, 7 Jun 2024 13:29:12 -0700 Subject: [PATCH] UD-1540: Increase default size of PV to 2Gi Signed-off-by: Kevin Conner --- charts/zora/README.md | 2 +- charts/zora/values.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/charts/zora/README.md b/charts/zora/README.md index 9508fe81..7fe519d4 100644 --- a/charts/zora/README.md +++ b/charts/zora/README.md @@ -127,7 +127,7 @@ The following table lists the configurable parameters of the Zora chart and thei | scan.plugins.trivy.persistence.fsGroup | int | `0` | Specifies the fsGroup to use when mounting the persistent volume | | scan.plugins.trivy.persistence.accessMode | string | `"ReadWriteOnce"` | [Persistence access mode](https://kubernetes.io/docs/concepts/storage/persistent-volumes/#access-modes) | | scan.plugins.trivy.persistence.storageClass | string | `""` | [Persistence storage class](https://kubernetes.io/docs/concepts/storage/storage-classes/). Set to empty for default storage class | -| scan.plugins.trivy.persistence.storageRequest | string | `"1Gi"` | Persistence storage size | +| scan.plugins.trivy.persistence.storageRequest | string | `"2Gi"` | Persistence storage size | | scan.plugins.trivy.persistence.downloadJavaDB | bool | `false` | Specifies whether Java vulnerability database should be downloaded on helm install/upgrade | | scan.plugins.popeye.skipInternalResources | bool | `false` | Specifies whether the following resources should be skipped by `popeye` scans. 1. resources from `kube-system`, `kube-public` and `kube-node-lease` namespaces; 2. kubernetes system reserved RBAC (prefixed with `system:`); 3. `kube-root-ca.crt` configmaps; 4. `default` namespace; 5. `default` serviceaccounts; 6. Helm secrets (prefixed with `sh.helm.release`); 7. Zora components. See `popeye` configuration file that is used for this case: https://github.com/undistro/zora/blob/main/charts/zora/templates/plugins/popeye-config.yaml | | scan.plugins.popeye.resources | object | `{"limits":{"cpu":"500m","memory":"500Mi"},"requests":{"cpu":"250m","memory":"256Mi"}}` | [Resources](https://kubernetes.io/docs/concepts/configuration/manage-resources-containers) to add to `popeye` container | diff --git a/charts/zora/values.yaml b/charts/zora/values.yaml index 3c2a2215..a48f47bb 100644 --- a/charts/zora/values.yaml +++ b/charts/zora/values.yaml @@ -245,7 +245,7 @@ scan: # -- [Persistence storage class](https://kubernetes.io/docs/concepts/storage/storage-classes/). Set to empty for default storage class storageClass: "" # -- Persistence storage size - storageRequest: 1Gi + storageRequest: 2Gi # -- Specifies whether Java vulnerability database should be downloaded on helm install/upgrade downloadJavaDB: false