-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
18 changed files
with
448 additions
and
157 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,11 @@ | ||
This is a small hotfix release that fixes issues reported | ||
by the community regarding the imagePullPolicy on the | ||
deployment resource. | ||
We are happy to announce the availability of the version 0.5.0 of | ||
the official Passbolt helm chart. | ||
This release comes with a well requested feature: PostgreSQL support. | ||
Users will be able to plug their external PostgreSQL instances or | ||
use the bundled dependency in this chart. | ||
PostgreSQL is an opt-in feature, by default Passbolt helm chart | ||
still relies on MariaDB. However, it should be easy for users to plug | ||
one or the other. | ||
Thanks to all the community members for your feedback and support. | ||
|
||
For more information please check our [changelog](https://github.com/passbolt/charts-passbolt/blob/0.4.4/CHANGELOG.md) | ||
For more information please check our [changelog](https://github.com/passbolt/charts-passbolt/blob/0.5.0/CHANGELOG.md) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
postgresqlDependencyEnabled: true | ||
mariadbDependencyEnabled: false | ||
|
||
postgresql: | ||
auth: | ||
# -- Configure postgresql auth username | ||
username: CHANGEME | ||
# -- Configure postgresql auth password | ||
password: CHANGEME | ||
# -- Configure postgresql auth database | ||
database: passbolt | ||
app: | ||
database: | ||
kind: postgresql |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
--- | ||
suite: images | ||
release: | ||
name: test | ||
values: | ||
- values-test.yaml | ||
tests: | ||
- it: should have the correct pull policy | ||
templates: | ||
- cronjob-proc-email.yaml | ||
set: | ||
redis.auth.enabled: true | ||
redis.replica.replicaCount: 2 | ||
autoscaling.enabled: false | ||
app.cache.redis.sentinelProxy.enabled: true | ||
app.cache.redis.sentinelProxy.image.repository: haproxy | ||
app.cache.redis.sentinelProxy.image.tag: latest | ||
app.cache.redis.sentinelProxy.pullPolicy: always | ||
app.image.pullPolicy: always | ||
app.initImage.pullPolicy: always | ||
asserts: | ||
- contains: | ||
path: spec.jobTemplate.spec.template.spec.containers | ||
content: | ||
image: passbolt/passbolt:4.1.2-1-ce | ||
count: 1 | ||
any: true | ||
- contains: | ||
path: spec.jobTemplate.spec.template.spec.containers | ||
content: | ||
image: haproxy:latest | ||
count: 1 | ||
any: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.