From 1b9d0d1ddf6f757a74bf7aae9e60f3e491aad829 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ey=C3=BE=C3=B3r=20Magn=C3=BAsson?= Date: Fri, 24 Jul 2020 14:15:56 +0200 Subject: [PATCH] fix(local-k8s): add 'docker-desktop' as supported context --- garden-service/src/plugins/kubernetes/local/config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/garden-service/src/plugins/kubernetes/local/config.ts b/garden-service/src/plugins/kubernetes/local/config.ts index d9fd3a67a8..dd5da66c9e 100644 --- a/garden-service/src/plugins/kubernetes/local/config.ts +++ b/garden-service/src/plugins/kubernetes/local/config.ts @@ -21,7 +21,7 @@ import { isClusterKind } from "./kind" // note: this is in order of preference, in case neither is set as the current kubectl context // and none is explicitly configured in the garden.yml -const supportedContexts = ["docker-for-desktop", "microk8s", "minikube"] +const supportedContexts = ["docker-for-desktop", "docker-desktop", "microk8s", "minikube"] const nginxServices = ["ingress-controller", "default-backend"] export interface LocalKubernetesConfig extends KubernetesConfig {