initial commit

This commit is contained in:
Riedel
2026-08-19 09:53:22 +02:00
commit 6d707eca87
23 changed files with 671 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
apiVersion: awx.ansible.com/v1beta1
kind: AWX
metadata:
name: {{ awx_operator_name }}
namespace: {{ awx_operator_namespace }}
spec:
service_type: {{ awx_operator_service_type }}
{% if awx_operator_service_type == "NodePort" %}
nodeport_port: {{ awx_operator_nodeport }}
{% endif %}
admin_user: {{ awx_operator_admin_user }}
admin_password_secret: {{ awx_operator_name }}-admin-password
postgres_storage_requirements:
requests:
storage: {{ awx_operator_postgres_storage_size }}
web_replicas: {{ awx_operator_web_replicas }}
task_replicas: {{ awx_operator_task_replicas }}