mirror of
https://github.com/ansible/awx-operator.git
synced 2026-05-06 13:22:50 +00:00
Add http_proxy, https_proxy, and no_proxy CRD fields to the AWX spec and inject them into all application containers via a shared proxy-env ConfigMap, with automatic rollouts when proxy values change. Assisted by: Claude Signed-off-by: James Marshall <jamarsha@redhat.com>
23 lines
499 B
YAML
23 lines
499 B
YAML
---
|
|
apiVersion: awx.ansible.com/v1beta1
|
|
kind: AWX
|
|
metadata:
|
|
name: example-awx
|
|
spec:
|
|
web_resource_requirements:
|
|
requests:
|
|
cpu: 50m
|
|
memory: 128M
|
|
task_resource_requirements:
|
|
requests:
|
|
cpu: 50m
|
|
memory: 128M
|
|
ee_resource_requirements:
|
|
requests:
|
|
cpu: 50m
|
|
memory: 64M
|
|
# HTTP proxy settings (optional)
|
|
# http_proxy: "http://proxy.example.com:3128"
|
|
# https_proxy: "http://proxy.example.com:3128"
|
|
# no_proxy: "localhost,127.0.0.1,.cluster.local"
|