Update existing GCP icons using updated official GCP icons:
see https://cloud.google.com/icons. This includes changes to GCP nodes
and examples shown on the website.
Note, generic icons are updated with the corresponding new generic icon,
except "ai-platform-data-labeling-service.png" since it now has its
own unique icon.
Closes#554.
refactor
* Added dir resources/onprem/registry, added Harbor Container Registry icon resources/onprem/registry/harbor.png from https://github.com/cncf/artwork/blob/master/projects/harbor/icon/color/harbor-icon-color.png. Ran convert resize command to resize original. Ran autogen.sh via Docker. Registry.py now exists in diagrams/onprem/ dir. docs/nodes/onprem.md auto-updated.
Co-authored-by: dryhn <dryhn>
* Updated docs to include images of nodes
* Updated docs to include images of nodes
* Added icons to docs
* Added black formatting
* Added back png that removed due to incorrect naming convention
* Revert yarn.lock changes
* docs: fix simple typo, clearning -> learning
There is a small typo in CONTRIBUTING.md.
Should read `learning` rather than `clearning`.
* Update CONTRIBUTING.md
1. Fix resource warning in the destructor
```
/Users/REDACTED/.asdf/installs/python/3.10.0/lib/python3.10/subprocess.py:1067: ResourceWarning: subprocess 46612 is still running
_warn("subprocess %s is still running" % self.pid,
ResourceWarning: Enable tracemalloc to get the object allocation traceback
```
2. Use preferred, non-legacy API per https://docs.python.org/3/library/subprocess.html#subprocess.call
3. Older call style no longer needed with Python 3.6+
* Basic support for C4 model primitives.
* Use the "rect" shape for nodes
With the record shape we used before, graphviz would trip over
edges that set constraint=False.
* Adopt C4 terminology: Rename Dependency -> Relationship
* Adopt C4 terminology: Rename type -> technology
* Extract a shared C4Node
This makes the code more DRY, but also allows to add company-
specific extensions more easily. One need we have is to slightly
adapt the terminology. At Spotify, we happen to call `Container`
a `Component` for example. This is now easier to implement on top
of the shared `C4Node`.
* Add "C4" shield to the README
* Document how to produce a C4 diagram
* feat(output): Generate dot file and support multi outformat.(#441)
* [fix] forget to clean the dot generated file.
* [fix] indentation
* [fix] Review + add more cases in unittest
* [fix] Add dot in the test