This is an automated email from the ASF dual-hosted git repository.
bossenti pushed a change to branch
1259-verify-authentication-on-startup-of-python-client
in repository https://gitbox.apache.org/repos/asf/streampipes.git
from 81b1a4a2e [hotfix] Add echarts to shared modules
add f71bd9629 [#1254]: extend data lake measure endpoints get method to
process query parameters (#1349)
add d3ca321f5 1207 improve helm charts (#1344)
add 44017e066 [hotfix] Use try-with-resource way to fix the potential
InfluxDB connection leak in DataExplorerQueryV4 (#1350)
new 4067743d4 feature(#1259): implement version endpoint
new 8470f8967 chore: reformatting
new 7cf4c93f6 fix: typos
new d503def4a chore: remove now outdated `describe()` method
new 3092040c7 tmp
The 5 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
docker-compose.yml | 2 +-
.../cli/deploy/standalone/ui/docker-compose.yml | 2 +-
installer/compose/docker-compose.full.yml | 2 +-
installer/compose/docker-compose.nats.yml | 2 +-
installer/compose/docker-compose.yml | 2 +-
.../k8s/templates/core/backend-deployment.yaml | 27 +--
installer/k8s/templates/core/backend-pv-pvc.yaml | 42 ----
.../backend-pvc.yaml} | 22 +-
installer/k8s/templates/core/backend-service.yaml | 8 +-
installer/k8s/templates/core/ui-configmap.yaml | 51 +++++
.../templates/core/{ui.yaml => ui-deployment.yaml} | 28 ++-
installer/k8s/templates/core/ui-ingress.yaml | 25 ++-
installer/k8s/templates/core/ui-ingressroute.yaml | 46 +++++
installer/k8s/templates/core/ui-service.yaml | 10 +-
...nt.yaml => extensions-all-iiot-deployment.yaml} | 10 +-
...rvice.yaml => extensions-all-iiot-service.yaml} | 6 +-
.../pipeline-elements-all-flink-deployment.yaml | 37 ----
.../external/consul/consul-deployment.yaml | 16 +-
.../templates/external/consul/consul-pv-pvc.yaml | 22 +-
.../templates/external/consul/consul-service.yaml | 6 +-
.../external/couchdb/couchdb-deployment.yaml | 20 +-
.../templates/external/couchdb/couchdb-pv-pvc.yaml | 22 +-
.../external/couchdb/couchdb-service.yaml | 6 +-
.../external/flink/jobmanager-deployment.yaml | 46 -----
.../external/flink/jobmanager-service.yaml | 34 ----
.../external/flink/taskmanager-deployment.yaml | 43 ----
.../external/influxdb/influxdb-deployment.yaml | 34 ++--
.../templates/external/influxdb/influxdb-pvc.yaml | 20 +-
.../external/influxdb/influxdb-service.yaml | 4 +-
.../templates/external/influxdb/influxdb2-pvc.yaml | 21 +-
.../templates/external/nats/nats-deployment.yaml | 8 +-
.../k8s/templates/external/nats/nats-service.yaml | 2 +
installer/k8s/values.yaml | 94 +++++++--
streampipes-client-python/README.md | 2 +-
...introduction-to-streampipes-python-client.ipynb | 58 +++---
...cting-data-from-the-streampipes-data-lake.ipynb | 153 +++++++++++++-
...ive-data-from-the-streampipes-data-stream.ipynb | 12 ++
...ine-learning-on-a-streampipes-data-stream.ipynb | 13 +-
.../docs/img/tutorial-preparation.gif | Bin 0 -> 2569748 bytes
streampipes-client-python/setup.py | 2 +-
.../streampipes/client/client.py | 75 ++++---
.../streampipes/endpoint/api/__init__.py | 2 +
.../streampipes/endpoint/api/data_lake_measure.py | 224 ++++++++++++++++++++-
.../streampipes/endpoint/api/data_stream.py | 9 +-
.../streampipes/endpoint/api/version.py | 130 ++++++++++++
.../streampipes/endpoint/endpoint.py | 2 +-
.../streampipes/model/container/__init__.py | 2 +
.../container/{data_streams.py => versions.py} | 28 +--
.../streampipes/model/resource/__init__.py | 2 +
.../__init__.py => model/resource/version.py} | 29 ++-
.../tests/client/test_client.py | 49 -----
.../tests/client/test_data_lake_series.py | 2 +-
.../tests/client/test_endpoint.py | 2 +
.../{streampipes => tests/endpoint}/__init__.py | 0
.../tests/endpoint/test_data_lake_measure.py | 138 +++++++++++++
.../dataexplorer/v4/query/DataExplorerQueryV4.java | 66 +++---
ui/Dockerfile | 12 +-
ui/nginx_config/default.conf | 23 +--
ui/nginx_config/ssl.conf | 2 +-
59 files changed, 1124 insertions(+), 633 deletions(-)
delete mode 100644 installer/k8s/templates/core/backend-pv-pvc.yaml
rename
installer/k8s/templates/{extensions/pipeline-elements/pipeline-elements-all-flink-service.yaml
=> core/backend-pvc.yaml} (71%)
create mode 100644 installer/k8s/templates/core/ui-configmap.yaml
rename installer/k8s/templates/core/{ui.yaml => ui-deployment.yaml} (68%)
create mode 100644 installer/k8s/templates/core/ui-ingressroute.yaml
rename
installer/k8s/templates/extensions/pipeline-elements/{extensions-all-jvm-deployment.yaml
=> extensions-all-iiot-deployment.yaml} (86%)
rename
installer/k8s/templates/extensions/pipeline-elements/{extensions-all-jvm-service.yaml
=> extensions-all-iiot-service.yaml} (91%)
delete mode 100644
installer/k8s/templates/extensions/pipeline-elements/pipeline-elements-all-flink-deployment.yaml
delete mode 100644
installer/k8s/templates/external/flink/jobmanager-deployment.yaml
delete mode 100644
installer/k8s/templates/external/flink/jobmanager-service.yaml
delete mode 100644
installer/k8s/templates/external/flink/taskmanager-deployment.yaml
create mode 100644 streampipes-client-python/docs/img/tutorial-preparation.gif
create mode 100644
streampipes-client-python/streampipes/endpoint/api/version.py
copy streampipes-client-python/streampipes/model/container/{data_streams.py =>
versions.py} (69%)
copy streampipes-client-python/streampipes/{endpoint/__init__.py =>
model/resource/version.py} (55%)
copy streampipes-client-python/{streampipes => tests/endpoint}/__init__.py
(100%)
create mode 100644
streampipes-client-python/tests/endpoint/test_data_lake_measure.py