diff --git a/main.k b/main.k index 3e9a7f5..af3b9d0 100644 --- a/main.k +++ b/main.k @@ -3,7 +3,7 @@ import k8s.api.apps.v1 as k8core k8core.Deployment { metadata = { - name = "nginx-deployment" + name = "nginx-deployment-1" namespace = "default" labels = {app = "nginx"} } @@ -19,7 +19,7 @@ k8core.Deployment { containers = [ { name = "nginx" - image = "nginx:1.7.7" + image = "nginx:1.7.8" ports = [{containerPort = 82}] } ]