Skip to content

Commit a156949

Browse files
committed
Prepare release v1.6.1-crc2
1 parent 3f872bf commit a156949

File tree

7 files changed

+21
-21
lines changed

7 files changed

+21
-21
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,13 @@ REPO ?= quay.io/$(IMAGE_ORG)
2424

2525
# Component versions to use in bundle / release (do not use $VERSION for that)
2626
PREVIOUS_VERSION ?= v1.6.0-community
27-
BUNDLE_VERSION ?= 1.6.1-crc1
27+
BUNDLE_VERSION ?= 1.6.1-crc2
2828
# console plugin
2929
export PLG_VERSION ?= v1.6.1-crc0
3030
# flowlogs-pipeline
3131
export FLP_VERSION ?= v1.6.1-crc0
3232
# eBPF agent
33-
export BPF_VERSION ?= v1.6.1-crc1
33+
export BPF_VERSION ?= v1.6.1-crc2
3434

3535
# Allows building bundles in Mac replacing BSD 'sed' command by GNU-compatible 'gsed'
3636
ifeq (,$(shell which gsed 2>/dev/null))

RELEASE.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Edit the [Makefile](./Makefile) to update `PREVIOUS_VERSION`, `BUNDLE_VERSION`,
3636
make update-bundle
3737

3838
# Set desired operator version - CAREFUL, no leading "v" here
39-
version="1.6.1-crc1"
39+
version="1.6.1-crc2"
4040
vv=v$version
4141
test_branch=test-$vv
4242

@@ -84,7 +84,7 @@ Click on "Publish release".
8484
Before publishing, we should check that upgrading the operator from a previous version isn't broken. We can use `operator-sdk` for that:
8585

8686
```bash
87-
previous=v1.0.5
87+
previous=v1.6.0-community
8888
bin/operator-sdk run bundle quay.io/netobserv/network-observability-operator-bundle:$previous --timeout 5m
8989
PORT_FWD=false make deploy-loki deploy-sample-cr
9090
bin/operator-sdk run bundle-upgrade quay.io/netobserv/network-observability-operator-bundle:$vv --timeout 5m

bundle/manifests/netobserv-operator.clusterserviceversion.yaml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -430,7 +430,7 @@ metadata:
430430
capabilities: Seamless Upgrades
431431
categories: Monitoring, Networking
432432
console.openshift.io/plugins: '["netobserv-plugin"]'
433-
containerImage: quay.io/netobserv/network-observability-operator:1.6.1-crc1
433+
containerImage: quay.io/netobserv/network-observability-operator:1.6.1-crc2
434434
createdAt: ':created-at:'
435435
description: Network flows collector and monitoring solution
436436
operatorframework.io/initialization-resource: '{"apiVersion":"flows.netobserv.io/v1beta2",
@@ -446,7 +446,7 @@ metadata:
446446
operatorframework.io/arch.ppc64le: supported
447447
operatorframework.io/arch.s390x: supported
448448
operatorframework.io/os.linux: supported
449-
name: netobserv-operator.v1.6.1-crc1
449+
name: netobserv-operator.v1.6.1-crc2
450450
namespace: placeholder
451451
spec:
452452
apiservicedefinitions: {}
@@ -872,7 +872,7 @@ spec:
872872
873873
## Configuration
874874
875-
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.6.1-crc1/docs/FlowCollector.md), and a full sample file [there](https://github.com/netobserv/network-observability-operator/blob/1.6.1-crc1/config/samples/flows_v1beta2_flowcollector.yaml).
875+
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.6.1-crc2/docs/FlowCollector.md), and a full sample file [there](https://github.com/netobserv/network-observability-operator/blob/1.6.1-crc2/config/samples/flows_v1beta2_flowcollector.yaml).
876876
877877
To edit configuration in cluster, run:
878878
@@ -888,7 +888,7 @@ spec:
888888
889889
- 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.
890890
891-
- 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.6.1-crc1/docs/QuickFilters.md).
891+
- 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.6.1-crc2/docs/QuickFilters.md).
892892
893893
- 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.
894894
@@ -903,7 +903,7 @@ spec:
903903
This documentation includes:
904904
905905
- An [overview](https://github.com/netobserv/network-observability-operator#openshift-console) of the features, with screenshots
906-
- More information on [configuring metrics](https://github.com/netobserv/network-observability-operator/blob/1.6.1-crc1/docs/Metrics.md).
906+
- More information on [configuring metrics](https://github.com/netobserv/network-observability-operator/blob/1.6.1-crc2/docs/Metrics.md).
907907
- A [performance](https://github.com/netobserv/network-observability-operator#performance-fine-tuning) section, for fine-tuning
908908
- A [security](https://github.com/netobserv/network-observability-operator#securing-data-and-communications) section
909909
- An [F.A.Q.](https://github.com/netobserv/network-observability-operator#faq--troubleshooting) section
@@ -1157,15 +1157,15 @@ spec:
11571157
- /manager
11581158
env:
11591159
- name: RELATED_IMAGE_EBPF_AGENT
1160-
value: quay.io/netobserv/netobserv-ebpf-agent:v1.6.1-crc1
1160+
value: quay.io/netobserv/netobserv-ebpf-agent:v1.6.1-crc2
11611161
- name: RELATED_IMAGE_FLOWLOGS_PIPELINE
11621162
value: quay.io/netobserv/flowlogs-pipeline:v1.6.1-crc0
11631163
- name: RELATED_IMAGE_CONSOLE_PLUGIN
11641164
value: quay.io/netobserv/network-observability-console-plugin:v1.6.1-crc0
11651165
- name: DOWNSTREAM_DEPLOYMENT
11661166
value: "false"
11671167
- name: PROFILING_BIND_ADDRESS
1168-
image: quay.io/netobserv/network-observability-operator:1.6.1-crc1
1168+
image: quay.io/netobserv/network-observability-operator:1.6.1-crc2
11691169
imagePullPolicy: Always
11701170
livenessProbe:
11711171
httpGet:
@@ -1325,14 +1325,14 @@ spec:
13251325
name: Red Hat
13261326
url: https://www.redhat.com
13271327
relatedImages:
1328-
- image: quay.io/netobserv/netobserv-ebpf-agent:v1.6.1-crc1
1328+
- image: quay.io/netobserv/netobserv-ebpf-agent:v1.6.1-crc2
13291329
name: ebpf-agent
13301330
- image: quay.io/netobserv/flowlogs-pipeline:v1.6.1-crc0
13311331
name: flowlogs-pipeline
13321332
- image: quay.io/netobserv/network-observability-console-plugin:v1.6.1-crc0
13331333
name: console-plugin
13341334
replaces: netobserv-operator.v1.6.0-community
1335-
version: 1.6.1-crc1
1335+
version: 1.6.1-crc2
13361336
webhookdefinitions:
13371337
- admissionReviewVersions:
13381338
- 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.6.1-crc1/docs/FlowCollector.md), and a full sample file [there](https://github.com/netobserv/network-observability-operator/blob/1.6.1-crc1/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.6.1-crc2/docs/FlowCollector.md), and a full sample file [there](https://github.com/netobserv/network-observability-operator/blob/1.6.1-crc2/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.6.1-crc1/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.6.1-crc2/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

@@ -69,7 +69,7 @@ Please refer to the documentation on GitHub for more information.
6969
This documentation includes:
7070

7171
- An [overview](https://github.com/netobserv/network-observability-operator#openshift-console) of the features, with screenshots
72-
- More information on [configuring metrics](https://github.com/netobserv/network-observability-operator/blob/1.6.1-crc1/docs/Metrics.md).
72+
- More information on [configuring metrics](https://github.com/netobserv/network-observability-operator/blob/1.6.1-crc2/docs/Metrics.md).
7373
- A [performance](https://github.com/netobserv/network-observability-operator#performance-fine-tuning) section, for fine-tuning
7474
- A [security](https://github.com/netobserv/network-observability-operator#securing-data-and-communications) section
7575
- 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.6.1-crc1/docs/FlowCollector.md), and a full sample file [there](https://github.com/netobserv/network-observability-operator/blob/1.6.1-crc1/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.6.1-crc2/docs/FlowCollector.md), and a full sample file [there](https://github.com/netobserv/network-observability-operator/blob/1.6.1-crc2/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.6.1-crc1/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.6.1-crc2/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

@@ -73,7 +73,7 @@ Please refer to the documentation on GitHub for more information.
7373
This documentation includes:
7474

7575
- An [overview](https://github.com/netobserv/network-observability-operator#openshift-console) of the features, with screenshots
76-
- More information on [configuring metrics](https://github.com/netobserv/network-observability-operator/blob/1.6.1-crc1/docs/Metrics.md).
76+
- More information on [configuring metrics](https://github.com/netobserv/network-observability-operator/blob/1.6.1-crc2/docs/Metrics.md).
7777
- A [performance](https://github.com/netobserv/network-observability-operator#performance-fine-tuning) section, for fine-tuning
7878
- A [security](https://github.com/netobserv/network-observability-operator#securing-data-and-communications) section
7979
- 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
@@ -15,6 +15,6 @@ kind: Kustomization
1515
images:
1616
- name: controller
1717
newName: quay.io/netobserv/network-observability-operator
18-
newTag: 1.6.1-crc1
18+
newTag: 1.6.1-crc2
1919
commonLabels:
2020
app: netobserv-operator

config/manager/manager.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ spec:
3131
- --profiling-bind-address=$(PROFILING_BIND_ADDRESS)
3232
env:
3333
- name: RELATED_IMAGE_EBPF_AGENT
34-
value: quay.io/netobserv/netobserv-ebpf-agent:v1.6.1-crc1
34+
value: quay.io/netobserv/netobserv-ebpf-agent:v1.6.1-crc2
3535
- name: RELATED_IMAGE_FLOWLOGS_PIPELINE
3636
value: quay.io/netobserv/flowlogs-pipeline:v1.6.1-crc0
3737
- name: RELATED_IMAGE_CONSOLE_PLUGIN

0 commit comments

Comments
 (0)