From a35cd3aed97e1e6e1cf74750ac636ee14402782a Mon Sep 17 00:00:00 2001 From: cmoulliard Date: Fri, 31 May 2024 18:07:26 +0200 Subject: [PATCH] Install kubevirt Signed-off-by: cmoulliard --- .github/workflows/kubevirt.yml | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/.github/workflows/kubevirt.yml b/.github/workflows/kubevirt.yml index a8045c5..df0db55 100644 --- a/.github/workflows/kubevirt.yml +++ b/.github/workflows/kubevirt.yml @@ -89,12 +89,18 @@ jobs: kubectl create ns gitops kubectl apply -n gitops -f https://raw.githubusercontent.com/ch007m/test-github-action/main/.github/resources/argocd/argocd.yaml - kubectl get argocd -A -o yaml - sleep 20 kubectl wait deployment -n gitops argocd-gitops-applicationset-controller --for condition=Available=True --timeout=90s + - name: Install Kubevirt + run: | + curl -sL https://raw.githubusercontent.com/kubevirt/hyperconverged-cluster-operator/main/deploy/deploy.sh -o deploy.sh + chmod +x deploy.sh + ./deploy.sh + + kubectl create -f https://operatorhub.io/install/community-kubevirt-hyperconverged.yaml + - name: Check pods ... run: | sleep 30 - kubectl get po -A + kubectl get pod -A