diff --git a/charts/managed-identity-wallet/README.md b/charts/managed-identity-wallet/README.md index 3d11f2748..c91413dc7 100644 --- a/charts/managed-identity-wallet/README.md +++ b/charts/managed-identity-wallet/README.md @@ -157,11 +157,12 @@ See [helm upgrade](https://helm.sh/docs/helm/helm_upgrade/) for command document | postgresql.auth.database | string | `"miw_app"` | Postgresql database to create | | postgresql.auth.enablePostgresUser | bool | `false` | Enable postgresql admin user | | postgresql.auth.password | string | `""` | Postgresql password to set (if empty one is generated) | +| postgresql.auth.postgresPassword | string | `""` | Postgresql admin user password | | postgresql.auth.username | string | `"miw"` | Postgresql user to create | -| postgresql.backup.conjob.schedule | string | `"* */6 * * *"` | Backup schedule | -| postgresql.backup.conjob.storage.existingClaim | string | `""` | Name of an existing PVC to use | -| postgresql.backup.conjob.storage.resourcePolicy | string | `"keep"` | Set resource policy to "keep" to avoid removing PVCs during a helm delete operation | -| postgresql.backup.conjob.storage.size | string | `"8Gi"` | PVC Storage Request for the backup data volume | +| postgresql.backup.cronjob.schedule | string | `"* */6 * * *"` | Backup schedule | +| postgresql.backup.cronjob.storage.existingClaim | string | `""` | Name of an existing PVC to use | +| postgresql.backup.cronjob.storage.resourcePolicy | string | `"keep"` | Set resource policy to "keep" to avoid removing PVCs during a helm delete operation | +| postgresql.backup.cronjob.storage.size | string | `"8Gi"` | PVC Storage Request for the backup data volume | | postgresql.backup.enabled | bool | `false` | Enable to create a backup cronjob | | postgresql.enabled | bool | `true` | Enable to deploy Postgresql | | readinessProbe | object | `{"enabled":true,"failureThreshold":3,"initialDelaySeconds":30,"periodSeconds":5,"successThreshold":1,"timeoutSeconds":5}` | Kubernetes [readiness-probe](https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/) | diff --git a/charts/managed-identity-wallet/tests/custom-values/deployment_test.yaml b/charts/managed-identity-wallet/tests/custom-values/deployment_test.yaml index d1e3398b4..f344ab607 100644 --- a/charts/managed-identity-wallet/tests/custom-values/deployment_test.yaml +++ b/charts/managed-identity-wallet/tests/custom-values/deployment_test.yaml @@ -87,7 +87,7 @@ tests: - name: APPLICATION_PORT value: "8080" - name: VC_EXPIRY_DATE - value: 31-12-2023 + value: 31-12-2024 - name: encryption-key valueFrom: secretKeyRef: diff --git a/charts/managed-identity-wallet/tests/default/deployment_test.yaml b/charts/managed-identity-wallet/tests/default/deployment_test.yaml index 1578632fa..8e2001013 100644 --- a/charts/managed-identity-wallet/tests/default/deployment_test.yaml +++ b/charts/managed-identity-wallet/tests/default/deployment_test.yaml @@ -146,7 +146,7 @@ tests: - name: APPLICATION_PORT value: "8080" - name: VC_EXPIRY_DATE - value: 31-12-2023 + value: 31-12-2024 - it: should have empty values asserts: diff --git a/charts/managed-identity-wallet/values.yaml b/charts/managed-identity-wallet/values.yaml index b5700c4d2..fcecf813a 100644 --- a/charts/managed-identity-wallet/values.yaml +++ b/charts/managed-identity-wallet/values.yaml @@ -240,6 +240,8 @@ postgresql: auth: # -- Enable postgresql admin user enablePostgresUser: false + # -- Postgresql admin user password + postgresPassword: "" # -- Postgresql user to create username: "miw" # -- Postgresql password to set (if empty one is generated) @@ -249,7 +251,7 @@ postgresql: backup: # -- Enable to create a backup cronjob enabled: false - conjob: + cronjob: # -- Backup schedule schedule: "* */6 * * *" storage: