Update Docker & Kubernetes/Servers/AWX/AWX Operator/Ansible AWX Operator.md

This commit is contained in:
2024-07-31 19:58:17 -06:00
parent 3a5d608af4
commit a67790e6d3

View File

@ -50,6 +50,15 @@ You will need to create these files all in the same directory using the content
name: awx
spec:
service_type: ClusterIP
extra_volumes:
- name: krb5-conf
configMap:
name: krb5-config
extra_volume_mounts:
- name: krb5-conf
mountPath: /etc/krb5.conf
subPath: krb5.conf
readOnly: true
```
=== "ingress.yml"
@ -88,9 +97,16 @@ You will need to create these files all in the same directory using the content
namespace: awx
```
=== "krb5.conf"
=== "krb5-configmap.yml"
```jsx title="/awx/krb5.conf"
```jsx title="/awx/krb5-configmap.yml"
apiVersion: v1
kind: ConfigMap
metadata:
name: krb5-config
namespace: awx
data:
krb5.conf: |
[libdefaults]
default_realm = BUNNY-LAB.IO
dns_lookup_realm = false
@ -106,6 +122,7 @@ You will need to create these files all in the same directory using the content
[domain_realm]
.bunny-lab.io = BUNNY-LAB.IO
bunny-lab.io = BUNNY-LAB.IO
```
## Ensure the Kubernetes Cluster is Ready