asD
This commit is contained in:
12
.github/workflows/test-e2e.yml
vendored
12
.github/workflows/test-e2e.yml
vendored
@@ -7,7 +7,8 @@ on:
|
|||||||
jobs:
|
jobs:
|
||||||
test-e2e:
|
test-e2e:
|
||||||
name: Run on Ubuntu
|
name: Run on Ubuntu
|
||||||
runs-on: ubuntu-20.04
|
runs-on: ubuntu-20.04
|
||||||
|
continue-on-error: true
|
||||||
steps:
|
steps:
|
||||||
- name: Clone the code
|
- name: Clone the code
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
@@ -40,6 +41,9 @@ jobs:
|
|||||||
go mod tidy
|
go mod tidy
|
||||||
make test-e2e
|
make test-e2e
|
||||||
|
|
||||||
- name: Delete kind cluster
|
after-test:
|
||||||
run: kind delete cluster
|
runs-on: ubuntu-latest
|
||||||
|
needs: [test-e2e]
|
||||||
|
steps:
|
||||||
|
- name: Delete kind cluster
|
||||||
|
run: kind delete cluster
|
||||||
|
|||||||
@@ -2,6 +2,7 @@ package controller
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
|
|
||||||
locustCluster "git.lilpenguins.com/crichardson/locust-operator/api/v1alpha1"
|
locustCluster "git.lilpenguins.com/crichardson/locust-operator/api/v1alpha1"
|
||||||
"github.com/go-logr/logr"
|
"github.com/go-logr/logr"
|
||||||
"k8s.io/apimachinery/pkg/apis/meta/v1/unstructured"
|
"k8s.io/apimachinery/pkg/apis/meta/v1/unstructured"
|
||||||
|
|||||||
Reference in New Issue
Block a user