You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To deploy Kafka and NiFi you can now apply the cluster configuration. You'll also need to deploy ZooKeeper, since both Kafka and NiFi depend on it. Run the following command in the console to deploy and configure all three services.
110
+
Since both Kafka and NiFi depend on Apache ZooKeeper, we will create a ZooKeeper cluster first.
111
111
112
112
[source,bash]
113
113
kubectl apply -f - <<EOF
@@ -117,7 +117,7 @@ kind: ZookeeperCluster
117
117
metadata:
118
118
name: simple-zk
119
119
spec:
120
-
version: 3.8.0-stackable0.1.0
120
+
version: 3.8.0-stackable0.7.1
121
121
servers:
122
122
roleGroups:
123
123
default:
@@ -126,6 +126,14 @@ spec:
126
126
kubernetes.io/os: linux
127
127
replicas: 1
128
128
config: {}
129
+
EOF
130
+
131
+
=== Deploying Kafka and NiFi
132
+
133
+
To deploy Kafka and NiFi you can now apply the cluster configuration. Run the following command in the console to deploy and configure all three services.
134
+
135
+
[source,bash]
136
+
kubectl apply -f - <<EOF
129
137
---
130
138
apiVersion: zookeeper.stackable.tech/v1alpha1
131
139
kind: ZookeeperZnode
@@ -374,13 +382,26 @@ Now that the Operator and Dependencies are set up, you can deploy the Druid clus
0 commit comments