Skip to content

Commit 99b2c38

Browse files
committed
Prepare release v1.10.0-community
1 parent 8017af2 commit 99b2c38

File tree

9 files changed

+42
-40
lines changed

9 files changed

+42
-40
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.9.2-community
18+
BUNDLE_VERSION ?= 1.10.0-community
1919
# console plugin
2020
export PLG_VERSION ?= v${BUNDLE_VERSION}
2121
# flowlogs-pipeline

RELEASE.md

Lines changed: 7 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.9.2-community"
12+
version="v1.10.0-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
make update-bundle
2525

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

@@ -54,6 +54,8 @@ metadata:
5454
name: cluster
5555
spec:
5656
namespace: netobserv
57+
networkPolicy:
58+
enable: false
5759
consolePlugin:
5860
advanced:
5961
env:
@@ -139,15 +141,15 @@ From the operator repository:
139141
```bash
140142
helm package helm/
141143
index_path=/path/to/netobserv.github.io/static/helm
142-
mkdir -p $index_path/new && mv netobserv-operator-1.9.2.tgz $index_path/new && cd $index_path
144+
mkdir -p $index_path/new && mv netobserv-operator-1.10.0.tgz $index_path/new && cd $index_path
143145
helm repo index --merge index.yaml new/ --url https://netobserv.io/static/helm/
144146
mv new/* . && rmdir new
145147

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

149-
git add netobserv-operator-1.9.2.tgz index.yaml
150-
git commit -m "Publish helm 1.9.2-community"
151+
git add netobserv-operator-1.10.0.tgz index.yaml
152+
git commit -m "Publish helm 1.10.0-community"
151153
git push upstream HEAD:main
152154
```
153155

bundle/manifests/netobserv-operator.clusterserviceversion.yaml

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -252,8 +252,8 @@ metadata:
252252
capabilities: Seamless Upgrades
253253
categories: Monitoring, Networking, Observability
254254
console.openshift.io/plugins: '["netobserv-plugin"]'
255-
containerImage: quay.io/netobserv/network-observability-operator:1.9.2-community
256-
createdAt: "2025-10-15T13:45:09Z"
255+
containerImage: quay.io/netobserv/network-observability-operator:1.10.0-community
256+
createdAt: "2025-11-04T14:28:55Z"
257257
description: Network flows collector and monitoring solution
258258
operatorframework.io/initialization-resource: '{"apiVersion":"flows.netobserv.io/v1beta2",
259259
"kind":"FlowCollector","metadata":{"name":"cluster"},"spec": {}}'
@@ -268,7 +268,7 @@ metadata:
268268
operatorframework.io/arch.ppc64le: supported
269269
operatorframework.io/arch.s390x: supported
270270
operatorframework.io/os.linux: supported
271-
name: netobserv-operator.v1.9.2-community
271+
name: netobserv-operator.v1.10.0-community
272272
namespace: placeholder
273273
spec:
274274
apiservicedefinitions: {}
@@ -708,7 +708,7 @@ spec:
708708
709709
## Configuration
710710
711-
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.9.2-community/docs/FlowCollector.md), and a full sample file [there](https://github.com/netobserv/network-observability-operator/blob/1.9.2-community/config/samples/flows_v1beta2_flowcollector.yaml).
711+
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.10.0-community/docs/FlowCollector.md), and a full sample file [there](https://github.com/netobserv/network-observability-operator/blob/1.10.0-community/config/samples/flows_v1beta2_flowcollector.yaml).
712712
713713
To edit configuration in cluster, run:
714714
@@ -724,7 +724,7 @@ spec:
724724
725725
- Loki (`spec.loki`): configure here how to reach Loki. The default values match the Loki quick install paths mentioned above, but you might have to configure differently if you used another installation method. Make sure to disable it (`spec.loki.enable`) if you don't want to use Loki.
726726
727-
- Quick filters (`spec.consolePlugin.quickFilters`): configure preset filters to be displayed in the Console plugin. They offer a way to quickly switch from filters to others, such as showing / hiding pods network, or infrastructure network, or application network, etc. They can be tuned to reflect the different workloads running on your cluster. For a list of available filters, [check this page](https://github.com/netobserv/network-observability-operator/blob/1.9.2-community/docs/QuickFilters.md).
727+
- Quick filters (`spec.consolePlugin.quickFilters`): configure preset filters to be displayed in the Console plugin. They offer a way to quickly switch from filters to others, such as showing / hiding pods network, or infrastructure network, or application network, etc. They can be tuned to reflect the different workloads running on your cluster. For a list of available filters, [check this page](https://github.com/netobserv/network-observability-operator/blob/1.10.0-community/docs/QuickFilters.md).
728728
729729
- Kafka (`spec.deploymentModel: KAFKA` and `spec.kafka`): when enabled, integrates the flow collection pipeline with Kafka, by splitting ingestion from transformation (kube enrichment, derived metrics, ...). Kafka can provide better scalability, resiliency and high availability ([view more details](https://www.redhat.com/en/topics/integration/what-is-apache-kafka)). Assumes Kafka is already deployed and a topic is created.
730730
@@ -760,7 +760,7 @@ spec:
760760
This documentation includes:
761761
762762
- An [overview](https://github.com/netobserv/network-observability-operator#openshift-console) of the features, with screenshots
763-
- More information on [configuring metrics](https://github.com/netobserv/network-observability-operator/blob/1.9.2-community/docs/Metrics.md).
763+
- More information on [configuring metrics](https://github.com/netobserv/network-observability-operator/blob/1.10.0-community/docs/Metrics.md).
764764
- A [performance](https://github.com/netobserv/network-observability-operator#performance-fine-tuning) section, for fine-tuning
765765
- A [security](https://github.com/netobserv/network-observability-operator#securing-data-and-communications) section
766766
- An [F.A.Q.](https://github.com/netobserv/network-observability-operator#faq--troubleshooting) section
@@ -1067,21 +1067,21 @@ spec:
10671067
- /manager
10681068
env:
10691069
- name: RELATED_IMAGE_EBPF_AGENT
1070-
value: quay.io/netobserv/netobserv-ebpf-agent:v1.9.2-community
1070+
value: quay.io/netobserv/netobserv-ebpf-agent:v1.10.0-community
10711071
- name: RELATED_IMAGE_FLOWLOGS_PIPELINE
1072-
value: quay.io/netobserv/flowlogs-pipeline:v1.9.2-community
1072+
value: quay.io/netobserv/flowlogs-pipeline:v1.10.0-community
10731073
- name: RELATED_IMAGE_CONSOLE_PLUGIN
1074-
value: quay.io/netobserv/network-observability-console-plugin:v1.9.2-community
1074+
value: quay.io/netobserv/network-observability-console-plugin:v1.10.0-community
10751075
- name: RELATED_IMAGE_CONSOLE_PLUGIN_COMPAT
1076-
value: quay.io/netobserv/network-observability-console-plugin:v1.9.2-community-pf4
1076+
value: quay.io/netobserv/network-observability-console-plugin:v1.10.0-community-pf4
10771077
- name: DOWNSTREAM_DEPLOYMENT
10781078
value: "false"
10791079
- name: PROFILING_BIND_ADDRESS
10801080
- name: NAMESPACE
10811081
valueFrom:
10821082
fieldRef:
10831083
fieldPath: metadata.namespace
1084-
image: quay.io/netobserv/network-observability-operator:1.9.2-community
1084+
image: quay.io/netobserv/network-observability-operator:1.10.0-community
10851085
imagePullPolicy: Always
10861086
livenessProbe:
10871087
httpGet:
@@ -1213,15 +1213,15 @@ spec:
12131213
name: Red Hat
12141214
url: https://www.redhat.com
12151215
relatedImages:
1216-
- image: quay.io/netobserv/netobserv-ebpf-agent:v1.9.2-community
1216+
- image: quay.io/netobserv/netobserv-ebpf-agent:v1.10.0-community
12171217
name: ebpf-agent
1218-
- image: quay.io/netobserv/flowlogs-pipeline:v1.9.2-community
1218+
- image: quay.io/netobserv/flowlogs-pipeline:v1.10.0-community
12191219
name: flowlogs-pipeline
1220-
- image: quay.io/netobserv/network-observability-console-plugin:v1.9.2-community
1220+
- image: quay.io/netobserv/network-observability-console-plugin:v1.10.0-community
12211221
name: console-plugin
1222-
- image: quay.io/netobserv/network-observability-console-plugin:v1.9.2-community-pf4
1222+
- image: quay.io/netobserv/network-observability-console-plugin:v1.10.0-community-pf4
12231223
name: console-plugin-compat
1224-
version: 1.9.2-community
1224+
version: 1.10.0-community
12251225
webhookdefinitions:
12261226
- admissionReviewVersions:
12271227
- v1

config/descriptions/ocp.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ In that case, you can still get the Prometheus metrics or export raw flows to a
3838

3939
## Configuration
4040

41-
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.9.2-community/docs/FlowCollector.md), and a full sample file [there](https://github.com/netobserv/network-observability-operator/blob/1.9.2-community/config/samples/flows_v1beta2_flowcollector.yaml).
41+
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.10.0-community/docs/FlowCollector.md), and a full sample file [there](https://github.com/netobserv/network-observability-operator/blob/1.10.0-community/config/samples/flows_v1beta2_flowcollector.yaml).
4242

4343
To edit configuration in cluster, run:
4444

@@ -54,7 +54,7 @@ A couple of settings deserve special attention:
5454

5555
- Loki (`spec.loki`): configure here how to reach Loki. The default values match the Loki quick install paths mentioned above, but you might have to configure differently if you used another installation method. Make sure to disable it (`spec.loki.enable`) if you don't want to use Loki.
5656

57-
- Quick filters (`spec.consolePlugin.quickFilters`): configure preset filters to be displayed in the Console plugin. They offer a way to quickly switch from filters to others, such as showing / hiding pods network, or infrastructure network, or application network, etc. They can be tuned to reflect the different workloads running on your cluster. For a list of available filters, [check this page](https://github.com/netobserv/network-observability-operator/blob/1.9.2-community/docs/QuickFilters.md).
57+
- Quick filters (`spec.consolePlugin.quickFilters`): configure preset filters to be displayed in the Console plugin. They offer a way to quickly switch from filters to others, such as showing / hiding pods network, or infrastructure network, or application network, etc. They can be tuned to reflect the different workloads running on your cluster. For a list of available filters, [check this page](https://github.com/netobserv/network-observability-operator/blob/1.10.0-community/docs/QuickFilters.md).
5858

5959
- Kafka (`spec.deploymentModel: KAFKA` and `spec.kafka`): when enabled, integrates the flow collection pipeline with Kafka, by splitting ingestion from transformation (kube enrichment, derived metrics, ...). Kafka can provide better scalability, resiliency and high availability ([view more details](https://www.redhat.com/en/topics/integration/what-is-apache-kafka)). Assumes Kafka is already deployed and a topic is created.
6060

@@ -90,7 +90,7 @@ Please refer to the documentation on GitHub for more information.
9090
This documentation includes:
9191

9292
- An [overview](https://github.com/netobserv/network-observability-operator#openshift-console) of the features, with screenshots
93-
- More information on [configuring metrics](https://github.com/netobserv/network-observability-operator/blob/1.9.2-community/docs/Metrics.md).
93+
- More information on [configuring metrics](https://github.com/netobserv/network-observability-operator/blob/1.10.0-community/docs/Metrics.md).
9494
- A [performance](https://github.com/netobserv/network-observability-operator#performance-fine-tuning) section, for fine-tuning
9595
- A [security](https://github.com/netobserv/network-observability-operator#securing-data-and-communications) section
9696
- An [F.A.Q.](https://github.com/netobserv/network-observability-operator#faq--troubleshooting) section

config/descriptions/upstream.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ In that case, you can still get the Prometheus metrics or export raw flows to a
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.9.2-community/docs/FlowCollector.md), and a full sample file [there](https://github.com/netobserv/network-observability-operator/blob/1.9.2-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.10.0-community/docs/FlowCollector.md), and a full sample file [there](https://github.com/netobserv/network-observability-operator/blob/1.10.0-community/config/samples/flows_v1beta2_flowcollector.yaml).
4646

4747
To edit configuration in cluster, run:
4848

@@ -58,7 +58,7 @@ A couple of settings deserve special attention:
5858

5959
- Loki (`spec.loki`): configure here how to reach Loki. The default values match the Loki quick install paths mentioned above, but you might have to configure differently if you used another installation method. Make sure to disable it (`spec.loki.enable`) if you don't want to use Loki.
6060

61-
- Quick filters (`spec.consolePlugin.quickFilters`): configure preset filters to be displayed in the Console plugin. They offer a way to quickly switch from filters to others, such as showing / hiding pods network, or infrastructure network, or application network, etc. They can be tuned to reflect the different workloads running on your cluster. For a list of available filters, [check this page](https://github.com/netobserv/network-observability-operator/blob/1.9.2-community/docs/QuickFilters.md).
61+
- Quick filters (`spec.consolePlugin.quickFilters`): configure preset filters to be displayed in the Console plugin. They offer a way to quickly switch from filters to others, such as showing / hiding pods network, or infrastructure network, or application network, etc. They can be tuned to reflect the different workloads running on your cluster. For a list of available filters, [check this page](https://github.com/netobserv/network-observability-operator/blob/1.10.0-community/docs/QuickFilters.md).
6262

6363
- Kafka (`spec.deploymentModel: KAFKA` and `spec.kafka`): when enabled, integrates the flow collection pipeline with Kafka, by splitting ingestion from transformation (kube enrichment, derived metrics, ...). Kafka can provide better scalability, resiliency and high availability ([view more details](https://www.redhat.com/en/topics/integration/what-is-apache-kafka)). Assumes Kafka is already deployed and a topic is created.
6464

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

9696
- An [overview](https://github.com/netobserv/network-observability-operator#openshift-console) of the features, with screenshots
97-
- More information on [configuring metrics](https://github.com/netobserv/network-observability-operator/blob/1.9.2-community/docs/Metrics.md).
97+
- More information on [configuring metrics](https://github.com/netobserv/network-observability-operator/blob/1.10.0-community/docs/Metrics.md).
9898
- A [performance](https://github.com/netobserv/network-observability-operator#performance-fine-tuning) section, for fine-tuning
9999
- A [security](https://github.com/netobserv/network-observability-operator#securing-data-and-communications) section
100100
- 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.9.2-community
17+
newTag: 1.10.0-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
@@ -33,13 +33,13 @@ spec:
3333
- --profiling-bind-address=$(PROFILING_BIND_ADDRESS)
3434
env:
3535
- name: RELATED_IMAGE_EBPF_AGENT
36-
value: quay.io/netobserv/netobserv-ebpf-agent:v1.9.2-community
36+
value: quay.io/netobserv/netobserv-ebpf-agent:v1.10.0-community
3737
- name: RELATED_IMAGE_FLOWLOGS_PIPELINE
38-
value: quay.io/netobserv/flowlogs-pipeline:v1.9.2-community
38+
value: quay.io/netobserv/flowlogs-pipeline:v1.10.0-community
3939
- name: RELATED_IMAGE_CONSOLE_PLUGIN
40-
value: quay.io/netobserv/network-observability-console-plugin:v1.9.2-community
40+
value: quay.io/netobserv/network-observability-console-plugin:v1.10.0-community
4141
- name: RELATED_IMAGE_CONSOLE_PLUGIN_COMPAT
42-
value: quay.io/netobserv/network-observability-console-plugin:v1.9.2-community-pf4
42+
value: quay.io/netobserv/network-observability-console-plugin:v1.10.0-community-pf4
4343
- name: DOWNSTREAM_DEPLOYMENT
4444
value: "false"
4545
- name: PROFILING_BIND_ADDRESS

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.9.2
18+
version: 1.10.0
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.9.2-community
24+
appVersion: 1.10.0-community
2525

2626
keywords:
2727
- network observability

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.9.2-community
11+
version: v1.10.0-community
1212
flowlogsPipeline:
1313
image: quay.io/netobserv/flowlogs-pipeline
14-
version: v1.9.2-community
14+
version: v1.10.0-community
1515
consolePlugin:
1616
image: quay.io/netobserv/network-observability-console-plugin
17-
version: v1.9.2-community
17+
version: v1.10.0-community
1818
standaloneConsole:
1919
enable: false
2020
image: quay.io/netobserv/network-observability-standalone-frontend
21-
version: v1.9.2-community
21+
version: v1.10.0-community
2222
operator:
2323
image: quay.io/netobserv/network-observability-operator
24-
version: 1.9.2-community
24+
version: 1.10.0-community
2525
# Node affinity configuration for the operator deployment
2626
nodeAffinity: {}
2727
# Example:

0 commit comments

Comments
 (0)