Skip to content

Commit 236f0af

Browse files
committed
fix: use project slug in the staticsecret path
1 parent 44ff5e5 commit 236f0af

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

charts/dso-ns/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apiVersion: v2
22
name: dso-ns
33
description: A Helm chart to create all the necessary resources for deploying applications by the DSO console (namespace, secrets, quota, ...).
4-
version: 1.1.4
4+
version: 1.1.5
55
appVersion: 1.0.0
66
maintainers:
77
- name: this-is-tobi

charts/dso-ns/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ A Helm chart to create all the necessary resources for deploying applications by
2323
| application.vault.roleId | string | `nil` | ID du rôle à utiliser (méthode AppRole) |
2424
| application.vault.secretId | string | `nil` | Secret de connexion avec ce rôle |
2525
| application.vault.url | string | `nil` | URL du Vault à utiliser par Vault Secret Operator |
26-
| common | object | `{"dso/environment":"env","dso/project":"project"}` | Informations communes, notamment appliquées en label sur les différents objets |
26+
| common | object | `{"dso/environment":"env","dso/project":"project","dso/project.slug":"project"}` | Informations communes, notamment appliquées en label sur les différents objets |
2727

2828
----------------------------------------------
2929
Autogenerated from chart metadata using [helm-docs v1.14.2](https://github.com/norwoodj/helm-docs/releases/v1.14.2)

charts/dso-ns/templates/registry-pull-secret.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ spec:
1111
vaultAuthRef: vault-auth
1212
type: kv-v2
1313
mount: {{ .Values.application.vault.kvName }}
14-
path: {{ .Values.application.vault.projectsRootDir }}/{{ index .Values.common "dso/project" }}/REGISTRY/ro-robot
14+
path: {{ .Values.application.vault.projectsRootDir }}/{{ index .Values.common "dso/project.slug" }}/REGISTRY/ro-robot
1515
destination:
1616
create: true
1717
name: registry-pull-secret

charts/dso-ns/values.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# -- Informations communes, notamment appliquées en label sur les différents objets
22
common:
33
dso/project: project
4+
dso/project.slug: project
45
dso/environment: env
56
application:
67
destination:

0 commit comments

Comments
 (0)