Update Containers/Kubernetes/Rancher RKE2/AWX Operator/Ansible Operator.md

This commit is contained in:
Nicole Rappe
2024-01-19 23:37:24 -07:00
parent f76a014de2
commit ae2dc62f43

View File

@ -26,6 +26,9 @@ ulimit -n 4096
### Create the AWX deployment configuration files ### Create the AWX deployment configuration files
You will need to create these files all in the same directory using the content of the examples below. Be sure to replace values such as the `spec.host=awx.bunny-lab.io` in the `awx-ingress.yml` file to a hostname you can point a DNS server / record to. You will need to create these files all in the same directory using the content of the examples below. Be sure to replace values such as the `spec.host=awx.bunny-lab.io` in the `awx-ingress.yml` file to a hostname you can point a DNS server / record to.
=== "/awx/kustomization.yml"
```jsx title="/awx/kustomization.yml" ```jsx title="/awx/kustomization.yml"
apiVersion: kustomize.config.k8s.io/v1beta1 apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization kind: Kustomization
@ -38,6 +41,9 @@ images:
newTag: 2.4.0 newTag: 2.4.0
namespace: awx namespace: awx
``` ```
=== "/awx/awx.yml"
```jsx title="/awx/awx.yml" ```jsx title="/awx/awx.yml"
apiVersion: awx.ansible.com/v1beta1 apiVersion: awx.ansible.com/v1beta1
kind: AWX kind: AWX
@ -46,6 +52,9 @@ metadata:
spec: spec:
service_type: ClusterIP service_type: ClusterIP
``` ```
=== "/awx/awx-ingress.yml"
```jsx title="/awx/awx-ingress.yml" ```jsx title="/awx/awx-ingress.yml"
apiVersion: networking.k8s.io/v1 apiVersion: networking.k8s.io/v1
kind: Ingress kind: Ingress