From 6e2cef0db58c553562f772f45bff635003316d24 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9gis=20Behmo?= Date: Thu, 24 Mar 2022 08:17:23 +0100 Subject: [PATCH] fix: "evalsymlink failure" during k8s namespace creation Close #611 (again). --- CHANGELOG.md | 1 + tutor/commands/k8s.py | 1 + 2 files changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index edb25e9..1aa28f2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,7 @@ Note: Breaking changes between versions are indicated by "💥". ## Unreleased +- [Bugfix] Fix "evalsymlink failure" during `k8s quickstart` (#611). - [Bugfix] Fix "TypeError: upgrade() got an unexpected keyword argument 'non_interactive'" during `local upgrade`. diff --git a/tutor/commands/k8s.py b/tutor/commands/k8s.py index 64c0146..0622b11 100644 --- a/tutor/commands/k8s.py +++ b/tutor/commands/k8s.py @@ -224,6 +224,7 @@ def start(context: Context, names: List[str]) -> None: except exceptions.TutorError: fmt.echo_info("Namespace does not exist: now creating it...") kubectl_apply( + context.root, "--wait", "--selector", "app.kubernetes.io/component=namespace",