Skip to content

Commit 19dd6e8

Browse files
authored
Merge pull request #483 from l-technicore/oke-oss-release-v1.30.0
OKE OSS Release v1.30.0
2 parents fca4492 + 5084377 commit 19dd6e8

File tree

1,515 files changed

+143835
-36343
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,515 files changed

+143835
-36343
lines changed

.github/workflows/makefile.yml

+7-4
Original file line numberDiff line numberDiff line change
@@ -12,18 +12,21 @@ jobs:
1212
- name: Set up Go 1.x
1313
uses: actions/setup-go@v2
1414
with:
15-
go-version: '1.20'
15+
go-version: '1.22.9'
1616
id: go
1717

1818
- name: Check out code into the Go module directory
1919
uses: actions/checkout@v2
20-
20+
- name: Install dependencies
21+
run: |
22+
go mod download
2123
- name: Run Unit Tests
2224
run: |
2325
go test -covermode=count -coverprofile=profile.cov ./pkg/...
26+
- name: Install goveralls
27+
run: go install github.com/mattn/goveralls@latest
2428
- name: Send coverage
2529
env:
2630
COVERALLS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2731
run: |
28-
GO111MODULE=off go get github.com/mattn/goveralls
29-
$(go env GOPATH)/bin/goveralls -coverprofile=profile.cov -service=github
32+
goveralls -coverprofile=profile.cov -service=github

.github/workflows/release.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u ${GITHUB_ACTOR,,} --password-stdin
2727

2828
- name: Build Image
29-
run: OSS_REGISTRY="ghcr.io/oracle" VERSION="${{ github.ref_name }}" make image
29+
run: OSS_REGISTRY="ghcr.io/${GITHUB_REPOSITORY_OWNER,,}" VERSION="${{ github.ref_name }}" make image
3030

3131
- name: Push Image
32-
run: OSS_REGISTRY="ghcr.io/oracle" VERSION="${{ github.ref_name }}" make docker-push-all
32+
run: OSS_REGISTRY="ghcr.io/${GITHUB_REPOSITORY_OWNER,,}" VERSION="${{ github.ref_name }}" make docker-push-all

Dockerfile

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
ARG CI_IMAGE_REGISTRY
1616

17-
FROM golang:1.21.5 as builder
17+
FROM golang:1.22.9 as builder
1818

1919
ARG COMPONENT
2020

@@ -27,7 +27,7 @@ WORKDIR $SRC
2727

2828
RUN COMPONENT=${COMPONENT} make clean build
2929

30-
FROM oraclelinux:8-slim
30+
FROM ghcr.io/oracle/oraclelinux:8-slim-fips
3131

3232
COPY --from=0 /go/src/github.com/oracle/oci-cloud-controller-manager/dist/* /usr/local/bin/
3333
COPY --from=0 /go/src/github.com/oracle/oci-cloud-controller-manager/image/* /usr/local/bin/
@@ -45,4 +45,4 @@ RUN chmod 755 /sbin/encrypt-umount
4545
RUN chmod 755 /sbin/rpm-host
4646
RUN chmod 755 /sbin/chroot-bash
4747

48-
COPY --from=0 /go/src/github.com/oracle/oci-cloud-controller-manager/dist/* /usr/local/bin/
48+
COPY --from=0 /go/src/github.com/oracle/oci-cloud-controller-manager/dist/* /usr/local/bin/

Dockerfile_arm_all

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
ARG CI_IMAGE_REGISTRY
22

3-
FROM golang:1.21.5 as builder
3+
FROM golang:1.22.9 as builder
44

55
ARG COMPONENT
66

@@ -14,7 +14,7 @@ WORKDIR $SRC
1414

1515
RUN ARCH=arm make clean build-arm-all
1616

17-
FROM arm64v8/oraclelinux:8-slim
17+
FROM ghcr.io/oracle/oraclelinux:8-slim-fips-arm64v8
1818

1919
RUN microdnf -y install util-linux e2fsprogs xfsprogs python2 && \
2020
microdnf update && \
@@ -29,4 +29,4 @@ RUN chmod 755 /sbin/encrypt-umount
2929
RUN chmod 755 /sbin/rpm-host
3030
RUN chmod 755 /sbin/chroot-bash
3131

32-
COPY --from=0 /go/src/github.com/oracle/oci-cloud-controller-manager/dist/arm/* /usr/local/bin/
32+
COPY --from=0 /go/src/github.com/oracle/oci-cloud-controller-manager/dist/arm/* /usr/local/bin/

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ else
3838
VERSION ?= ${VERSION}
3939
endif
4040

41-
RELEASE = v1.29.0
41+
RELEASE = v1.30.0
4242

4343
GOOS ?= linux
4444
ARCH ?= amd64

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,13 @@ cloud-provider specific code out of the Kubernetes codebase.
3333
| v1.25.2 | v1.25 | - |
3434
| v1.26.4 | v1.26 | - |
3535
| v1.27.3 | v1.27 | - |
36-
| v1.28.1 | v1.28 | - |
37-
| v1.29.0 | v1.29 | - |
38-
36+
| v1.28.2 | v1.28 | - |
37+
| v1.29.1 | v1.29 | - |
38+
| v1.30.0 | v1.30 | - |
3939

4040

4141
Note:
42-
Versions older than v1.27.3 are no longer supported, new features / bug fixes will be available in v1.27.3 and later.
42+
Versions older than v1.28.2 are no longer supported, new features / bug fixes will be available in v1.28.2 and later.
4343

4444
## Implementation
4545
Currently `oci-cloud-controller-manager` implements:

0 commit comments

Comments
 (0)