mirror of
https://github.com/TECHNOFAB11/kubenix.git
synced 2025-12-12 16:10:05 +01:00
fix(k8s/generated): fix if definition has no options or config
This commit is contained in:
parent
d55bebd48e
commit
ceedfb98c0
8 changed files with 16 additions and 16 deletions
|
|
@ -56,8 +56,8 @@ let
|
|||
values);
|
||||
|
||||
submoduleOf = ref: types.submodule ({name, ...}: {
|
||||
options = definitions."${ref}".options;
|
||||
config = definitions."${ref}".config;
|
||||
options = definitions."${ref}".options or {};
|
||||
config = definitions."${ref}".config or {};
|
||||
});
|
||||
|
||||
submoduleWithMergeOf = ref: mergeKey: types.submodule ({name, ...}: let
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue