From cb50f4f3acab8e1f8007fed95dc5f9930dc80be1 Mon Sep 17 00:00:00 2001 From: Christian Adams Date: Wed, 7 Dec 2022 14:18:06 -0500 Subject: [PATCH] Add docs for Openshift install configuration (#1140) --- README.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/README.md b/README.md index 3a4ec4cd..0c71ca21 100644 --- a/README.md +++ b/README.md @@ -203,6 +203,20 @@ spec: > It may make sense to create and specify your own secret key for your deployment so that if the k8s secret gets deleted, it can be re-created if needed. If it is not provided, one will be auto-generated, but cannot be recovered if lost. Read more [here](#secret-key-configuration). +If you are on Openshift, you can take advantage of Routes by specifying the following your spec. This will automatically create a Route for you with a custom hostname. This can be found on the Route section of the Openshift Console. + +```yaml +--- +apiVersion: awx.ansible.com/v1beta1 +kind: AWX +metadata: + name: awx-demo +spec: + service_type: clusterip + ingress_type: Route +``` + + Make sure to add this new file to the list of "resources" in your `kustomization.yaml` file: ```yaml