Skip to content

Commit 4a01d6a

Browse files
corico44Bitnami Containers
authored and
Eduardo Morillo
committed
[bitnami/sonarqube] Fix postgresql.persistence.enabled value (bitnami#14239)
* [bitnami/sonarquibe] Modified persistence enabled value Signed-off-by: Cori Avila <amisericordi@vmware.com> * Update README.md with readme-generator-for-helm Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com> * [bitnami/sonarquibe] Modified goss mode value Signed-off-by: Cori Avila <amisericordi@vmware.com> * [bitnami/sonarquibe] Added exception handler Signed-off-by: Cori Avila <amisericordi@vmware.com> Signed-off-by: Cori Avila <amisericordi@vmware.com> Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com> Co-authored-by: Bitnami Containers <bitnami-bot@vmware.com> Signed-off-by: Eduardo Morillo <eduardo.morillo@blueamber.io>
1 parent 93304cc commit 4a01d6a

File tree

5 files changed

+15
-4
lines changed

5 files changed

+15
-4
lines changed

.vib/sonarqube/cypress/cypress/support/commands.js

+11
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,14 @@ Cypress.Commands.add(
2121
cy.contains('button', 'Log in').click();
2222
}
2323
);
24+
25+
Cypress.on('uncaught:exception', (err, runnable, promise) => {
26+
// when the exception originated from an unhandled promise
27+
// rejection, the promise is provided as a third argument
28+
// you can turn off failing the test in this case
29+
if (promise) {
30+
return false
31+
}
32+
// we still want to ensure there are no other unexpected
33+
// errors, so we let them fail the test
34+
})

.vib/sonarqube/goss/goss.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ file:
22
/bitnami/sonarqube:
33
exists: true
44
filetype: directory
5-
mode: "2775"
5+
mode: "2777"
66
owner: root
77
/opt/bitnami/sonarqube/conf/sonar.properties:
88
exists: true

bitnami/sonarqube/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,4 @@ name: sonarqube
2828
sources:
2929
- https://github.com/bitnami/containers/tree/main/bitnami/sonarqube
3030
- https://github.com/SonarSource/sonarqube
31-
version: 2.0.5
31+
version: 2.0.6

bitnami/sonarqube/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ The command removes all the Kubernetes components associated with the chart and
224224

225225
| Name | Description | Value |
226226
| ------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------- | ----------------------- |
227-
| `persistence.enabled` | Enable persistence using Persistent Volume Claims | `true` |
227+
| `persistence.enabled` | Enable persistence using Persistent Volume Claims | `false` |
228228
| `persistence.storageClass` | Persistent Volume storage class | `""` |
229229
| `persistence.accessModes` | Persistent Volume access modes | `[]` |
230230
| `persistence.size` | Persistent Volume size | `10Gi` |

bitnami/sonarqube/values.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -587,7 +587,7 @@ ingress:
587587
persistence:
588588
## @param persistence.enabled Enable persistence using Persistent Volume Claims
589589
##
590-
enabled: true
590+
enabled: false
591591
## @param persistence.storageClass Persistent Volume storage class
592592
## If defined, storageClassName: <storageClass>
593593
## If set to "-", storageClassName: "", which disables dynamic provisioning

0 commit comments

Comments
 (0)