-
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
10 changed files
with
96 additions
and
16 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
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,37 @@ | ||
--- | ||
suite: extra pod labels | ||
release: | ||
name: test | ||
values: | ||
- values-test.yaml | ||
tests: | ||
- it: deployment should have extra labels | ||
templates: | ||
- deployment.yaml | ||
set: | ||
app.extraPodLabels: | ||
test-label: "test-value" | ||
asserts: | ||
- equal: | ||
path: spec.template.metadata.labels.test-label | ||
value: "test-value" | ||
- it: job create gpgp keys should have extra labels | ||
templates: | ||
- job-create-gpg.yaml | ||
set: | ||
jobCreateGpgKeys.extraPodLabels: | ||
test-label: "test-value" | ||
asserts: | ||
- equal: | ||
path: spec.template.metadata.labels.test-label | ||
value: "test-value" | ||
- it: cronjob should have extra labels | ||
templates: | ||
- cronjob-proc-email.yaml | ||
set: | ||
cronJobEmail.extraPodLabels: | ||
test-label: "test-value" | ||
asserts: | ||
- equal: | ||
path: spec.jobTemplate.spec.template.metadata.labels.test-label | ||
value: "test-value" |
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 |
---|---|---|
|
@@ -44,6 +44,8 @@ mariadb: | |
## Passbolt container and sidecar parameters | ||
app: | ||
initImage: | ||
# -- Configure pasbolt deployment init container image client for database | ||
client: mariadb | ||
# -- Configure pasbolt deployment image repsitory | ||
repository: mariadb | ||
# -- Configure pasbolt deployment image pullPolicy | ||
|
@@ -56,7 +58,7 @@ app: | |
# -- Configure pasbolt deployment image pullPolicy | ||
pullPolicy: IfNotPresent | ||
# -- Overrides the image tag whose default is the chart appVersion. | ||
tag: 3.9.0-2-ce | ||
tag: 4.1.2-1-ce | ||
cache: | ||
# Use CACHE_CAKE_DEFAULT_* variables to configure the connection to redis instance | ||
# on the passboltEnv configuration section | ||
|
@@ -74,20 +76,24 @@ app: | |
repository: haproxy | ||
# -- Configure redis sentinel image tag | ||
tag: "latest" | ||
# -- Configure redis sentinel container resources | ||
resources: {} | ||
# -- Configure the passbolt deployment resources | ||
podLabels: {} | ||
resources: {} | ||
|
||
# -- Enable email cron | ||
cronJobEmail: | ||
enabled: true | ||
schedule: "* * * * *" | ||
podLabels: {} | ||
|
||
## Passbolt environment parameters | ||
|
||
# -- Pro subscription key in base64 only if you are using pro version | ||
subscriptionKey: | ||
# subscriptionKey: | ||
# -- Configure passbolt subscription key path | ||
subscription_keyPath: /etc/passbolt/subscription_key.txt | ||
# subscription_keyPath: /etc/passbolt/subscription_key.txt | ||
|
||
# -- Configure passbolt gpg directory | ||
gpgPath: /etc/passbolt/gpg | ||
|
@@ -103,6 +109,9 @@ jwtServerPrivate: | |
# -- JWT server public key in base64 | ||
jwtServerPublic: | ||
|
||
jobCreateGpgKeys: | ||
podLabels: {} | ||
|
||
passboltEnv: | ||
plain: | ||
# -- Configure passbolt privacy url | ||
|
@@ -128,7 +137,7 @@ passboltEnv: | |
# -- Configure passbolt default email from | ||
EMAIL_DEFAULT_FROM: [email protected] | ||
# -- Configure passbolt default email host | ||
EMAIL_TRANSPORT_DEFAULT_HOST: | ||
EMAIL_TRANSPORT_DEFAULT_HOST: 127.0.0.1 | ||
# -- Toggle passbolt tls | ||
EMAIL_TRANSPORT_DEFAULT_TLS: true | ||
# -- Configure passbolt jwt private key path | ||
|
@@ -211,15 +220,13 @@ networkPolicy: | |
# -- Configure network policies namespaceLabel for namespaceSelector | ||
namespaceLabel: ingress-nginx | ||
|
||
|
||
# -- Configure image pull secrets | ||
imagePullSecrets: [] | ||
# -- Value to override the chart name on default | ||
nameOverride: "" | ||
# -- Value to override the whole fullName | ||
fullnameOverride: "" | ||
|
||
|
||
serviceAccount: | ||
# -- Specifies whether a service account should be created | ||
create: true | ||
|
@@ -242,6 +249,8 @@ service: | |
targetPort: 443 | ||
# -- Configure passbolt service port name | ||
name: https | ||
# -- Annotations to add to the service | ||
annotations: {} | ||
|
||
ingress: | ||
# -- Enable passbolt ingress | ||
|
@@ -269,3 +278,9 @@ tolerations: [] | |
|
||
# -- Configure passbolt deployment affinity | ||
affinity: {} | ||
|
||
# -- Add additional volumes, e.g. for overwriting config files | ||
extraVolumes: "" | ||
|
||
# -- Add additional volume mounts, e.g. for overwriting config files | ||
extraVolumeMounts: "" |
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