diff --git a/core/src/garden.ts b/core/src/garden.ts index b839362583..2d30cf0dbd 100644 --- a/core/src/garden.ts +++ b/core/src/garden.ts @@ -813,7 +813,9 @@ export class Garden { return f && f.error ? [toGardenError(f.error)] : [] }) - // we do not include the error messages in the message, because we already log those errors in the solver. + // We do not include the error messages in the message, because we already log those errors in the solver. + // FIXME: remove this tmp debug output + wrappedErrors.forEach((e) => console.log(e + "\n")) throw new PluginError({ message: `Failed resolving one or more providers:\n- ${failedNames.join("\n- ")}`, wrappedErrors, diff --git a/core/src/plugins/kubernetes/init.ts b/core/src/plugins/kubernetes/init.ts index af97863293..b93468ac62 100644 --- a/core/src/plugins/kubernetes/init.ts +++ b/core/src/plugins/kubernetes/init.ts @@ -145,6 +145,8 @@ export async function prepareEnvironment( // TODO-0.13/TODO-0.14: remove this option for remote kubernetes clusters? if (config.setupIngressController === "nginx" && !config.clusterType) { + // FIXME: remove this tmp debug output + console.log("INSTALLING NGINX FOR REMOTE CLUSTER") // Install nginx for remote clusters await helmNginxInstall(k8sCtx, log) }