Skip to content

Commit d99d0ed

Browse files
authored
Merge pull request #22 from appuio/fix/disable-secrets
Disable secret revealing in ArgoCD app
2 parents 2cabded + 373eeab commit d99d0ed

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

component/app.jsonnet

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ local inv = kap.inventory();
33
local params = inv.parameters.openshift4_local_storage;
44
local argocd = import 'lib/argocd.libjsonnet';
55

6-
local app = argocd.App('openshift4-local-storage', params.namespace);
6+
local app = argocd.App('openshift4-local-storage', params.namespace, secrets=false);
77

88
{
99
'openshift4-local-storage': app,

docs/modules/ROOT/pages/references/parameters.adoc

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
The parent key for all of the following parameters is `openshift4_local_storage`.
44

5+
[NOTE]
6+
====
7+
Kapitan secret references are not supported in this component.
8+
If you need to change this behavior, please create a PR to adjust the ArgoCD app in `component/app.jsonnet` accordingly.
9+
====
10+
511
== `namespace`
612

713
[horizontal]

0 commit comments

Comments
 (0)