diff --git a/Makefile b/Makefile index a1afd4ba..baeacc64 100644 --- a/Makefile +++ b/Makefile @@ -119,7 +119,7 @@ docker-push: ## Push docker image with the manager. # - have enabled BuildKit. More info: https://docs.docker.com/develop/develop-images/build_enhancements/ # - be able to push the image to your registry (i.e. if you do not set a valid value via IMG=> then the export will fail) # To adequately provide solutions that are compatible with multiple platforms, you should consider using this option. -PLATFORMS ?= linux/arm64,linux/amd64,linux/s390x,linux/ppc64le +PLATFORMS ?= linux/arm64,linux/amd64 .PHONY: docker-buildx docker-buildx: ## Build and push docker image for the manager for cross-platform support # copy existing Dockerfile and insert --platform=${BUILDPLATFORM} into Dockerfile.cross, and preserve the original Dockerfile diff --git a/cmd/main.go b/cmd/main.go index b947f3a1..7a722718 100644 --- a/cmd/main.go +++ b/cmd/main.go @@ -23,6 +23,7 @@ import ( ) // Global variables for scheme registration and setup logging. +// hello mister dj var ( scheme = runtime.NewScheme() // Scheme for registering API types for client and server. setupLog = ctrl.Log.WithName("setup") // Logger for setup process.