-
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.
Develop into main See merge request passbolt/passbolt-ops/charts-passbolt!49
- Loading branch information
Showing
19 changed files
with
160 additions
and
30 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
Announcing the immediate availability of passbolt's official helm chart 0.7.0. | ||
Announcing the immediate availability of passbolt's official helm chart 0.7.1. | ||
|
||
First of all, thanks to @Kuruyia for the contributions made to this new release. | ||
One of them adds the ability to inject the GPG key pair from an existing secret | ||
and another one to add some defaults values on the email configuration. | ||
This release contains support for providing external secrets for JWT keys | ||
as well as automatic support to download kubectl binaries based on host | ||
cpu architecture. | ||
|
||
The release also brings a new field to toggle the initContainer that waits for | ||
the database to be ready, so users that use service mesh or they have already a | ||
running database can disable it. | ||
Thanks to all the community members involved in this release! | ||
|
||
@Kuruyia @ook |
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
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
File renamed without changes.
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,46 @@ | ||
--- | ||
suite: deployment jwt secret | ||
release: | ||
name: test | ||
values: | ||
- values-test.yaml | ||
tests: | ||
- it: should contain a volumes and volumeMounts section for jwt secret | ||
templates: | ||
- deployment.yaml | ||
asserts: | ||
- contains: | ||
path: spec.template.spec.containers[0].volumeMounts | ||
content: | ||
name: test-passbolt-sec-jwt | ||
count: 1 | ||
any: true | ||
- contains: | ||
path: spec.template.spec.volumes | ||
content: | ||
name: test-passbolt-sec-jwt | ||
secret: | ||
secretName: test-passbolt-sec-jwt | ||
count: 1 | ||
any: true | ||
|
||
- it: should use the existing jwt secret if supplied | ||
templates: | ||
- deployment.yaml | ||
set: | ||
jwtExistingSecret: "my-jwt-secret" | ||
asserts: | ||
- contains: | ||
path: spec.template.spec.containers[0].volumeMounts | ||
content: | ||
name: my-jwt-secret | ||
count: 1 | ||
any: true | ||
- contains: | ||
path: spec.template.spec.volumes | ||
content: | ||
name: my-jwt-secret | ||
secret: | ||
secretName: my-jwt-secret | ||
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.