From 7af3050815376e3b40935cd0e3503339cb1a4593 Mon Sep 17 00:00:00 2001 From: Massimiliano Giovagnoli Date: Fri, 22 Nov 2024 13:04:57 +0100 Subject: [PATCH] clean(awx-operator.yaml): can only run with requests==2.31.0 Signed-off-by: Massimiliano Giovagnoli --- awx-operator.yaml | 49 ----------------------------------------------- 1 file changed, 49 deletions(-) delete mode 100644 awx-operator.yaml diff --git a/awx-operator.yaml b/awx-operator.yaml deleted file mode 100644 index 58283721773..00000000000 --- a/awx-operator.yaml +++ /dev/null @@ -1,49 +0,0 @@ -package: - name: awx-operator - version: 2.19.1 - epoch: 0 - description: An Ansible AWX operator for Kubernetes built with Operator SDK and Ansible. - copyright: - - license: Apache-2.0 - dependencies: - runtime: - - ansible-operator - -environment: - contents: - packages: - - busybox - - py3-ansible-core - -pipeline: - - uses: git-checkout - with: - repository: https://github.com/ansible/awx-operator - tag: ${{package.version}} - expected-commit: dd37ebd440edf953d822f2c134833a44a8e77532 - - - runs: | - mkdir -p ${{targets.contextdir}}/opt/ansible - cp requirements.yml ${{targets.contextdir}}/opt/ansible/requirements.yml - HOME=${{targets.contextdir}}/opt/ansible ansible-galaxy collection install -r ${{targets.contextdir}}/opt/ansible/requirements.yml - cp watches.yaml ${{targets.contextdir}}/opt/ansible/watches.yaml - cp -r roles ${{targets.contextdir}}/opt/ansible/roles - cp -r playbooks ${{targets.contextdir}}/opt/ansible/playbooks - -update: - enabled: true - github: - identifier: ansible/awx-operator - -test: - pipeline: - - name: Check Ansible files - runs: | - test -f /opt/ansible/watches.yaml - - uses: test/kwok/cluster - - name: Smoke test run - runs: | - cd /opt/ansible - ansible-operator run >awx-operator.log 2>&1 & - sleep 1 - grep -q '"Starting Controller","controller":"awx-controller"' awx-operator.log