diff --git a/fastapi_template/template/{{cookiecutter.project_name}}/deploy/kube/namespace.yml b/fastapi_template/template/{{cookiecutter.project_name}}/deploy/kube/namespace.yml
index 4e1e543156e06c70633acfbde4b99aba05cd336c..d3252eb695e7b8ee7df337cbebe57fdd472e1679 100644
--- a/fastapi_template/template/{{cookiecutter.project_name}}/deploy/kube/namespace.yml
+++ b/fastapi_template/template/{{cookiecutter.project_name}}/deploy/kube/namespace.yml
@@ -2,6 +2,6 @@
 apiVersion: v1
 kind: Namespace
 metadata:
-  name: "{{cookiecutter.project_name}}"
+  name: "{{cookiecutter.kube_name}}"
 
 ---
diff --git a/pyproject.toml b/pyproject.toml
index b5e51c4adb00074e6bf6bd6ed3e4785428d658c9..76b4ed68a9797ae679b938d1f6141070486648c8 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,6 +1,6 @@
 [tool.poetry]
 name = "fastapi_template"
-version = "3.1.8"
+version = "3.1.9"
 description = "Feature-rich robust FastAPI template"
 authors = ["Pavel Kirilin <win10@list.ru>"]
 packages = [{ include = "fastapi_template" }]