From 79202280af9f0ba3eaa1e32a7272d7ac79772b25 Mon Sep 17 00:00:00 2001 From: Jon Edvald Date: Fri, 30 Aug 2019 15:02:13 +0200 Subject: [PATCH] fix(container): allow any string as ingress path Closes #1020 --- garden-service/src/plugins/container/config.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/garden-service/src/plugins/container/config.ts b/garden-service/src/plugins/container/config.ts index c4fbde169c..4771c56239 100644 --- a/garden-service/src/plugins/container/config.ts +++ b/garden-service/src/plugins/container/config.ts @@ -180,7 +180,6 @@ const ingressSchema = joi.object() .description("Annotations to attach to the ingress (Note: May not be applicable to all providers)"), hostname: ingressHostnameSchema, path: joi.string() - .uri({ relativeOnly: true }) .default("/") .description("The path which should be routed to the service."), port: joi.string()