Update Docker & Kubernetes/Servers/AWX/AWX Operator/Ansible AWX Operator.md
This commit is contained in:
@ -50,6 +50,15 @@ You will need to create these files all in the same directory using the content
|
|||||||
name: awx
|
name: awx
|
||||||
spec:
|
spec:
|
||||||
service_type: ClusterIP
|
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"
|
=== "ingress.yml"
|
||||||
@ -88,9 +97,16 @@ You will need to create these files all in the same directory using the content
|
|||||||
namespace: awx
|
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]
|
[libdefaults]
|
||||||
default_realm = BUNNY-LAB.IO
|
default_realm = BUNNY-LAB.IO
|
||||||
dns_lookup_realm = false
|
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]
|
[domain_realm]
|
||||||
.bunny-lab.io = BUNNY-LAB.IO
|
.bunny-lab.io = BUNNY-LAB.IO
|
||||||
bunny-lab.io = BUNNY-LAB.IO
|
bunny-lab.io = BUNNY-LAB.IO
|
||||||
|
|
||||||
```
|
```
|
||||||
|
|
||||||
## Ensure the Kubernetes Cluster is Ready
|
## Ensure the Kubernetes Cluster is Ready
|
||||||
|
Reference in New Issue
Block a user