feat: add note for node without sufficient compute resources

This commit is contained in:
kurokobo 2021-10-06 13:23:38 -04:00
parent ab3f3a2786
commit e98a6fed27
2 changed files with 20 additions and 0 deletions

View file

@ -124,6 +124,7 @@ Modify `hostname` in `base/awx.yaml`.
```yaml
...
spec:
...
ingress_type: ingress
ingress_tls_secret: awx-secret-tls
hostname: awx.example.com 👈👈👈
@ -159,6 +160,19 @@ sudo mkdir -p /data/projects
sudo chown 1000:0 /data/projects
```
Note that by default AWX can't be started unless your K3s node has at least 2 CPUs and 4 GB RAM available. If your K3s node is smaller than this and you want to remove this restriction, consider uncommenting the following three lines in `base/awx.yaml`.
```yaml
...
spec:
...
# To run AWX on a node that does not meet resource requirements,
# uncomment the following three lines
web_resource_requirements: {} 👈👈👈
task_resource_requirements: {} 👈👈👈
ee_resource_requirements: {} 👈👈👈
```
### Deploy AWX
Deploy AWX, this takes few minutes to complete.

View file

@ -26,3 +26,9 @@ spec:
projects_persistence: true
projects_existing_claim: awx-projects-claim
# To run AWX on a node that does not meet resource requirements,
# uncomment the following three lines
#web_resource_requirements: {}
#task_resource_requirements: {}
#ee_resource_requirements: {}