-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update to operator-sdk v1.39.1 #115
base: main
Are you sure you want to change the base?
Changes from all commits
aefe9c5
6193914
aacb754
9e7564d
0a98ea2
60646d7
e1ea524
f66a109
c93f209
e991b1c
94c6ed2
cc54009
23ad1e8
bb5ccce
2f9f780
3bf714b
799d70d
bb41cbe
dfb30d1
96c85ee
8937710
44e2f96
984563a
0d6e0fa
9565e0b
8909aba
1f73d3a
b162957
5fa3e0b
878c095
5b63d11
1d00547
afd0156
f56a5f3
f865bc4
6d39eba
effa041
d80993e
35d2912
66d2218
6d2f20f
6222d95
f647216
650c9a7
bf450f8
390d632
ccfe4e8
439f1dc
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# Build the manager binary | ||
# (operator-sdk v1.38.0 uses golang:1.22 as builder, but we'll use docker.io/library/golang:1.23) | ||
FROM docker.io/library/golang:1.23 as builder | ||
FROM docker.io/library/golang:1.24 as builder | ||
ARG TARGETOS | ||
ARG TARGETARCH | ||
|
||
|
@@ -22,6 +22,7 @@ COPY internal/controller/ internal/controller/ | |
# was called. For example, if we call make docker-build in a local env which has the Apple Silicon M1 SO | ||
# the docker BUILDPLATFORM arg will be linux/arm64 when for Apple x86 it will be linux/amd64. Therefore, | ||
# by leaving it empty we can ensure that the container and binary shipped on it will have the same platform. | ||
RUN go mod tidy | ||
RUN CGO_ENABLED=0 GOOS=${TARGETOS:-linux} GOARCH=${TARGETARCH} go build -a -o manager cmd/main.go | ||
|
||
# Use ubi8/ubi as image | ||
|
@@ -30,8 +31,8 @@ FROM registry.access.redhat.com/ubi8/ubi:latest | |
LABEL name="NFV Example CNF App MAC Operator" \ | ||
maintainer="telcoci" \ | ||
vendor="fredco" \ | ||
version="v0.2.22" \ | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This file cannot be modified, you only need to bump the version and release here There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Still required |
||
release="v0.2.22" \ | ||
version="v0.2.23" \ | ||
release="v0.2.23" \ | ||
summary="An example CNF for platform validation" \ | ||
description="An example CNF for platform validation" | ||
|
||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why is this file deleted?