mirror of
https://github.com/TECHNOFAB11/kubenix.git
synced 2025-12-12 16:10:05 +01:00
fix(examples/nginx-deployment): fix typo
This commit is contained in:
parent
432cc9e347
commit
12a1c920c4
1 changed files with 3 additions and 3 deletions
|
|
@ -3,13 +3,13 @@
|
||||||
with kubenix.lib;
|
with kubenix.lib;
|
||||||
|
|
||||||
let
|
let
|
||||||
registy = "docker.io/gatehub";
|
registry = "docker.io/gatehub";
|
||||||
in rec {
|
in rec {
|
||||||
# evaluated configuration
|
# evaluated configuration
|
||||||
config = (kubenix.evalModules {
|
config = (kubenix.evalModules {
|
||||||
modules = [
|
modules = [
|
||||||
./module.nix
|
./module.nix
|
||||||
{ docker.registry.url = registy; }
|
{ docker.registry.url = registry; }
|
||||||
];
|
];
|
||||||
}).config;
|
}).config;
|
||||||
|
|
||||||
|
|
@ -28,6 +28,6 @@ in rec {
|
||||||
# script to push docker images to registry
|
# script to push docker images to registry
|
||||||
pushDockerImages = docker.copyDockerImages {
|
pushDockerImages = docker.copyDockerImages {
|
||||||
inherit images;
|
inherit images;
|
||||||
dest = "docker://${registy}";
|
dest = "docker://${registry}";
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue