Skip to content

Commit 31b7455

Browse files
committed
Prepare release v1.11.1-community
1 parent 877e2e9 commit 31b7455

File tree

9 files changed

+42
-37
lines changed

9 files changed

+42
-37
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ IMAGE_REGISTRY ?= quay.io
1515
REPO ?= $(IMAGE_REGISTRY)/$(IMAGE_ORG)
1616

1717
# Component versions to use in bundle / release (do not use $VERSION for that)
18-
BUNDLE_VERSION ?= 1.11.0-community
18+
BUNDLE_VERSION ?= 1.11.1-community
1919
# console plugin
2020
export PLG_VERSION ?= v${BUNDLE_VERSION}
2121
# flowlogs-pipeline

RELEASE.md

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ To release them, a tag in the format "v1.6.0-community" or "v1.6.0-crc0" must be
99
E.g:
1010

1111
```bash
12-
version="v1.11.0-community"
12+
version="v1.11.1-community"
1313
git tag -a "$version" -m "$version"
1414
git push upstream --tags
1515
```
@@ -24,7 +24,7 @@ We can then proceed with the operator. Edit the [Makefile](./Makefile) to update
2424
BUNDLE_SET_DATE=true make update-bundle
2525

2626
# Set desired operator version - CAREFUL, no leading "v" here
27-
version="1.11.0-community"
27+
version="1.11.1-community"
2828
vv=v$version
2929
test_branch=test-$vv
3030

@@ -54,6 +54,11 @@ metadata:
5454
name: cluster
5555
spec:
5656
namespace: netobserv
57+
agent:
58+
eBPF:
59+
privileged: true
60+
features:
61+
- NetworkEvents
5762
networkPolicy:
5863
enable: false
5964
deploymentModel: Direct
@@ -143,15 +148,15 @@ From the operator repository:
143148
```bash
144149
helm package helm/
145150
index_path=/path/to/netobserv.github.io/static/helm
146-
mkdir -p $index_path/new && mv netobserv-operator-1.11.0.tgz $index_path/new && cd $index_path
151+
mkdir -p $index_path/new && mv netobserv-operator-1.11.1.tgz $index_path/new && cd $index_path
147152
helm repo index --merge index.yaml new/ --url https://netobserv.io/static/helm/
148153
mv new/* . && rmdir new
149154

150155
# Now, check there's nothing wrong in the generated files before commit (comparing last 2 versions)
151156
colordiff <(yq '.entries.netobserv-operator[1]' index.yaml) <(yq '.entries.netobserv-operator[0]' index.yaml)
152157

153-
git add netobserv-operator-1.11.0.tgz index.yaml
154-
git commit -m "Publish helm 1.11.0-community"
158+
git add netobserv-operator-1.11.1.tgz index.yaml
159+
git commit -m "Publish helm 1.11.1-community"
155160
git push upstream HEAD:main
156161
```
157162

bundle/manifests/netobserv-operator.clusterserviceversion.yaml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -90,8 +90,8 @@ metadata:
9090
capabilities: Seamless Upgrades
9191
categories: Monitoring, Networking, Observability
9292
console.openshift.io/plugins: '["netobserv-plugin"]'
93-
containerImage: quay.io/netobserv/network-observability-operator:1.11.0-community
94-
createdAt: "2026-02-09T10:15:11Z"
93+
containerImage: quay.io/netobserv/network-observability-operator:1.11.1-community
94+
createdAt: "2026-02-23T11:16:14Z"
9595
description: Network flows collector and monitoring solution
9696
operatorframework.io/initialization-resource: '{"apiVersion":"flows.netobserv.io/v1beta2",
9797
"kind":"FlowCollector","metadata":{"name":"cluster"},"spec": {}}'
@@ -106,7 +106,7 @@ metadata:
106106
operatorframework.io/arch.ppc64le: supported
107107
operatorframework.io/arch.s390x: supported
108108
operatorframework.io/os.linux: supported
109-
name: netobserv-operator.v1.11.0-community
109+
name: netobserv-operator.v1.11.1-community
110110
namespace: placeholder
111111
spec:
112112
apiservicedefinitions: {}
@@ -578,7 +578,7 @@ spec:
578578
579579
## Configuration
580580
581-
The `FlowCollector` resource is used to configure the operator and its managed components. A comprehensive documentation is [available here](https://github.com/netobserv/network-observability-operator/blob/1.11.0-community/docs/FlowCollector.md), and a full sample file [there](https://github.com/netobserv/network-observability-operator/blob/1.11.0-community/config/samples/flows_v1beta2_flowcollector.yaml).
581+
The `FlowCollector` resource is used to configure the operator and its managed components. A comprehensive documentation is [available here](https://github.com/netobserv/network-observability-operator/blob/1.11.1-community/docs/FlowCollector.md), and a full sample file [there](https://github.com/netobserv/network-observability-operator/blob/1.11.1-community/config/samples/flows_v1beta2_flowcollector.yaml).
582582
583583
To edit configuration in cluster, run:
584584
@@ -631,7 +631,7 @@ spec:
631631
This documentation includes:
632632
633633
- An [overview](https://github.com/netobserv/network-observability-operator#openshift-console) of the features, with screenshots
634-
- More information on [configuring metrics](https://github.com/netobserv/network-observability-operator/blob/1.11.0-community/docs/Metrics.md).
634+
- More information on [configuring metrics](https://github.com/netobserv/network-observability-operator/blob/1.11.1-community/docs/Metrics.md).
635635
- A [performance](https://github.com/netobserv/network-observability-operator#performance-fine-tuning) section, for fine-tuning
636636
- A [security](https://github.com/netobserv/network-observability-operator#securing-data-and-communications) section
637637
- An [F.A.Q.](https://github.com/netobserv/network-observability-operator#faq--troubleshooting) section
@@ -958,13 +958,13 @@ spec:
958958
- /manager
959959
env:
960960
- name: RELATED_IMAGE_EBPF_AGENT
961-
value: quay.io/netobserv/netobserv-ebpf-agent:v1.11.0-community
961+
value: quay.io/netobserv/netobserv-ebpf-agent:v1.11.1-community
962962
- name: RELATED_IMAGE_FLOWLOGS_PIPELINE
963-
value: quay.io/netobserv/flowlogs-pipeline:v1.11.0-community
963+
value: quay.io/netobserv/flowlogs-pipeline:v1.11.1-community
964964
- name: RELATED_IMAGE_CONSOLE_PLUGIN
965-
value: quay.io/netobserv/network-observability-console-plugin:v1.11.0-community
965+
value: quay.io/netobserv/network-observability-console-plugin:v1.11.1-community
966966
- name: RELATED_IMAGE_CONSOLE_PLUGIN_COMPAT
967-
value: quay.io/netobserv/network-observability-console-plugin:v1.11.0-community-pf4
967+
value: quay.io/netobserv/network-observability-console-plugin:v1.11.1-community-pf4
968968
- name: RELATED_IMAGE_DEMO_LOKI
969969
value: grafana/loki:3.5.0
970970
- name: DOWNSTREAM_DEPLOYMENT
@@ -974,7 +974,7 @@ spec:
974974
valueFrom:
975975
fieldRef:
976976
fieldPath: metadata.namespace
977-
image: quay.io/netobserv/network-observability-operator:1.11.0-community
977+
image: quay.io/netobserv/network-observability-operator:1.11.1-community
978978
imagePullPolicy: Always
979979
livenessProbe:
980980
httpGet:
@@ -1106,17 +1106,17 @@ spec:
11061106
name: Red Hat
11071107
url: https://www.redhat.com
11081108
relatedImages:
1109-
- image: quay.io/netobserv/netobserv-ebpf-agent:v1.11.0-community
1109+
- image: quay.io/netobserv/netobserv-ebpf-agent:v1.11.1-community
11101110
name: ebpf-agent
1111-
- image: quay.io/netobserv/flowlogs-pipeline:v1.11.0-community
1111+
- image: quay.io/netobserv/flowlogs-pipeline:v1.11.1-community
11121112
name: flowlogs-pipeline
1113-
- image: quay.io/netobserv/network-observability-console-plugin:v1.11.0-community
1113+
- image: quay.io/netobserv/network-observability-console-plugin:v1.11.1-community
11141114
name: console-plugin
1115-
- image: quay.io/netobserv/network-observability-console-plugin:v1.11.0-community-pf4
1115+
- image: quay.io/netobserv/network-observability-console-plugin:v1.11.1-community-pf4
11161116
name: console-plugin-compat
11171117
- image: grafana/loki:3.5.0
11181118
name: demo-loki
1119-
version: 1.11.0-community
1119+
version: 1.11.1-community
11201120
webhookdefinitions:
11211121
- admissionReviewVersions:
11221122
- v1

config/descriptions/ocp.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ In that case, you still get the Prometheus metrics or export raw flows to a cust
4242

4343
## Configuration
4444

45-
The `FlowCollector` resource is used to configure the operator and its managed components. A comprehensive documentation is [available here](https://github.com/netobserv/network-observability-operator/blob/1.11.0-community/docs/FlowCollector.md), and a full sample file [there](https://github.com/netobserv/network-observability-operator/blob/1.11.0-community/config/samples/flows_v1beta2_flowcollector.yaml).
45+
The `FlowCollector` resource is used to configure the operator and its managed components. A comprehensive documentation is [available here](https://github.com/netobserv/network-observability-operator/blob/1.11.1-community/docs/FlowCollector.md), and a full sample file [there](https://github.com/netobserv/network-observability-operator/blob/1.11.1-community/config/samples/flows_v1beta2_flowcollector.yaml).
4646

4747
To edit configuration in cluster, run:
4848

@@ -95,7 +95,7 @@ Please refer to the documentation on GitHub for more information.
9595
This documentation includes:
9696

9797
- An [overview](https://github.com/netobserv/network-observability-operator#openshift-console) of the features, with screenshots
98-
- More information on [configuring metrics](https://github.com/netobserv/network-observability-operator/blob/1.11.0-community/docs/Metrics.md).
98+
- More information on [configuring metrics](https://github.com/netobserv/network-observability-operator/blob/1.11.1-community/docs/Metrics.md).
9999
- A [performance](https://github.com/netobserv/network-observability-operator#performance-fine-tuning) section, for fine-tuning
100100
- A [security](https://github.com/netobserv/network-observability-operator#securing-data-and-communications) section
101101
- An [F.A.Q.](https://github.com/netobserv/network-observability-operator#faq--troubleshooting) section

config/descriptions/upstream.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ In that case, you still get the Prometheus metrics or export raw flows to a cust
4646

4747
## Configuration
4848

49-
The `FlowCollector` resource is used to configure the operator and its managed components. A comprehensive documentation is [available here](https://github.com/netobserv/network-observability-operator/blob/1.11.0-community/docs/FlowCollector.md), and a full sample file [there](https://github.com/netobserv/network-observability-operator/blob/1.11.0-community/config/samples/flows_v1beta2_flowcollector.yaml).
49+
The `FlowCollector` resource is used to configure the operator and its managed components. A comprehensive documentation is [available here](https://github.com/netobserv/network-observability-operator/blob/1.11.1-community/docs/FlowCollector.md), and a full sample file [there](https://github.com/netobserv/network-observability-operator/blob/1.11.1-community/config/samples/flows_v1beta2_flowcollector.yaml).
5050

5151
To edit configuration in cluster, run:
5252

@@ -99,7 +99,7 @@ Please refer to the documentation on GitHub for more information.
9999
This documentation includes:
100100

101101
- An [overview](https://github.com/netobserv/network-observability-operator#openshift-console) of the features, with screenshots
102-
- More information on [configuring metrics](https://github.com/netobserv/network-observability-operator/blob/1.11.0-community/docs/Metrics.md).
102+
- More information on [configuring metrics](https://github.com/netobserv/network-observability-operator/blob/1.11.1-community/docs/Metrics.md).
103103
- A [performance](https://github.com/netobserv/network-observability-operator#performance-fine-tuning) section, for fine-tuning
104104
- A [security](https://github.com/netobserv/network-observability-operator#securing-data-and-communications) section
105105
- An [F.A.Q.](https://github.com/netobserv/network-observability-operator#faq--troubleshooting) section

config/manager/kustomization.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ patches:
1414
images:
1515
- name: controller
1616
newName: quay.io/netobserv/network-observability-operator
17-
newTag: 1.11.0-community
17+
newTag: 1.11.1-community
1818
labels:
1919
- includeSelectors: true
2020
pairs:

config/manager/manager.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,13 @@ spec:
3434
- --profiling-bind-address=$(PROFILING_BIND_ADDRESS)
3535
env:
3636
- name: RELATED_IMAGE_EBPF_AGENT
37-
value: quay.io/netobserv/netobserv-ebpf-agent:v1.11.0-community
37+
value: quay.io/netobserv/netobserv-ebpf-agent:v1.11.1-community
3838
- name: RELATED_IMAGE_FLOWLOGS_PIPELINE
39-
value: quay.io/netobserv/flowlogs-pipeline:v1.11.0-community
39+
value: quay.io/netobserv/flowlogs-pipeline:v1.11.1-community
4040
- name: RELATED_IMAGE_CONSOLE_PLUGIN
41-
value: quay.io/netobserv/network-observability-console-plugin:v1.11.0-community
41+
value: quay.io/netobserv/network-observability-console-plugin:v1.11.1-community
4242
- name: RELATED_IMAGE_CONSOLE_PLUGIN_COMPAT
43-
value: quay.io/netobserv/network-observability-console-plugin:v1.11.0-community-pf4
43+
value: quay.io/netobserv/network-observability-console-plugin:v1.11.1-community-pf4
4444
- name: RELATED_IMAGE_DEMO_LOKI
4545
value: grafana/loki:3.5.0
4646
- name: DOWNSTREAM_DEPLOYMENT

helm/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@ type: application
1515
# This is the chart version. This version number should be incremented each time you make changes
1616
# to the chart and its templates, including the app version.
1717
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18-
version: 1.11.0
18+
version: 1.11.1
1919

2020
# This is the version number of the application being deployed. This version number should be
2121
# incremented each time you make changes to the application. Versions are not expected to
2222
# follow Semantic Versioning. They should reflect the version the application is using.
2323
# It is recommended to use it with quotes.
24-
appVersion: 1.11.0-community
24+
appVersion: 1.11.1-community
2525

2626
keywords:
2727
- netobserv

helm/values.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,20 +8,20 @@ certManager:
88
# Deployment manifest values
99
ebpfAgent:
1010
image: quay.io/netobserv/netobserv-ebpf-agent
11-
version: v1.11.0-community
11+
version: v1.11.1-community
1212
flowlogsPipeline:
1313
image: quay.io/netobserv/flowlogs-pipeline
14-
version: v1.11.0-community
14+
version: v1.11.1-community
1515
consolePlugin:
1616
image: quay.io/netobserv/network-observability-console-plugin
17-
version: v1.11.0-community
17+
version: v1.11.1-community
1818
standaloneConsole:
1919
enable: true
2020
image: quay.io/netobserv/network-observability-standalone-frontend
21-
version: v1.11.0-community
21+
version: v1.11.1-community
2222
operator:
2323
image: quay.io/netobserv/network-observability-operator
24-
version: 1.11.0-community
24+
version: 1.11.1-community
2525
# Node affinity configuration for the operator deployment
2626
nodeAffinity: {}
2727
# Example:

0 commit comments

Comments
 (0)