├── .gitignore ├── .mergify.yml ├── LICENSE ├── README.md ├── RELEASING.md ├── grafana-dashboard.json ├── prometheus-operator-resources └── service-monitor.yaml ├── setup.sh ├── teardown.sh ├── values-elasticsearch.yaml ├── values-fluentd.yaml ├── values-grafana.yaml ├── values-kibana.yaml ├── values-license.yaml ├── values-minio.yaml ├── values-prometheus-operator.yaml ├── values-vvp-add-logging.yaml ├── values-vvp-add-metrics.yaml ├── values-vvp.yaml ├── vvp-logo.png └── vvp-resources ├── deployment.yaml └── deployment_target.yaml /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | -------------------------------------------------------------------------------- /.mergify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ververica/ververica-platform-playground/HEAD/.mergify.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ververica/ververica-platform-playground/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ververica/ververica-platform-playground/HEAD/README.md -------------------------------------------------------------------------------- /RELEASING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ververica/ververica-platform-playground/HEAD/RELEASING.md -------------------------------------------------------------------------------- /grafana-dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ververica/ververica-platform-playground/HEAD/grafana-dashboard.json -------------------------------------------------------------------------------- /prometheus-operator-resources/service-monitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ververica/ververica-platform-playground/HEAD/prometheus-operator-resources/service-monitor.yaml -------------------------------------------------------------------------------- /setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ververica/ververica-platform-playground/HEAD/setup.sh -------------------------------------------------------------------------------- /teardown.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ververica/ververica-platform-playground/HEAD/teardown.sh -------------------------------------------------------------------------------- /values-elasticsearch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ververica/ververica-platform-playground/HEAD/values-elasticsearch.yaml -------------------------------------------------------------------------------- /values-fluentd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ververica/ververica-platform-playground/HEAD/values-fluentd.yaml -------------------------------------------------------------------------------- /values-grafana.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ververica/ververica-platform-playground/HEAD/values-grafana.yaml -------------------------------------------------------------------------------- /values-kibana.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ververica/ververica-platform-playground/HEAD/values-kibana.yaml -------------------------------------------------------------------------------- /values-license.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ververica/ververica-platform-playground/HEAD/values-license.yaml -------------------------------------------------------------------------------- /values-minio.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ververica/ververica-platform-playground/HEAD/values-minio.yaml -------------------------------------------------------------------------------- /values-prometheus-operator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ververica/ververica-platform-playground/HEAD/values-prometheus-operator.yaml -------------------------------------------------------------------------------- /values-vvp-add-logging.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ververica/ververica-platform-playground/HEAD/values-vvp-add-logging.yaml -------------------------------------------------------------------------------- /values-vvp-add-metrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ververica/ververica-platform-playground/HEAD/values-vvp-add-metrics.yaml -------------------------------------------------------------------------------- /values-vvp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ververica/ververica-platform-playground/HEAD/values-vvp.yaml -------------------------------------------------------------------------------- /vvp-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ververica/ververica-platform-playground/HEAD/vvp-logo.png -------------------------------------------------------------------------------- /vvp-resources/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ververica/ververica-platform-playground/HEAD/vvp-resources/deployment.yaml -------------------------------------------------------------------------------- /vvp-resources/deployment_target.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ververica/ververica-platform-playground/HEAD/vvp-resources/deployment_target.yaml --------------------------------------------------------------------------------