We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 41c740c commit af55357Copy full SHA for af55357
bin/k8s.py
@@ -85,6 +85,6 @@ def apply_kubernetes_state(env):
85
# last, apply the application manifests & configurations
86
for ns in [ns for ns in os.listdir(k8s) if isdir(k8s + '/' + ns) and ns != 'system' and ns != 'security']:
87
if not subprocess.check_output("kubectl get namespace %s --ignore-not-found=true" % ns, shell=True):
88
- sys.stderr.write("Creating namespace 'app'...\n")
89
- subprocess.check_call("kubectl create namespace app", shell=True)
+ sys.stderr.write("Creating namespace '%s'...\n" % ns)
+ subprocess.check_call("kubectl create namespace %s" % ns, shell=True)
90
apply_directory(env, k8s + '/' + ns, ns)
0 commit comments