Skip to content

Commit

Permalink
Merge pull request #47 from anfredette/release-v0.5.0
Browse files Browse the repository at this point in the history
bpfman-operator release v0.5.0
  • Loading branch information
anfredette authored Jul 14, 2024
2 parents 8571060 + 1bbe729 commit 3d0edba
Show file tree
Hide file tree
Showing 7 changed files with 33 additions and 9 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# To re-generate a bundle for another specific version without changing the standard setup, you can:
# - use the VERSION as arg of the bundle target (e.g make bundle VERSION=0.0.2)
# - use environment variables to overwrite this value (e.g export VERSION=0.0.2)
VERSION ?= 0.5.0-rc3
VERSION ?= 0.5.0

# CHANNELS define the bundle channels used in the bundle.
# Add a new line here if you would like to change its default config. (E.g CHANNELS = "candidate,fast,stable")
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -206,4 +206,4 @@ object to find references to the bpfMap pinpoints (`spec.maps`) to configure the
## Developer

For more architecture details about `bpfman-operator`, refer to
[Developing the bpfman-operator](https://bpfman.io/v0.5.0-rc1/developer-guide/develop-operator)
[Developing the bpfman-operator](https://bpfman.io/v0.5.0/developer-guide/develop-operator)
6 changes: 3 additions & 3 deletions bundle/manifests/bpfman-operator.clusterserviceversion.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ metadata:
capabilities: Basic Install
categories: OpenShift Optional
containerImage: quay.io/bpfman/bpfman-operator:v0.0.0
createdAt: "2024-07-12T19:37:22Z"
createdAt: "2024-07-12T21:04:11Z"
features.operators.openshift.io/cnf: "false"
features.operators.openshift.io/cni: "false"
features.operators.openshift.io/csi: "true"
Expand Down Expand Up @@ -335,7 +335,7 @@ metadata:
operatorframework.io/arch.arm64: supported
operatorframework.io/arch.ppc64le: supported
operatorframework.io/arch.s390x: supported
name: bpfman-operator.v0.5.0-rc3
name: bpfman-operator.v0.5.0
namespace: placeholder
spec:
apiservicedefinitions: {}
Expand Down Expand Up @@ -1152,4 +1152,4 @@ spec:
provider:
name: The bpfman Community
url: https://bpfman.io/
version: 0.5.0-rc3
version: 0.5.0
24 changes: 24 additions & 0 deletions changelogs/CHANGELOG-v0.5.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@

The v0.5.0 release is a minor release and is the first official release with
bpfman-operator in a separate repo.

The key new feature in this release is support for the BpfApplication CRD, which
allows an application developer to deploy a set of required eBPF programs using
a single BpfApplication CRD rather than multiple separate *Program CRDs.

## What's Changed
* SDN-5007: introducing bfpapplication object by @msherif1234 in https://github.com/bpfman/bpfman-operator/pull/6
* Fixups for pr #6 by @anfredette in https://github.com/bpfman/bpfman-operator/pull/31
* build(deps): bump the production-dependencies group with 2 updates by @dependabot in https://github.com/bpfman/bpfman-operator/pull/32
* Add app integration test by @msherif1234 in https://github.com/bpfman/bpfman-operator/pull/23
* remove api doc gen by @astoycos in https://github.com/bpfman/bpfman-operator/pull/34
* fix broken link the readme and few minor edits by @msherif1234 in https://github.com/bpfman/bpfman-operator/pull/33
* 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
* handle update app object by removing an existing program by @msherif1234 in https://github.com/bpfman/bpfman-operator/pull/38
* More concise naming scheme for BpfPrograms by @anfredette in https://github.com/bpfman/bpfman-operator/pull/37
* update build-release-yamls target by @msherif1234 in https://github.com/bpfman/bpfman-operator/pull/42
* Add make catalog-deploy to allow loading dev operator from console by @msherif1234 in https://github.com/bpfman/bpfman-operator/pull/43
* Add missing schema for BpfApplication object by @msherif1234 in https://github.com/bpfman/bpfman-operator/pull/46

**Full Changelog**: https://github.com/bpfman/bpfman-operator/compare/v0.4.2...v0.5.0

2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ go 1.22.0
toolchain go1.22.2

require (
github.com/bpfman/bpfman v0.5.0-rc1
github.com/bpfman/bpfman v0.5.0
github.com/containers/image v3.0.2+incompatible
github.com/go-logr/logr v1.4.2
github.com/google/go-cmp v0.6.0
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM=
github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw=
github.com/blang/semver/v4 v4.0.0 h1:1PFHFE6yCCTv8C1TeyNNarDzntLi7wMI5i/pzqYIsAM=
github.com/blang/semver/v4 v4.0.0/go.mod h1:IbckMUScFkM3pff0VJDNKRiT6TG/YpiHIM2yvyW5YoQ=
github.com/bpfman/bpfman v0.5.0-rc1 h1:ilveM/168raaO8jwExVLPjI+dUEbQiogcsjIV+C3qTw=
github.com/bpfman/bpfman v0.5.0-rc1/go.mod h1:AizsT1VkMu7ddVT/7RzUcz83smfDuh0FRgzhkZHj6ZE=
github.com/bpfman/bpfman v0.5.0 h1:Q4RCeP8EM95AJKyFc2fhiPog3TzWVqrCS3lj19M7FoE=
github.com/bpfman/bpfman v0.5.0/go.mod h1:AizsT1VkMu7ddVT/7RzUcz83smfDuh0FRgzhkZHj6ZE=
github.com/buger/jsonparser v1.1.1 h1:2PnMjfWD7wBILjqQbt530v576A/cAbQvEW9gGIpYMUs=
github.com/buger/jsonparser v1.1.1/go.mod h1:6RYKKt7H4d4+iWqouImQ9R2FZql3VbhNgx27UK13J/0=
github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs=
Expand Down
2 changes: 1 addition & 1 deletion vendor/modules.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ github.com/beorn7/perks/quantile
# github.com/blang/semver/v4 v4.0.0
## explicit; go 1.14
github.com/blang/semver/v4
# github.com/bpfman/bpfman v0.5.0-rc1
# github.com/bpfman/bpfman v0.5.0
## explicit; go 1.22.0
github.com/bpfman/bpfman/clients/gobpfman/v1
# github.com/buger/jsonparser v1.1.1
Expand Down

0 comments on commit 3d0edba

Please sign in to comment.