More final preparations for 0.4.0 release.

This commit is contained in:
Jeff Geerling
2020-06-05 09:06:41 -05:00
parent bc1d152671
commit 11c8fe2549
3 changed files with 16 additions and 2 deletions

View File

@@ -62,11 +62,12 @@ If you deploy Ansible AWX, images are available from public registries, so no au
### Deploy AWX instead of Tower
If you would like to deploy AWX (the open source upstream of Tower) into your cluster instead of Tower, override the default variables in the Tower `spec` for the `tower_task_image` and `tower_web_image`, so the AWX container images are used instead:
If you would like to deploy AWX (the open source upstream of Tower) into your cluster instead of Tower, override the default variables in the Tower `spec` for the `tower_task_image` and `tower_web_image`, so the AWX container images are used instead, and set the `deployment_type` to ``awx`:
---
spec:
...
deployment_type: awx
tower_task_image: ansible/awx_task:11.2.0
tower_web_image: ansible/awx_web:11.2.0

View File

@@ -6,7 +6,7 @@
gather_facts: false
vars:
operator_image: geerlingguy/tower-operator:0.4.0
operator_image: ansible/tower-operator:0.4.0
pull_policy: Always
operator_file_path: "../deploy/tower-operator.yaml"
operator_template: "../deploy/operator.yaml"

View File

@@ -159,3 +159,16 @@ spec:
- name: v1beta1
served: true
storage: true
validation:
openAPIV3Schema:
description: Schema validation for the Tower CRD
type: object
properties:
spec:
type: object
properties:
deployment_type:
type: string
pattern: "^(tower|awx)(-)?.*$"
required:
- deployment_type