You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@streampipes.apache.org by wi...@apache.org on 2020/04/12 10:17:46 UTC

[incubator-streampipes-installer] branch dev updated: removed kafka rest

This is an automated email from the ASF dual-hosted git repository.

wiener pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/incubator-streampipes-installer.git


The following commit(s) were added to refs/heads/dev by this push:
     new f262ca9  removed kafka rest
f262ca9 is described below

commit f262ca94f8400307b070b3f5c6e125d15cb877ca
Author: Patrick Wiener <wi...@fzi.de>
AuthorDate: Sun Apr 12 12:17:27 2020 +0200

    removed kafka rest
---
 helm-chart/README.md                               |  6 +--
 .../kafka-rest/kafka-rest-deployment.yaml          | 49 ----------------------
 .../kafka-rest/kafka-rest-service.yaml             | 27 ------------
 helm-chart/values.yaml                             |  1 -
 4 files changed, 3 insertions(+), 80 deletions(-)

diff --git a/helm-chart/README.md b/helm-chart/README.md
index b9d8828..47b84cd 100644
--- a/helm-chart/README.md
+++ b/helm-chart/README.md
@@ -19,15 +19,15 @@
 # StreamPipes Helm Chart
 StreamPipes helm chart to deploy StreamPipes on Kubernetes.
 
-Currently: **StreamPipes v0.65.0**
+Currently: **StreamPipes v0.65.1-SNAPSHOT**
 
 ## Prerequisite
 
 Requires Helm (https://helm.sh/) and an active connection to a kubernetes cluster with a running tiller server.
 
 Tested with:
-* Kubernetes v1.14.8
-* Helm v2.16.1
+* Kubernetes v1.17.4
+* Helm v3.1.2
 
 ## Start StreamPipes
 
diff --git a/helm-chart/templates/mandatory-external-services/kafka-rest/kafka-rest-deployment.yaml b/helm-chart/templates/mandatory-external-services/kafka-rest/kafka-rest-deployment.yaml
deleted file mode 100644
index 78debb2..0000000
--- a/helm-chart/templates/mandatory-external-services/kafka-rest/kafka-rest-deployment.yaml
+++ /dev/null
@@ -1,49 +0,0 @@
-# Licensed to the Apache Software Foundation (ASF) under one or more
-# contributor license agreements.  See the NOTICE file distributed with
-# this work for additional information regarding copyright ownership.
-# The ASF licenses this file to You under the Apache License, Version 2.0
-# (the "License"); you may not use this file except in compliance with
-# the License.  You may obtain a copy of the License at
-#
-#    http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-
-apiVersion: apps/v1
-kind: Deployment
-metadata:
-  name: kafka-rest
-spec:
-  selector:
-    matchLabels:
-      app: kafka-rest
-  replicas: 1
-  template:
-    metadata:
-      labels:
-        app: kafka-rest
-    spec:
-      initContainers:
-        - name: init-wait-consul
-          image: alpine
-          command: ["sh", "-c", "for i in $(seq 1 300); do nc -zvw1 zookeeper 2181 && exit 0 || sleep 3; done; exit 1"]
-      containers:
-        - name: kafka-rest
-          image:  confluentinc/cp-kafka-rest:{{ .Values.external.kafkarestVersion }}
-          imagePullPolicy: {{ .Values.pullPolicy }}
-          # known issue:
-          # https://github.com/confluentinc/cp-docker-images/issues/286
-          command: ["bash", "-c", "unset KAFKA_REST_PORT; /etc/confluent/docker/run"]
-          ports:
-            - containerPort: 8082
-          env:
-            - name: KAFKA_REST_HOST_NAME
-              valueFrom:
-                fieldRef:
-                  fieldPath: status.podIP
-            - name: KAFKA_REST_ZOOKEEPER_CONNECT
-              value: zookeeper:2181
diff --git a/helm-chart/templates/mandatory-external-services/kafka-rest/kafka-rest-service.yaml b/helm-chart/templates/mandatory-external-services/kafka-rest/kafka-rest-service.yaml
deleted file mode 100644
index 598545e..0000000
--- a/helm-chart/templates/mandatory-external-services/kafka-rest/kafka-rest-service.yaml
+++ /dev/null
@@ -1,27 +0,0 @@
-# Licensed to the Apache Software Foundation (ASF) under one or more
-# contributor license agreements.  See the NOTICE file distributed with
-# this work for additional information regarding copyright ownership.
-# The ASF licenses this file to You under the Apache License, Version 2.0
-# (the "License"); you may not use this file except in compliance with
-# the License.  You may obtain a copy of the License at
-#
-#    http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-
-apiVersion: v1
-kind: Service
-metadata:
-  name: kafka-rest
-spec:
-  selector:
-    app: kafka-rest
-  ports:
-    - name: main
-      protocol: TCP
-      port: 8082
-      targetPort: 8082
diff --git a/helm-chart/values.yaml b/helm-chart/values.yaml
index 04e4982..f597967 100644
--- a/helm-chart/values.yaml
+++ b/helm-chart/values.yaml
@@ -27,7 +27,6 @@ external:
   couchdbVersion: 2.3.1
   flinkVersion: 1.9.1-scala_2.11
   kafkaVersion: 2.2.0
-  kafkarestVersion: 5.2.3
   zookeeperVersion: 3.4.13
   influxdbVersion: 1.7
   iotdbVersion: latest