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