mirror of
https://github.com/ansible/awx-operator.git
synced 2026-03-26 21:33:14 +00:00
28 lines
531 B
Django/Jinja
28 lines
531 B
Django/Jinja
---
|
|
apiVersion: awx.ansible.com/v1beta1
|
|
kind: AWX
|
|
metadata:
|
|
name: example-awx
|
|
spec:
|
|
{% if awx_image %}
|
|
image: {{ awx_image }}
|
|
{% endif %}
|
|
{% if awx_version %}
|
|
image_version: {{ awx_version }}
|
|
{% endif %}
|
|
ingress_type: ingress
|
|
ingress_annotations: |
|
|
kubernetes.io/ingress.class: nginx
|
|
web_resource_requirements:
|
|
requests:
|
|
cpu: 250m
|
|
memory: 128M
|
|
task_resource_requirements:
|
|
requests:
|
|
cpu: 250m
|
|
memory: 128M
|
|
ee_resource_requirements:
|
|
requests:
|
|
cpu: 200m
|
|
memory: 64M
|