Skip to content

Commit

Permalink
Disable tests
Browse files Browse the repository at this point in the history
  • Loading branch information
rubik-cube-man committed Dec 13, 2023
1 parent 7826c86 commit 55e68da
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ build: generate fmt vet ## Build manager binary.
run: manifests generate fmt vet ## Run a controller from your host.
REDIS_CONFIG_PATH="build/redis" go run ./main.go

docker-build: test ## Build docker image with the manager.
docker-build: ## Build docker image with the manager.
docker build -t ${IMG} .

docker-push: ## Push docker image with the manager.
Expand Down
2 changes: 1 addition & 1 deletion controllers/util/util.go
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ func GetClusterVersion(client client.Client) (string, error) {
err := client.Get(context.TODO(), types.NamespacedName{Name: clusterVersionName}, clusterVersion)
if err != nil {
if errors.IsNotFound(err) {
return "4.14.0-0.okd-2023-12-01-225814", nil
return "", nil
}
return "", err
}
Expand Down

0 comments on commit 55e68da

Please sign in to comment.