mirror of
https://gitlab.com/TECHNOFAB/nixlets.git
synced 2026-05-04 16:49:28 +02:00
fix(lib): bad parentheses
This commit is contained in:
parent
90d6935c33
commit
0fa686f275
2 changed files with 17 additions and 18 deletions
|
|
@ -174,7 +174,6 @@
|
|||
.resultYAML;
|
||||
# combines all secrets files in a single directory
|
||||
secrets = args: (nixlet.eval args).config.kubernetes.secretsCombined;
|
||||
|
||||
};
|
||||
in
|
||||
nixlet;
|
||||
|
|
@ -203,7 +202,7 @@
|
|||
exit 1
|
||||
fi
|
||||
''
|
||||
+ concatMapStringsSep "\n" (
|
||||
+ concatMapStringsSep "\n"
|
||||
(nixlet:
|
||||
with nixlet; ''
|
||||
URL="https://gitlab.com/api/v4/projects/${projectId}/packages/generic/${name}/${version}/${name}.tar.gz"
|
||||
|
|
@ -218,7 +217,6 @@
|
|||
fi
|
||||
'')
|
||||
nixlets
|
||||
)
|
||||
);
|
||||
|
||||
mkDocs = opts:
|
||||
|
|
|
|||
3
tests/fixtures/example/default.nix
vendored
3
tests/fixtures/example/default.nix
vendored
|
|
@ -1,3 +1,4 @@
|
|||
{nixlet, ...}: with nixlet; {
|
||||
{nixlet, ...}:
|
||||
with nixlet; {
|
||||
kubernetes.resources.configMaps."test".data."test" = values.example;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue