mirror of
https://github.com/1Password/onepassword-operator.git
synced 2025-10-22 23:48:05 +00:00
Move BuildOperatorImage
function to testhelper.operator
package
This commit is contained in:
@@ -3,15 +3,19 @@ package kind
|
||||
import (
|
||||
"os"
|
||||
|
||||
. "github.com/onsi/ginkgo/v2"
|
||||
. "github.com/onsi/gomega"
|
||||
|
||||
"github.com/1Password/onepassword-operator/test/cmd"
|
||||
)
|
||||
|
||||
// LoadImageToKind loads a local docker image to the Kind cluster
|
||||
func LoadImageToKind(imageName string) error {
|
||||
func LoadImageToKind(imageName string) {
|
||||
By("loading the operator image on Kind")
|
||||
clusterName := "kind"
|
||||
if value, ok := os.LookupEnv("KIND_CLUSTER"); ok {
|
||||
clusterName = value
|
||||
}
|
||||
_, err := cmd.Run("kind", "load", "docker-image", imageName, "--name", clusterName)
|
||||
return err
|
||||
Expect(err).NotTo(HaveOccurred())
|
||||
}
|
||||
|
@@ -10,6 +10,12 @@ import (
|
||||
"github.com/1Password/onepassword-operator/test/testhelper/kube"
|
||||
)
|
||||
|
||||
func BuildOperatorImage() {
|
||||
By("building the operator image")
|
||||
_, err := cmd.Run("make", "docker-build")
|
||||
ExpectWithOffset(1, err).NotTo(HaveOccurred())
|
||||
}
|
||||
|
||||
// DeployOperator deploys the Onepassword Operator in the default namespace.
|
||||
// It waits for the operator pod to be in 'Running' state.
|
||||
// All the resources created using manifests in `config/` dir.
|
||||
|
Reference in New Issue
Block a user