Skip to content

Commit 7cbcc9f

Browse files
committed
cruft
1 parent 910914e commit 7cbcc9f

File tree

4 files changed

+6
-10
lines changed

4 files changed

+6
-10
lines changed

Dockerfile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,11 +41,10 @@ COPY ./ ./
4141
ARG package=.
4242
ARG ARCH
4343
ARG LDFLAGS
44-
ARG GCFLAGS
4544
RUN --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}
4948
ENTRYPOINT [ "/start.sh", "/workspace/manager" ]
5049

5150
# Copy the controller-manager into a thin image

Makefile

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -137,9 +137,6 @@ RBAC_ROOT ?= $(MANIFEST_ROOT)/rbac
137137
# Allow overriding the imagePullPolicy
138138
PULL_POLICY ?= Always
139139

140-
# Allow overriding the GCFLAGS
141-
GCFLAGS ?=
142-
143140
# Set build time variables including version details
144141
LDFLAGS := $(shell source ./hack/version.sh; version::ldflags)
145142

@@ -390,12 +387,12 @@ binaries: managers clusterawsadm ## Builds and installs all binaries
390387

391388
.PHONY: clusterawsadm
392389
clusterawsadm: ## 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
397394
docker-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
401398
docker-build-all: $(addprefix docker-build-,$(ALL_ARCH))
@@ -414,7 +411,7 @@ managers: ## Alias for manager-aws-infrastructure
414411

415412
.PHONY: manager-aws-infrastructure
416413
manager-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

config/crd/bases/controlplane.cluster.x-k8s.io_awsmanagedcontrolplanes.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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:

controlplane/eks/api/v1beta2/awsmanagedcontrolplane_types.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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"`

0 commit comments

Comments
 (0)