File tree Expand file tree Collapse file tree 11 files changed +38
-107
lines changed
Expand file tree Collapse file tree 11 files changed +38
-107
lines changed Original file line number Diff line number Diff line change 1+ build_root_image :
2+ name : release
3+ namespace : openshift
4+ tag : rhel-9-release-golang-1.22-openshift-4.17
Original file line number Diff line number Diff line change 1- # See the OWNERS docs at https://go.k8s.io/owners
2-
1+ # WARNING: This file is autogenerated. DO NOT edit by hand!!!
2+ # To update this file please contact an existing owner and request
3+ # to be added to the owners-gen input data.
34approvers:
4- - cheftako
5- - bowei
6- - jprzychodzen
7- - SergeyKanzhelev
8- - vinayakankugoyal
9- - mmamczur
10- emeritus_approvers:
11- - aojea
12- - bentheelder
13- - dnardo
14- - nicksardo
5+ - JoelSpeed
6+ - elmiko
7+ - nrb
8+ - theobarberbany
159reviewers:
16- - justinsb
17- - seans3
10+ - JoelSpeed
11+ - RadekManak
12+ - damdo
13+ - elmiko
14+ - nrb
15+ - racheljpg
16+ - sub-mod
17+ - theobarberbany
18+ component: Cloud Compute
19+ subcomponent: Cloud Controller Manager
Load Diff This file was deleted.
Load Diff This file was deleted.
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 11module k8s.io/cloud-provider-gcp
22
3- go 1.23.0
3+ go 1.22
44
55require (
66 github.com/evanphx/json-patch v5.9.0+incompatible
Original file line number Diff line number Diff line change 1+ FROM registry.ci.openshift.org/ocp/builder:rhel-9-golang-1.22-openshift-4.17 AS builder
2+
3+ WORKDIR /build
4+ COPY . .
5+ RUN CGO_ENABLED=0 GOOS=${GOOS} GOPROXY=${GOPROXY} go build \
6+ -ldflags="-w -s -X 'main.version=${VERSION}'" \
7+ -o=gcp-cloud-controller-manager \
8+ ./cmd/cloud-controller-manager
9+
10+ FROM registry.ci.openshift.org/ocp/4.17:base-rhel9
11+
12+ LABEL description="GCP Cloud Controller Manager"
13+
14+ COPY --from=builder /build/gcp-cloud-controller-manager /bin/gcp-cloud-controller-manager
15+
16+ ENTRYPOINT [ "/bin/gcp-cloud-controller-manager" ]
Load Diff This file was deleted.
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments