Skip to content

Commit 4894191

Browse files
committed
Set Confluent to 6.0.0, Kafka to 6.0.0.
1 parent f3e3a4f commit 4894191

File tree

12 files changed

+20
-20
lines changed

12 files changed

+20
-20
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ You can find the documentation and instructions for all Confluent Cloud demos at
6565
| Demo | Local | Docker | Description
6666
| ------------------------------------------ | ----- | ------ | ---------------------------------------------------------------------------
6767
| [Avro](clients/README.md) | [Y](clients/README.md) | N | Client applications using Avro and Confluent Schema Registry <br><img src="https://www.confluent.io/wp-content/uploads/dwg_SchemaReg_howitworks.png" width="420">
68-
| [CP Demo](https://github.com/confluentinc/cp-demo) | N | [Y](https://github.com/confluentinc/cp-demo) | [Confluent Platform demo](https://docs.confluent.io/current/tutorials/cp-demo/docs/index.html?utm_source=github&utm_medium=demo&utm_campaign=ch.examples_type.community_content.top) (`cp-demo`) with a playbook for Kafka event streaming ETL deployments <br><img src="https://github.com/confluentinc/cp-demo/blob/6.0.x/docs/images/cp-demo-overview.jpg" width="420">
68+
| [CP Demo](https://github.com/confluentinc/cp-demo) | N | [Y](https://github.com/confluentinc/cp-demo) | [Confluent Platform demo](https://docs.confluent.io/current/tutorials/cp-demo/docs/index.html?utm_source=github&utm_medium=demo&utm_campaign=ch.examples_type.community_content.top) (`cp-demo`) with a playbook for Kafka event streaming ETL deployments <br><img src="https://github.com/confluentinc/cp-demo/blob/6.0.0-post/docs/images/cp-demo-overview.jpg" width="420">
6969
| [Kubernetes](kubernetes/README.md) | N | [Y](kubernetes/README.md) | Demonstrations of Confluent Platform deployments using the [Confluent Operator](https://docs.confluent.io/current/installation/operator/index.html?utm_source=github&utm_medium=demo&utm_campaign=ch.examples_type.community_content.top) <br><img src="kubernetes/gke-base/docs/images/operator.png" width="420">
7070
| [Multi Datacenter](multi-datacenter/README.md) | N | [Y](multi-datacenter/README.md) | Active-active multi-datacenter design with two instances of Confluent Replicator copying data bidirectionally between the datacenters <br><img src="https://docs.confluent.io/current/_images/mdc-level-1.png" width="420">
7171
| [Multi-Region Clusters](multiregion/README.md) | N | [Y](multiregion/README.md) | Multi-Region clusters (MRC) with follower fetching, observers, and replica placement<br><img src="multiregion/docs/images/multi-region-topic-replicas-v2.png" width="420">

ccloud/docs/config/backed-to-destination/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ version: '2'
33
services:
44

55
connect-destination:
6-
image: confluentinc/cp-enterprise-replicator:6.0.x-latest
6+
image: confluentinc/cp-enterprise-replicator:6.0.0
77
hostname: connect-destination
88
container_name: connect-destination
99
ports:

ccloud/docs/config/backed-to-origin/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ version: '2'
33
services:
44

55
connect-origin:
6-
image: confluentinc/cp-enterprise-replicator:6.0.x-latest
6+
image: confluentinc/cp-enterprise-replicator:6.0.0
77
hostname: connect-origin
88
container_name: connect-origin
99
ports:

clients/avro/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ http://maven.apache.org/xsd/maven-4.0.0.xsd">
77
<parent>
88
<groupId>io.confluent</groupId>
99
<artifactId>rest-utils-parent</artifactId>
10-
<version>6.0.0-SNAPSHOT</version>
10+
<version>6.0.0</version>
1111
</parent>
1212

1313
<artifactId>java-client-avro-examples</artifactId>

clients/cloud/java/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>io.confluent</groupId>
99
<artifactId>rest-utils-parent</artifactId>
10-
<version>6.0.0-SNAPSHOT</version>
10+
<version>6.0.0</version>
1111
</parent>
1212

1313
<artifactId>clients-example</artifactId>

clients/cloud/nodejs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "confluent-examples-nodejs",
33
"private": true,
4-
"version": "6.0.0-SNAPSHOT",
4+
"version": "6.0.0",
55
"engines": {
66
"node": ">=8.6"
77
},

connect-streams-pipeline/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ http://maven.apache.org/xsd/maven-4.0.0.xsd">
77
<parent>
88
<groupId>io.confluent</groupId>
99
<artifactId>rest-utils-parent</artifactId>
10-
<version>6.0.0-SNAPSHOT</version>
10+
<version>6.0.0</version>
1111
</parent>
1212

1313
<artifactId>connect-streams-examples</artifactId>

microservices-orders/docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ def setup(app):
5959
# The short X.Y version.
6060
version = '6.0'
6161
# The full version, including alpha/beta/rc tags.
62-
release = '6.0.0-SNAPSHOT'
62+
release = '6.0.0'
6363

6464
# The language for content autogenerated by Sphinx. Refer to documentation
6565
# for a list of supported languages.

multi-datacenter/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ http://maven.apache.org/xsd/maven-4.0.0.xsd">
77
<parent>
88
<groupId>io.confluent</groupId>
99
<artifactId>rest-utils-parent</artifactId>
10-
<version>6.0.0-SNAPSHOT</version>
10+
<version>6.0.0</version>
1111
</parent>
1212

1313
<artifactId>java-client-avro-examples</artifactId>

multiregion/docker-compose.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ version: '3'
1818

1919
services:
2020
zookeeper-west:
21-
image: confluentinc/cp-zookeeper:5.5.1
21+
image: confluentinc/cp-zookeeper:6.0.0
2222
hostname: zookeeper-west
2323
container_name: zookeeper-west
2424
networks:
@@ -31,7 +31,7 @@ services:
3131
ZOOKEEPER_SERVERS: zookeeper-west:2888:3888;zookeeper-central:2888:3888;zookeeper-east:2888:3888
3232

3333
zookeeper-central:
34-
image: confluentinc/cp-zookeeper:5.5.1
34+
image: confluentinc/cp-zookeeper:6.0.0
3535
hostname: zookeeper-central
3636
container_name: zookeeper-central
3737
networks:
@@ -46,7 +46,7 @@ services:
4646
- zookeeper-west
4747

4848
zookeeper-east:
49-
image: confluentinc/cp-zookeeper:5.5.1
49+
image: confluentinc/cp-zookeeper:6.0.0
5050
hostname: zookeeper-east
5151
container_name: zookeeper-east
5252
networks:
@@ -62,7 +62,7 @@ services:
6262
- zookeeper-central
6363

6464
broker-west-1:
65-
image: confluentinc/cp-server:5.5.1
65+
image: confluentinc/cp-server:6.0.0
6666
hostname: broker-west-1
6767
container_name: broker-west-1
6868
networks:
@@ -93,7 +93,7 @@ services:
9393
- zookeeper-east
9494

9595
broker-west-2:
96-
image: confluentinc/cp-server:5.5.1
96+
image: confluentinc/cp-server:6.0.0
9797
hostname: broker-west-2
9898
container_name: broker-west-2
9999
networks:
@@ -123,7 +123,7 @@ services:
123123
- broker-west-1
124124

125125
broker-east-3:
126-
image: confluentinc/cp-server:5.5.1
126+
image: confluentinc/cp-server:6.0.0
127127
hostname: broker-east-3
128128
container_name: broker-east-3
129129
networks:
@@ -156,7 +156,7 @@ services:
156156
- broker-west-2
157157

158158
broker-east-4:
159-
image: confluentinc/cp-server:5.5.1
159+
image: confluentinc/cp-server:6.0.0
160160
hostname: broker-east-4
161161
container_name: broker-east-4
162162
networks:

0 commit comments

Comments
 (0)