From a62bc1b22b6b959fa4fb8cffc6c46650e2388ee4 Mon Sep 17 00:00:00 2001
From: CrazyMax <crazy-max@users.noreply.github.com>
Date: Thu, 5 May 2022 18:40:08 +0200
Subject: [PATCH] ci: fix standalone test

Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
---
 .github/workflows/ci.yml | 39 ---------------------------------------
 1 file changed, 39 deletions(-)

diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index d089787..78ebb54 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -834,42 +834,3 @@ jobs:
         with:
           context: ./test
           file: ./test/Dockerfile
-
-  standalone-kubernetes:
-    runs-on: ubuntu-latest
-    steps:
-      -
-        name: Checkout
-        uses: actions/checkout@v3
-      -
-        name: Uninstall moby
-        run: |
-          sudo apt-get purge -y moby-engine moby-cli moby-buildx
-      -
-        name: Setup k8s cluster
-        run: |
-          set -x
-          sudo curl -fsSLo /usr/share/keyrings/kubernetes-archive-keyring.gpg https://packages.cloud.google.com/apt/doc/apt-key.gpg
-          echo "deb [signed-by=/usr/share/keyrings/kubernetes-archive-keyring.gpg] https://apt.kubernetes.io/ kubernetes-xenial main" | sudo tee /etc/apt/sources.list.d/kubernetes.list
-          sudo apt-get update
-          sudo apt-get install -y kubelet kubeadm kubectl
-          sudo swapoff -a
-          sudo kubeadm init --cri-socket /run/containerd/containerd.sock
-          mkdir -p $HOME/.kube/
-          sudo cp -i /etc/kubernetes/admin.conf $HOME/.kube/config
-          sudo chown $USER $HOME/.kube/config
-          kubectl taint nodes --all node-role.kubernetes.io/master-
-          kubectl apply -f https://docs.projectcalico.org/manifests/calico.yaml
-          kubectl wait --for=condition=ready --timeout=30s node --all
-          kubectl get nodes -o wide
-      -
-        name: Set up Docker Buildx
-        uses: docker/setup-buildx-action@v1
-        with:
-          driver: kubernetes
-      -
-        name: Build
-        uses: ./
-        with:
-          context: ./test
-          file: ./test/Dockerfile