File tree Expand file tree Collapse file tree 4 files changed +6
-10
lines changed
controlplane/eks/api/v1beta2 Expand file tree Collapse file tree 4 files changed +6
-10
lines changed Original file line number Diff line number Diff line change @@ -41,11 +41,10 @@ COPY ./ ./
4141ARG package=.
4242ARG ARCH
4343ARG LDFLAGS
44- ARG GCFLAGS
4544RUN --mount=type=cache,target=/root/.cache/go-build \
4645 --mount=type=cache,target=/go/pkg/mod \
4746 --mount=type=cache,target=/root/.local/share/golang \
48- CGO_ENABLED=0 GOOS=linux GOARCH=${ARCH} go build -gcflags "${GCFLAGS}" - ldflags "${LDFLAGS} -extldflags '-static'" -o manager ${package}
47+ CGO_ENABLED=0 GOOS=linux GOARCH=${ARCH} go build -ldflags "${LDFLAGS} -extldflags '-static'" -o manager ${package}
4948ENTRYPOINT [ "/start.sh" , "/workspace/manager" ]
5049
5150# Copy the controller-manager into a thin image
Original file line number Diff line number Diff line change @@ -137,9 +137,6 @@ RBAC_ROOT ?= $(MANIFEST_ROOT)/rbac
137137# Allow overriding the imagePullPolicy
138138PULL_POLICY ?= Always
139139
140- # Allow overriding the GCFLAGS
141- GCFLAGS ?=
142-
143140# Set build time variables including version details
144141LDFLAGS := $(shell source ./hack/version.sh; version::ldflags)
145142
@@ -390,12 +387,12 @@ binaries: managers clusterawsadm ## Builds and installs all binaries
390387
391388.PHONY : clusterawsadm
392389clusterawsadm : # # Build clusterawsadm binary
393- go build -gcflags " $( GCFLAGS ) " - ldflags " $( LDFLAGS) " -o $(BIN_DIR ) /clusterawsadm ./cmd/clusterawsadm
390+ go build -ldflags " $( LDFLAGS) " -o $(BIN_DIR ) /clusterawsadm ./cmd/clusterawsadm
394391
395392
396393.PHONY : docker-build
397394docker-build : docker-pull-prerequisites # # Build the docker image for controller-manager
398- docker build --build-arg ARCH=$(ARCH ) --build-arg builder_image=$(GO_CONTAINER_IMAGE ) --build-arg GCFLAGS= " $( GCFLAGS ) " --build-arg LDFLAGS=" $( LDFLAGS) " . -t $(CORE_CONTROLLER_IMG ) -$(ARCH ) :$(TAG )
395+ docker build --build-arg ARCH=$(ARCH ) --build-arg builder_image=$(GO_CONTAINER_IMAGE ) --build-arg LDFLAGS=" $( LDFLAGS) " . -t $(CORE_CONTROLLER_IMG ) -$(ARCH ) :$(TAG )
399396
400397.PHONY : docker-build-all # # Build all the architecture docker images
401398docker-build-all : $(addprefix docker-build-,$(ALL_ARCH ) )
@@ -414,7 +411,7 @@ managers: ## Alias for manager-aws-infrastructure
414411
415412.PHONY : manager-aws-infrastructure
416413manager-aws-infrastructure : # # Build manager binary
417- CGO_ENABLED=0 GOARCH=${ARCH} go build -gcflags " ${GCFLAGS} " - ldflags " ${LDFLAGS} -extldflags '-static'" -o $(BIN_DIR ) /manager .
414+ CGO_ENABLED=0 GOARCH=${ARCH} go build -ldflags " ${LDFLAGS} -extldflags '-static'" -o $(BIN_DIR ) /manager .
418415
419416# #@ test:
420417
Original file line number Diff line number Diff line change @@ -3025,7 +3025,7 @@ spec:
30253025 type : object
30263026 oidcIdentityProviderConfig :
30273027 description : |-
3028- OIDCIdentityProviderConfig is used to specify the oidc provider config
3028+ IdentityProviderconfig is used to specify the oidc provider config
30293029 to be attached with this eks cluster
30303030 properties :
30313031 clientId :
Original file line number Diff line number Diff line change @@ -187,7 +187,7 @@ type AWSManagedControlPlaneSpec struct { //nolint: maligned
187187 // +optional
188188 Addons * []Addon `json:"addons,omitempty"`
189189
190- // OIDCIdentityProviderConfig is used to specify the oidc provider config
190+ // IdentityProviderconfig is used to specify the oidc provider config
191191 // to be attached with this eks cluster
192192 // +optional
193193 OIDCIdentityProviderConfig * OIDCIdentityProviderConfig `json:"oidcIdentityProviderConfig,omitempty"`
You can’t perform that action at this time.
0 commit comments