Skip to content

Commit 3d0edba

Browse files
authored
Merge pull request #47 from anfredette/release-v0.5.0
bpfman-operator release v0.5.0
2 parents 8571060 + 1bbe729 commit 3d0edba

File tree

7 files changed

+33
-9
lines changed

7 files changed

+33
-9
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# To re-generate a bundle for another specific version without changing the standard setup, you can:
44
# - use the VERSION as arg of the bundle target (e.g make bundle VERSION=0.0.2)
55
# - use environment variables to overwrite this value (e.g export VERSION=0.0.2)
6-
VERSION ?= 0.5.0-rc3
6+
VERSION ?= 0.5.0
77

88
# CHANNELS define the bundle channels used in the bundle.
99
# Add a new line here if you would like to change its default config. (E.g CHANNELS = "candidate,fast,stable")

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,4 +206,4 @@ object to find references to the bpfMap pinpoints (`spec.maps`) to configure the
206206
## Developer
207207

208208
For more architecture details about `bpfman-operator`, refer to
209-
[Developing the bpfman-operator](https://bpfman.io/v0.5.0-rc1/developer-guide/develop-operator)
209+
[Developing the bpfman-operator](https://bpfman.io/v0.5.0/developer-guide/develop-operator)

bundle/manifests/bpfman-operator.clusterserviceversion.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ metadata:
296296
capabilities: Basic Install
297297
categories: OpenShift Optional
298298
containerImage: quay.io/bpfman/bpfman-operator:v0.0.0
299-
createdAt: "2024-07-12T19:37:22Z"
299+
createdAt: "2024-07-12T21:04:11Z"
300300
features.operators.openshift.io/cnf: "false"
301301
features.operators.openshift.io/cni: "false"
302302
features.operators.openshift.io/csi: "true"
@@ -335,7 +335,7 @@ metadata:
335335
operatorframework.io/arch.arm64: supported
336336
operatorframework.io/arch.ppc64le: supported
337337
operatorframework.io/arch.s390x: supported
338-
name: bpfman-operator.v0.5.0-rc3
338+
name: bpfman-operator.v0.5.0
339339
namespace: placeholder
340340
spec:
341341
apiservicedefinitions: {}
@@ -1152,4 +1152,4 @@ spec:
11521152
provider:
11531153
name: The bpfman Community
11541154
url: https://bpfman.io/
1155-
version: 0.5.0-rc3
1155+
version: 0.5.0

changelogs/CHANGELOG-v0.5.0.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
2+
The v0.5.0 release is a minor release and is the first official release with
3+
bpfman-operator in a separate repo.
4+
5+
The key new feature in this release is support for the BpfApplication CRD, which
6+
allows an application developer to deploy a set of required eBPF programs using
7+
a single BpfApplication CRD rather than multiple separate *Program CRDs.
8+
9+
## What's Changed
10+
* SDN-5007: introducing bfpapplication object by @msherif1234 in https://github.com/bpfman/bpfman-operator/pull/6
11+
* Fixups for pr #6 by @anfredette in https://github.com/bpfman/bpfman-operator/pull/31
12+
* build(deps): bump the production-dependencies group with 2 updates by @dependabot in https://github.com/bpfman/bpfman-operator/pull/32
13+
* Add app integration test by @msherif1234 in https://github.com/bpfman/bpfman-operator/pull/23
14+
* remove api doc gen by @astoycos in https://github.com/bpfman/bpfman-operator/pull/34
15+
* fix broken link the readme and few minor edits by @msherif1234 in https://github.com/bpfman/bpfman-operator/pull/33
16+
* build(deps): bump google.golang.org/grpc from 1.64.0 to 1.65.0 in the production-dependencies group by @dependabot in https://github.com/bpfman/bpfman-operator/pull/39
17+
* handle update app object by removing an existing program by @msherif1234 in https://github.com/bpfman/bpfman-operator/pull/38
18+
* More concise naming scheme for BpfPrograms by @anfredette in https://github.com/bpfman/bpfman-operator/pull/37
19+
* update build-release-yamls target by @msherif1234 in https://github.com/bpfman/bpfman-operator/pull/42
20+
* Add make catalog-deploy to allow loading dev operator from console by @msherif1234 in https://github.com/bpfman/bpfman-operator/pull/43
21+
* Add missing schema for BpfApplication object by @msherif1234 in https://github.com/bpfman/bpfman-operator/pull/46
22+
23+
**Full Changelog**: https://github.com/bpfman/bpfman-operator/compare/v0.4.2...v0.5.0
24+

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ go 1.22.0
55
toolchain go1.22.2
66

77
require (
8-
github.com/bpfman/bpfman v0.5.0-rc1
8+
github.com/bpfman/bpfman v0.5.0
99
github.com/containers/image v3.0.2+incompatible
1010
github.com/go-logr/logr v1.4.2
1111
github.com/google/go-cmp v0.6.0

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM=
22
github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw=
33
github.com/blang/semver/v4 v4.0.0 h1:1PFHFE6yCCTv8C1TeyNNarDzntLi7wMI5i/pzqYIsAM=
44
github.com/blang/semver/v4 v4.0.0/go.mod h1:IbckMUScFkM3pff0VJDNKRiT6TG/YpiHIM2yvyW5YoQ=
5-
github.com/bpfman/bpfman v0.5.0-rc1 h1:ilveM/168raaO8jwExVLPjI+dUEbQiogcsjIV+C3qTw=
6-
github.com/bpfman/bpfman v0.5.0-rc1/go.mod h1:AizsT1VkMu7ddVT/7RzUcz83smfDuh0FRgzhkZHj6ZE=
5+
github.com/bpfman/bpfman v0.5.0 h1:Q4RCeP8EM95AJKyFc2fhiPog3TzWVqrCS3lj19M7FoE=
6+
github.com/bpfman/bpfman v0.5.0/go.mod h1:AizsT1VkMu7ddVT/7RzUcz83smfDuh0FRgzhkZHj6ZE=
77
github.com/buger/jsonparser v1.1.1 h1:2PnMjfWD7wBILjqQbt530v576A/cAbQvEW9gGIpYMUs=
88
github.com/buger/jsonparser v1.1.1/go.mod h1:6RYKKt7H4d4+iWqouImQ9R2FZql3VbhNgx27UK13J/0=
99
github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs=

vendor/modules.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ github.com/beorn7/perks/quantile
44
# github.com/blang/semver/v4 v4.0.0
55
## explicit; go 1.14
66
github.com/blang/semver/v4
7-
# github.com/bpfman/bpfman v0.5.0-rc1
7+
# github.com/bpfman/bpfman v0.5.0
88
## explicit; go 1.22.0
99
github.com/bpfman/bpfman/clients/gobpfman/v1
1010
# github.com/buger/jsonparser v1.1.1

0 commit comments

Comments
 (0)