From 2bdc87d0a8caa471fcfe1a6ff303a802eba52774 Mon Sep 17 00:00:00 2001 From: Christian Adams Date: Tue, 24 Jan 2023 17:42:02 -0500 Subject: [PATCH] Add docs for ingress resource apiVersion configuration (#1198) --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index f3d52d9b..d82c1d64 100644 --- a/README.md +++ b/README.md @@ -463,6 +463,7 @@ The following variables are customizable when `ingress_type=ingress`. The `ingre | hostname | Define the FQDN | {{ meta.name }}.example.com | | ingress_path | Define the ingress path to the service | / | | ingress_path_type | Define the type of the path (for LBs) | Prefix | +| ingress_api_version | Define the Ingress resource apiVersion | 'networking.k8s.io/v1' | ```yaml --- @@ -483,6 +484,7 @@ The following variables are customizable when `ingress_type=route` | route_host | Common name the route answers for | `--` | | route_tls_termination_mechanism | TLS Termination mechanism (Edge, Passthrough) | Edge | | route_tls_secret | Secret that contains the TLS information | Empty string | +| route_api_version | Define the Route resource apiVersion | 'route.openshift.io/v1' | ```yaml ---