From 3efd04cf9a7d1da4aab753dc7ca93ccc2fcb90c5 Mon Sep 17 00:00:00 2001 From: Jake Briggs Date: Mon, 18 Nov 2024 20:38:57 -0600 Subject: [PATCH] Needed to remove workflow now that libvirt is in helm --- .github/workflows/kustomize-libvirt.yaml | 40 ------------------------ 1 file changed, 40 deletions(-) delete mode 100644 .github/workflows/kustomize-libvirt.yaml diff --git a/.github/workflows/kustomize-libvirt.yaml b/.github/workflows/kustomize-libvirt.yaml deleted file mode 100644 index 600d47bc..00000000 --- a/.github/workflows/kustomize-libvirt.yaml +++ /dev/null @@ -1,40 +0,0 @@ -name: Kustomize GitHub Actions for libvirt - -on: - pull_request: - paths: - - base-kustomize/libvirt/** - - .github/workflows/kustomize-libvirt.yaml -jobs: - kustomize: - name: Kustomize - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v4 - - uses: azure/setup-helm@v3 - with: - version: latest - token: "${{ secrets.GITHUB_TOKEN }}" - id: helm - - name: Kustomize Install - working-directory: /usr/local/bin/ - run: | - if [ ! -f /usr/local/bin/kustomize ]; then - curl -s "https://raw.githubusercontent.com/kubernetes-sigs/kustomize/master/hack/install_kustomize.sh" | sudo bash - fi - - name: Pull OSH infra submodule - run: | - git submodule update --init submodules/openstack-helm-infra - - name: Make OSH infra submodule - run: | - cd submodules/openstack-helm-infra - make libvirt - - name: Run Kustomize Build - run: | - kustomize build base-kustomize/libvirt --enable-helm --helm-command ${{ steps.helm.outputs.helm-path }} > /tmp/rendered.yaml - - name: Return Kustomize Build - uses: actions/upload-artifact@v4 - with: - name: kustomize-libvirt-artifact - path: /tmp/rendered.yaml