Skip to content

Commit

Permalink
Merge pull request #81 from projectsyn/fix/manifest-location
Browse files Browse the repository at this point in the history
Fix app manifests path
  • Loading branch information
DebakelOrakel authored Oct 5, 2024
2 parents fa99883 + 219c4b3 commit 8e0c9d4
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 13 deletions.
8 changes: 1 addition & 7 deletions component/app.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,7 @@ local inv = kap.inventory();
local params = inv.parameters.fluentbit;
local argocd = import 'lib/argocd.libjsonnet';

local app = argocd.App(inv.parameters._instance, params.namespace) {
spec+: {
source+: {
path: 'manifests/fluentbit/' + inv.parameters._instance,
},
},
};
local app = argocd.App(inv.parameters._instance, params.namespace);

{
[inv.parameters._instance]: app,
Expand Down
3 changes: 0 additions & 3 deletions tests/golden/config/fluentbit/apps/fluentbit.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +0,0 @@
spec:
source:
path: manifests/fluentbit/fluentbit
3 changes: 0 additions & 3 deletions tests/golden/defaults/fluentbit/apps/fluentbit.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +0,0 @@
spec:
source:
path: manifests/fluentbit/fluentbit

0 comments on commit 8e0c9d4

Please sign in to comment.