diff --git a/k8s/http/deployment.dhall b/k8s/http/deployment.dhall index 5ea6397..c30993f 100644 --- a/k8s/http/deployment.dhall +++ b/k8s/http/deployment.dhall @@ -46,7 +46,7 @@ let deployment = → kubernetes.Deployment::{ , metadata = kubernetes.ObjectMeta::{ , name = config.name - , namespace = "apps" + , namespace = Some "apps" } , spec = Some (spec config) } diff --git a/k8s/http/ingress.dhall b/k8s/http/ingress.dhall index 1c9cf09..6ad748f 100644 --- a/k8s/http/ingress.dhall +++ b/k8s/http/ingress.dhall @@ -22,7 +22,7 @@ let metadata , name = config.name , labels = [ kv "app" config.name ] , annotations = annotations config - , namespace = "apps" + , namespace = Some "apps" } let tls diff --git a/k8s/http/service.dhall b/k8s/http/service.dhall index 7f83e5e..e120277 100644 --- a/k8s/http/service.dhall +++ b/k8s/http/service.dhall @@ -35,7 +35,7 @@ let service = λ(config : Config.Type) → kubernetes.Service::{ , metadata = kubernetes.ObjectMeta::{ - , namespace = "apps" + , namespace = Some "apps" , name = config.name , labels = [ kv "app" config.name ] , annotations = annotations config