Adding Confluent & KSQL

pull/330/head
Nathan Zender 5 years ago
parent 8673c0df2b
commit 76acb5f99d
No known key found for this signature in database
GPG Key ID: A012ACCAADC65EF2

@ -22,6 +22,7 @@
![generic provider](https://img.shields.io/badge/provider-Generic-orange?color=5f87bf) ![generic provider](https://img.shields.io/badge/provider-Generic-orange?color=5f87bf)
![programming provider](https://img.shields.io/badge/provider-Programming-orange?color=5f87bf) ![programming provider](https://img.shields.io/badge/provider-Programming-orange?color=5f87bf)
![saas provider](https://img.shields.io/badge/provider-SaaS-orange?color=5f87bf) ![saas provider](https://img.shields.io/badge/provider-SaaS-orange?color=5f87bf)
![confluent provider](https://img.shields.io/badge/provider-Confluent-orange?color=38cced)
<a href="https://www.buymeacoffee.com/mingrammer" target="_blank"><img src="https://www.buymeacoffee.com/assets/img/custom_images/orange_img.png" alt="Buy Me A Coffee" style="height: 41px !important;width: 174px !important;box-shadow: 0px 3px 2px 0px rgba(190, 190, 190, 0.5) !important;" ></a> <a href="https://www.buymeacoffee.com/mingrammer" target="_blank"><img src="https://www.buymeacoffee.com/assets/img/custom_images/orange_img.png" alt="Buy Me A Coffee" style="height: 41px !important;width: 174px !important;box-shadow: 0px 3px 2px 0px rgba(190, 190, 190, 0.5) !important;" ></a>

@ -4,7 +4,7 @@ set -e
app_root_dir="diagrams" app_root_dir="diagrams"
# NOTE: azure icon set is not latest version # NOTE: azure icon set is not latest version
providers=("onprem" "aws" "azure" "gcp" "firebase" "k8s" "alibabacloud" "oci" "programming" "saas" "elastic" "generic" "openstack" "outscale") providers=("onprem" "aws" "azure" "gcp" "firebase" "k8s" "alibabacloud" "oci" "programming" "saas" "elastic" "generic" "openstack" "outscale", "confluent")
if ! [ -x "$(command -v round)" ]; then if ! [ -x "$(command -v round)" ]; then
echo 'round is not installed' echo 'round is not installed'

@ -13,7 +13,7 @@ DIR_TEMPLATE = "templates"
PROVIDERS = ( PROVIDERS = (
"base", "onprem", "aws", "azure", "gcp", "firebase", "k8s", "alibabacloud", "oci", "programming", "saas", "elastic", "base", "onprem", "aws", "azure", "gcp", "firebase", "k8s", "alibabacloud", "oci", "programming", "saas", "elastic",
"generic", "openstack", "outscale") "generic", "openstack", "outscale", "confluent")
######################### #########################
# Resource Processing # # Resource Processing #
@ -41,6 +41,7 @@ FILE_PREFIXES = {
"outscale": (), "outscale": (),
"generic": (), "generic": (),
"openstack": (), "openstack": (),
"confluent": (),
} }
######################### #########################
@ -427,4 +428,5 @@ ALIASES = {
"Tripleo": "TripleO", "Tripleo": "TripleO",
} }
}, },
"confluent": {},
} }

@ -0,0 +1,19 @@
# This module is automatically generated by autogen.sh. DO NOT EDIT.
from . import _Confluent
class _Streaming(_Confluent):
_type = "streaming"
_icon_dir = "resources/confluent/streaming"
class Confluent(_Streaming):
_icon = "confluent.png"
class Ksql(_Streaming):
_icon = "ksql.png"
# Aliases

@ -0,0 +1,11 @@
---
id: confluent
title: Confluent
---
Node classes list of confluent provider.
## confluent.streaming
- **diagrams.confluent.streaming.Confluent**
- **diagrams.confluent.streaming.Ksql**

Binary file not shown.

After

Width:  |  Height:  |  Size: 34 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

@ -100,6 +100,9 @@ def cleaner_programming(f):
def cleaner_generic(f): def cleaner_generic(f):
return f.lower() return f.lower()
def cleaner_confluent(f):
return f.lower()
def cleaner_saas(f): def cleaner_saas(f):
return f.lower() return f.lower()
@ -132,6 +135,7 @@ cleaners = {
"outscale": cleaner_outscale, "outscale": cleaner_outscale,
"generic": cleaner_generic, "generic": cleaner_generic,
"openstack": cleaner_openstack, "openstack": cleaner_openstack,
"confluent": cleaner_confluent,
} }

@ -32,6 +32,9 @@
"nodes/azure": { "nodes/azure": {
"title": "Azure" "title": "Azure"
}, },
"nodes/confluent": {
"title": "Confluent"
},
"nodes/elastic": { "nodes/elastic": {
"title": "Elastic" "title": "Elastic"
}, },

@ -24,7 +24,8 @@
"nodes/elastic", "nodes/elastic",
"nodes/generic", "nodes/generic",
"nodes/programming", "nodes/programming",
"nodes/saas" "nodes/saas",
"nodes/confluent"
] ]
} }
} }
Loading…
Cancel
Save