From 815176c79798b2ca243b05e028e2365a3cc8bdb5 Mon Sep 17 00:00:00 2001 From: mikhail-klimko Date: Fri, 22 Dec 2023 18:47:57 +0300 Subject: [PATCH] fix: app-proxy prefix --- charts/cf-runtime/README.md | 2 +- charts/cf-runtime/values.yaml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/charts/cf-runtime/README.md b/charts/cf-runtime/README.md index 9ba9494a..38bd4e40 100644 --- a/charts/cf-runtime/README.md +++ b/charts/cf-runtime/README.md @@ -908,7 +908,7 @@ Go to [https:///admin/runtime-environments/system](http | appProxy.ingress.annotations | object | `{}` | Set extra annotations for ingress object | | appProxy.ingress.class | string | `""` | Set ingress class | | appProxy.ingress.host | string | `""` | Set DNS hostname the ingress will use | -| appProxy.ingress.pathPrefix | string | `""` | Set path prefix for ingress | +| appProxy.ingress.pathPrefix | string | `""` | Set path prefix for ingress (keep empty for default `/` path) | | appProxy.ingress.tlsSecret | string | `""` | Set k8s tls secret for the ingress object | | appProxy.nodeSelector | object | `{}` | Set node selector | | appProxy.podAnnotations | object | `{}` | Set pod annotations | diff --git a/charts/cf-runtime/values.yaml b/charts/cf-runtime/values.yaml index 143c892f..90c146bc 100644 --- a/charts/cf-runtime/values.yaml +++ b/charts/cf-runtime/values.yaml @@ -634,7 +634,7 @@ appProxy: # Set app-proxy ingress parameters # @default -- See below ingress: - # -- Set path prefix for ingress + # -- Set path prefix for ingress (keep empty for default `/` path) pathPrefix: "" # -- Set ingress class class: "" @@ -646,7 +646,7 @@ appProxy: annotations: {} # E.g. # ingress: - # pathPrefix: "/app-proxy" + # pathPrefix: "/cf-app-proxy" # class: "nginx" # host: "mydomain.com" # tlsSecret: "tls-cert-app-proxy"