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 ./ ./
41
41
ARG package=.
42
42
ARG ARCH
43
43
ARG LDFLAGS
44
- ARG GCFLAGS
45
44
RUN --mount=type=cache,target=/root/.cache/go-build \
46
45
--mount=type=cache,target=/go/pkg/mod \
47
46
--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}
49
48
ENTRYPOINT [ "/start.sh" , "/workspace/manager" ]
50
49
51
50
# 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
137
137
# Allow overriding the imagePullPolicy
138
138
PULL_POLICY ?= Always
139
139
140
- # Allow overriding the GCFLAGS
141
- GCFLAGS ?=
142
-
143
140
# Set build time variables including version details
144
141
LDFLAGS := $(shell source ./hack/version.sh; version::ldflags)
145
142
@@ -384,12 +381,12 @@ binaries: managers clusterawsadm ## Builds and installs all binaries
384
381
385
382
.PHONY : clusterawsadm
386
383
clusterawsadm : # # Build clusterawsadm binary
387
- go build -gcflags " $( GCFLAGS ) " - ldflags " $( LDFLAGS) " -o $(BIN_DIR ) /clusterawsadm ./cmd/clusterawsadm
384
+ go build -ldflags " $( LDFLAGS) " -o $(BIN_DIR ) /clusterawsadm ./cmd/clusterawsadm
388
385
389
386
390
387
.PHONY : docker-build
391
388
docker-build : docker-pull-prerequisites # # Build the docker image for controller-manager
392
- 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 )
389
+ docker build --build-arg ARCH=$(ARCH ) --build-arg builder_image=$(GO_CONTAINER_IMAGE ) --build-arg LDFLAGS=" $( LDFLAGS) " . -t $(CORE_CONTROLLER_IMG ) -$(ARCH ) :$(TAG )
393
390
394
391
.PHONY : docker-build-all # # Build all the architecture docker images
395
392
docker-build-all : $(addprefix docker-build-,$(ALL_ARCH ) )
@@ -408,7 +405,7 @@ managers: ## Alias for manager-aws-infrastructure
408
405
409
406
.PHONY : manager-aws-infrastructure
410
407
manager-aws-infrastructure : # # Build manager binary
411
- CGO_ENABLED=0 GOARCH=${ARCH} go build -gcflags " ${GCFLAGS} " - ldflags " ${LDFLAGS} -extldflags '-static'" -o $(BIN_DIR ) /manager .
408
+ CGO_ENABLED=0 GOARCH=${ARCH} go build -ldflags " ${LDFLAGS} -extldflags '-static'" -o $(BIN_DIR ) /manager .
412
409
413
410
# #@ test:
414
411
Original file line number Diff line number Diff line change @@ -3025,7 +3025,7 @@ spec:
3025
3025
type : object
3026
3026
oidcIdentityProviderConfig :
3027
3027
description : |-
3028
- OIDCIdentityProviderConfig is used to specify the oidc provider config
3028
+ IdentityProviderconfig is used to specify the oidc provider config
3029
3029
to be attached with this eks cluster
3030
3030
properties :
3031
3031
clientId :
Original file line number Diff line number Diff line change @@ -188,7 +188,7 @@ type AWSManagedControlPlaneSpec struct { //nolint: maligned
188
188
// +optional
189
189
Addons * []Addon `json:"addons,omitempty"`
190
190
191
- // OIDCIdentityProviderConfig is used to specify the oidc provider config
191
+ // IdentityProviderconfig is used to specify the oidc provider config
192
192
// to be attached with this eks cluster
193
193
// +optional
194
194
OIDCIdentityProviderConfig * OIDCIdentityProviderConfig `json:"oidcIdentityProviderConfig,omitempty"`
You can’t perform that action at this time.
0 commit comments