mirror of
https://github.com/TECHNOFAB11/kubenix.git
synced 2025-12-12 08:00:06 +01:00
fmt
This commit is contained in:
parent
ee38caab0e
commit
7ba59d844f
4 changed files with 24 additions and 14 deletions
|
|
@ -34,13 +34,19 @@ in {
|
|||
name = mkOption {
|
||||
description = "Desired docker image name";
|
||||
type = types.str;
|
||||
default = if config.image != null then builtins.unsafeDiscardStringContext config.image.imageName else "";
|
||||
default =
|
||||
if config.image != null
|
||||
then builtins.unsafeDiscardStringContext config.image.imageName
|
||||
else "";
|
||||
};
|
||||
|
||||
tag = mkOption {
|
||||
description = "Desired docker image tag";
|
||||
type = types.str;
|
||||
default = if config.image != null then builtins.unsafeDiscardStringContext config.image.imageTag else "";
|
||||
default =
|
||||
if config.image != null
|
||||
then builtins.unsafeDiscardStringContext config.image.imageTag
|
||||
else "";
|
||||
};
|
||||
|
||||
registry = mkOption {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue