mirror of
https://github.com/TECHNOFAB11/kubenix.git
synced 2025-12-12 08:00:06 +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;
|
||||
|
||||
let
|
||||
registy = "docker.io/gatehub";
|
||||
registry = "docker.io/gatehub";
|
||||
in rec {
|
||||
# evaluated configuration
|
||||
config = (kubenix.evalModules {
|
||||
modules = [
|
||||
./module.nix
|
||||
{ docker.registry.url = registy; }
|
||||
{ docker.registry.url = registry; }
|
||||
];
|
||||
}).config;
|
||||
|
||||
|
|
@ -28,6 +28,6 @@ in rec {
|
|||
# script to push docker images to registry
|
||||
pushDockerImages = docker.copyDockerImages {
|
||||
inherit images;
|
||||
dest = "docker://${registy}";
|
||||
dest = "docker://${registry}";
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue