Browse Source

feat(orchestrator-py): add subject and audit

pull/2276/head
nprimo 6 months ago
parent
commit
214f418e98
  1. 168
      subjects/devops/orchestrator-py/README.md
  2. 233
      subjects/devops/orchestrator-py/audit/README.md
  3. BIN
      subjects/devops/orchestrator-py/pictures/Architecture.png
  4. BIN
      subjects/devops/orchestrator-py/pictures/Orchestrator.jpg
  5. 412
      subjects/devops/orchestrator-py/pictures/components-of-kubernetes.svg
  6. BIN
      subjects/devops/orchestrator-py/pictures/dockerhub-example.jpg
  7. BIN
      subjects/devops/orchestrator-py/pictures/suprise.png

168
subjects/devops/orchestrator-py/README.md

@ -0,0 +1,168 @@
## Orchestrator
![Orchestrator](pictures/Orchestrator.jpg)
### Objectives
In this project, You will deploy a microservices' architecture on Kubernetes,
you will gain experience with key technologies and concepts such as Kubernetes
architecture, deployments, services, ingresses, and API gateways. Additionally,
this project will provide you with an opportunity to practice DevOps skills
such as containerization, continuous integration, and deployment (CI/CD), and
infrastructure as code (*IaC*) using Kubernetes manifests. By completing this
project, you will have a solid understanding of microservices architecture and
the tools and techniques used to deploy and manage such systems using
Kubernetes.
### Tips
- Spend time on the theory before rushing into the practice.
- Read the official documentation.
- You must understand the K8s components.
> Any lack of understanding of the concepts of this project may affect the
> difficulty of future projects, take your time to understand all concepts.
> Be curious and never stop searching!
### Architecture
![Architecture](pictures/Architecture.png)
You have to deploy these microservices' architecture in a K3s cluster
consisting of the following components:
- `inventory-database container` is a PostgreSQL database server that contains
your inventory database, it must be accessible via port `5432`.
- `billing-database container` is a PostgreSQL database server that contains
your billing database, it must be accessible via port `5432`.
- `inventory-app container` is a Python server that contains your
inventory-app code running and connected to the inventory database and
accessible via port `8080`.
- `billing-app container` is a Python server that contains your billing-app
code running and connected to the billing database and consuming the messages
from the RabbitMQ queue, and it can be accessed via port `8080`.
- `RabbitMQ container` is a RabbitMQ server that contains the queue.
- `api-gateway-app container` is a Python server that contains your
API gateway code running and forwarding the requests to the other
services, and it's accessible via port `3000`.
> You can use the Dockerfiles you created in the `play-with-containers`
> project!
### The cluster
By using K3s in Vagrant you must create two virtual machines:
1. `Master`: the master in the K3s cluster.
2. `Agent`: an agent in the K3s cluster.
You must install `kubectl` on your machine to manage your cluster.
The nodes must be connected and available!
```console
$> kubectl get nodes -A NAME
STATUS ROLES AGE VERSION
<master-node> Ready <none> XdXh vX
<agent1-node> Ready <none> XdXh vX
$>
```
You must provide a `orchestrator.sh` script that run and create and manage the
infrastructure:
```console
$> ./orchestrator.sh create
cluster created
$> ./orchestrator.sh start
cluster started
$> ./orchestrator.sh stop cluster stopped $>
```
### Docker Hub
You will need to push the Docker images for each component to Docker Hub.
> You will use it in your Kubernetes manifests.
![Docker Hub example](pictures/dockerhub-example.jpg)
### Manifests
You should create a YAML Manifest that describes each component or resource of
your deployment.
### Secrets
You must store your passwords and credentials as a K8s secrets.
> It's forbidden to put your passwords and credentials in the YAML manifests,
> except the secret manifests!
### Python apps
The following Python applications must be deployed as a deployment, and they
must be scaled horizontally automatically, depending on CPU consumption.
- `api-gateway`: max replication: 3 min replication: 1 CPU percent trigger: 60%
- `inventory-app`: max replication: 3 min replication: 1 CPU percent trigger:
60%
The `billing-app` must be deployed as *StatefulSet*.
### Databases
Your databases must be deployed as *StatefulSet* in your K3s cluster, and you
must create volumes that enable containers to move across infrastructure
without losing the data.
### Documentation
You must push a `README.md` file containing full documentation of your solution
(prerequisites, configuration, setup, usage, ...).
### Bonus
If you complete the mandatory part successfully, and you still have free time,
you can implement anything that you feel deserves to be a bonus, for example:
- Deploy a Kubernetes Dashboard to monitor the cluster
- Deploy a dashboard for applications logs
- Kubernetes in cloud ?!
Challenge yourself!
### Submission and audit
You must submit the `README.md` file and all files used to create and delete
and manage your infrastructure: Vagrantfile, Dockerfiles, Manifests, ...
```console
.
├── Manifests
│ └── [...]
├── Scripts
│ └── [...]
├── Dockerfiles
│ └── [...]
└── Vagrantfile
```
If you decide to use a different structure for your project remember you should
be able to explain and justify your decision during the audit.
> In the audit you will be asked different questions about the concepts and the
> practice of this project, prepare yourself!
#### What's next?
In order to develop your knowledge and career as a DevOps engineer, we highly
recommend you to learn and practice more about Kubernetes and even get a
certification for Kubernetes.
[https://kubernetes.io/training/](https://kubernetes.io/training/)

233
subjects/devops/orchestrator-py/audit/README.md

@ -0,0 +1,233 @@
#### General
##### Check the Repo content
The repo contains a `README.md`, an `orchestrator.sh` script, a `Vagrantfile`
and all the additional files used to create, delete and manage the submitted
infrastructure.
###### Are all the required files present?
###### Does the project as a structure similar to the one below? If not, can the student provide a justification for the chosen project structure?
```console
.
├── Manifests
│ └── [...]
├── Scripts
│ └── [...]
├── Dockerfiles
│ └── [...]
└── Vagrantfile
```
##### Ask the following questions to the group or student
- What is container orchestration, and what are its benefits?
- What is Kubernetes, and what is its main role?
- What is K3s, and what is their main role?
###### Did the student reply correctly to the questions?
##### Check the Student Documentation
> There must be a `README.md` file with the project Documentation
###### Did the README.md file contains all the required information about the solution (prerequisites, configuration, setup, usage, ...)?
##### Check the docker images in the Docker Hub:
###### Are the docker images used in the YAML manifest uploaded from the student's Docker Hub account?
##### Check the cluster:
By using K3s in Vagrant two virtual machines must be created:
1. `Master`: the master in the K3s cluster.
2. `Agent`: an agent in the K3s cluster.
`kubectl` must be installed and configured in the learner machine to manage the cluster.
The nodes must be connected and available, try:
```console
$> kubectl get nodes -A
NAME STATUS ROLES AGE VERSION
<master-node> Ready <none> XdXh vX
<agent1-node> Ready <none> XdXh vX
$>
```
###### Is kubectl installed and configured in the learner's machine?
###### Was the cluster created by a Vagrantfile?
###### Does the cluster contain two nodes (*master* and *agent*)?
###### Are the nodes connected and ready for usage?
##### Check the student infrastructure:
The student must implement this architecture:
![architecture](../pictures/Architecture.png)
##### Run the student infrastructure:
```console
user:~$ ./orchestrator.sh create
cluster created
user:~$
```
###### Did the student provide an `orchestrator.sh` script that runs and creates and manages the infrastructure?
###### Did the student respect the architecture?
###### Did the infrastructure start correctly?
##### Verify the K8s Manifests:
###### Is there a YAML Manifest for each service?
###### Are credentials not existing in the YAML manifests, except the secret manifests?
##### Ask the following questions to the group or student
- What is infrastructure as code and what are the advantages of it?
- Explain what is a K8s manifest.
- Explain each K8s manifests.
###### Did the student reply correctly to the questions?
##### Check the secrets
```console
$> kubectl get secrets -o json
<...>
$>
```
###### Are all the used credentials and passwords present in the secrets?
##### Check all deployed resources:
```console
user:~$ kubectl get all
<...>
user:~$
```
- `inventory-database container` is a PostgreSQL database server that contains your inventory database, it must be accessible via port `5432`.
- `billing-database container` is a PostgreSQL database server that contains your billing database, it must be accessible via port `5432`.
- `inventory-app container` is a Python server that contains your inventory-app code running and connected to the inventory database and accessible via port `8080`.
- `billing-app container` is a Python server that contains your billing-app code running and connected to the billing database and consuming the messages from the RabbitMQ queue, and it can be accessed via port `8080`.
- `RabbitMQ container` is a RabbitMQ server that contains the queue.
- `api-gateway-app container` is a Python server that contains your api-gateway-app code running and forwarding the requests to the other services and it's accessible via port `3000`.
###### Are all the required applications deployed?
- Databases must be deployed as *StatefulSet*, and volumes that enable containers to move across infrastructure without losing the data must be created.
- The following Python applications must be deployed as a deployment, and they must be scaled horizontally automatically, depending on CPU consumption:
1. `api-gateway`:
max replication: 3
min replication: 1
CPU percent trigger: 60%
2. `inventory-app`:
max replication: 3
min replication: 1
CPU percent trigger: 60%
The `billing-app` must be deployed as *StatefulSet*.
###### Do all apps deploy with the correct configuration?
##### Ask the following questions to the group or student
- What is *StatefulSet* in K8s?
- What is *deployment* in K8s?
- What is the difference between *deployment* and *StatefulSet* in K8s?
- What is scaling, and why do we use it?
- What is a load balancer, and what is its role?
- Why we don't put the database as a deployment?
###### Did the student reply correctly to the questions?
##### Test the solution
#### Inventory API Endpoints
##### Open Postman and make a `POST` request to `http://[GATEWAY_IP]:[GATEWAY_PORT]/api/movies/` address with the following body as `Content-Type: application/json`:
```json
{
"title": "A new movie",
"description": "Very short description"
}
```
###### Can you confirm the response was the success code `200`?
##### In Postman make a `GET` request to `http://[GATEWAY_IP]:[GATEWAY_PORT]/api/movies/` address.
###### Can you confirm the response was success code `200` and the body of the response is in `json` with the information of the last added movie?
#### Billing API Endpoints
##### Open Postman and make a `POST` request to `http://[GATEWAY_IP]:[GATEWAY_PORT]/api/billing/` address with the following body as `Content-Type: application/json`:
```json
{
"user_id": "20",
"number_of_items": "99",
"total_amount": "250"
}
```
###### Can you confirm the response was success code `200`?
##### Stop the billing-app container
###### Can you confirm the `billing-app` container was correctly stopped?
##### Open Postman and make a `POST` request to `http://[GATEWAY_IP]:[GATEWAY_PORT]/api/billing/` address with the following body as `Content-Type: application/json`:
```json
{
"user_id": "22",
"number_of_items": "10",
"total_amount": "50"
}
```
###### Can you confirm the response was success code `200` even if the `billing_app` is not working?
#### K8s components
![suprise](../pictures/suprise.png)
![components-of-kubernetes](../pictures/components-of-kubernetes.svg)
In less than 15 minutes and with the help of Google the student must explain all Kubernetes components and their roles.
###### Can the learner explain the K8s components in less than 15 minutes?
#### Bonus
###### +Did the student add any optional bonus?
###### +Is this project an outstanding project?

BIN
subjects/devops/orchestrator-py/pictures/Architecture.png

diff.bin_not_shown

After

Width:  |  Height:  |  Size: 594 KiB

BIN
subjects/devops/orchestrator-py/pictures/Orchestrator.jpg

diff.bin_not_shown

After

Width:  |  Height:  |  Size: 180 KiB

412
subjects/devops/orchestrator-py/pictures/components-of-kubernetes.svg

@ -0,0 +1,412 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg id="svg277" width="331.31mm" height="154.79mm" version="1.1" viewBox="0 0 1252.2 585.04" xmlns="http://www.w3.org/2000/svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<title id="title3597">Kubernetes components</title>
<metadata id="metadata2">
<rdf:RDF>
<cc:Work rdf:about="Components of Kubernetes">
<dc:format>image/svg+xml</dc:format>
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
<dc:title>Kubernetes components</dc:title>
<dc:creator>
<cc:Agent>
<dc:title>Cloud Native Computing Foundation</dc:title>
</cc:Agent>
</dc:creator>
</cc:Work>
</rdf:RDF>
</metadata>
<defs id="defs4">
<marker id="Arrow2Mend" overflow="visible" orient="auto">
<path id="path1645" transform="scale(-.6)" d="m8.7186 4.0337-10.926-4.0177 10.926-4.0177c-1.7455 2.3721-1.7354 5.6175-6e-7 8.0354z" fill-rule="evenodd" stroke="#000" stroke-linejoin="round" stroke-width=".625"/>
</marker>
<style id="style2">.cls-1{font-size:254.54px;font-family:'Open Sans', sans-serif;}.cls-10,.cls-2,.cls-3,.cls-5,.cls-6,.cls-7,.cls-9{fill:none;}.cls-3,.cls-9{stroke:blue;}.cls-10,.cls-3{stroke-miterlimit:10;}.cls-4{fill-opacity:0;}.cls-4,.cls-8{fill-rule:evenodd;}.cls-5{stroke:#b14d9d;}.cls-5,.cls-6,.cls-7,.cls-9{stroke-linejoin:round;}.cls-5,.cls-6{stroke-width:2px;stroke-dasharray:8 6;}.cls-6{stroke:#009444;}.cls-10,.cls-7{stroke:#000;}.cls-8{fill:#e6e6e6;}.cls-11{fill:#326ce5;}.cls-12,.cls-22{font-size:12px;}.cls-12,.cls-13,.cls-15,.cls-16,.cls-17,.cls-18,.cls-19,.cls-20,.cls-21,.cls-23{fill:#fff;}.cls-12,.cls-15,.cls-16,.cls-17,.cls-18,.cls-19,.cls-20,.cls-21,.cls-22,.cls-23{font-family:'Open Sans', sans-serif;}.cls-14,.cls-15,.cls-16,.cls-17,.cls-18,.cls-19,.cls-20,.cls-21,.cls-23{isolation:isolate;}.cls-15{font-size:11.77px;}.cls-16{font-size:11.14px;}.cls-17{font-size:11.07px;}.cls-18{font-size:10.36px;}.cls-19{font-size:10.71px;}.cls-20{font-size:10.06px;}.cls-21{font-size:11.31px;}.cls-23{font-size:9.71px;}</style>
</defs>
<g id="layer3" transform="translate(-138.94 -55.356)">
<rect id="rect1045" x="154.05" y="70.474" width="956.24" height="544.24" ry="34.593" fill="#6d6d6d" fill-opacity=".43" opacity=".869" aria-labelledby="text274"/>
</g>
<text id="text6" class="cls-1" transform="scale(1.546 .64685)" x="306.19925" y="1883.1586" stroke-width="1.546"/>
<path id="path16" class="cls-4" d="m31.924 98.833a58 58 0 0 1 58-58h231.91a58 58 0 0 1 58 58v325.17a58 58 0 0 1-58 58h-231.92a58 58 0 0 1-58-58z"/>
<path id="path22" class="cls-4" d="m397.77 90.003h445.41"/>
<path id="path28" class="cls-8" d="m485.69 245.09-1 0.22-1.75 1.68-1.37 2.74-0.77 3.82v259.51l0.77 3.8 1.37 3 1.75 1.47 1 0.2h127.41l1.07-0.2 1.76-1.47 1.27-3 0.78-3.8v-259.51l-0.78-3.82-1.27-2.74-1.74-1.68-1.07-0.22z"/>
<path id="path30" class="cls-8" d="m646.39 245.09-1 0.22-1.76 1.68-1.36 2.74-0.78 3.82v259.51l0.78 3.8 1.36 3 1.76 1.47 1 0.2h127.41l1.07-0.2 1.75-1.47 1.28-3 0.77-3.8v-259.51l-0.77-3.82-1.28-2.74-1.75-1.68-1.07-0.22z"/>
<path id="path32" class="cls-8" d="m807.08 245.09-1 0.22-1.75 1.68-1.37 2.74-0.78 3.82v259.51l0.78 3.8 1.37 3 1.75 1.47 1 0.2h127.41l1.07-0.2 1.76-1.47 1.2699-3 0.78-3.8v-259.51l-0.78-3.82-1.2699-2.74-1.76-1.68-1.07-0.22z"/>
<path id="path46" class="cls-4" d="m364.66 245.27h176.52v60.85h176.52"/>
<path id="path58" class="cls-4" d="m307.86 148.15v59.85"/>
<path id="path60" class="cls-7" d="m299.16 202.69 0.58757-59.984" marker-end="url(#Arrow2Mend)" stroke-dasharray="4.5, 4.5" stroke-width="1.5"/>
<g id="g1766" transform="translate(-128.38 -37.947)">
<path id="path66" class="cls-4" d="m282 172.21 109.39 95.84"/>
<path id="path68" class="cls-7" d="m287.05 176.63 106.47 81.098"/>
<path id="path70" class="cls-10" d="m288.26 175.24-5-2 2.6 4.73z"/>
</g>
<g id="g1925" transform="translate(-127.95 -38.269)">
<path id="path74" class="cls-4" d="m280.16 398.2 106.68-89.49"/>
<path id="path76" class="cls-7" d="m285.33 393.89 113.97-88.512"/>
<path id="path78" class="cls-10" d="m284.16 392.48-2.7 4.67 5.08-1.84z"/>
</g>
<path id="path86" class="cls-4" d="m84.814 348.83h70.14v70.17h-70.14z"/>
<g id="g1930" transform="translate(-125.69 -31.966)">
<path id="path110" class="cls-4" d="m431.68 332.24v59.89"/>
<path id="path112" class="cls-7" d="m431.58 327 0.0987 58.471"/>
<path id="path116" class="cls-10" d="m429.83 385.42 1.85 5.07 1.85-5.07z"/>
</g>
<path id="path120" class="cls-4" d="m79.344 459.47h258v21.9h-258z"/>
<path id="path122" class="cls-4" d="m364.66 245.27h352.52"/>
<g id="g1244" transform="translate(-189.24 210.02)">
<g id="g3835">
<path id="path126-1" class="cls-11" d="m994.86-151.53-3.7358 0.22237-6.7823 1.9013-3.0687 1.8901-3.0798 2.1347-5.2702 5.4703-1.7344 3.0798-1.7123 3.5357-1.7456 7.3604-0.2224 4.0471v1.412l-3.5913 1.6566-5.915 4.7365-2.4016 3.3355-2.0013 3.569-2.4016 7.5828-0.2113 4.2584 0.2113 3.569 1.5343 6.6711 1.5344 3.0687 1.7678 3.0798 4.6031 4.9811 2.6128 1.9013 3.0799 1.6566 6.1374 1.6678 3.3355 0.22237h62.942l2.8463-0.22237 5.4702-1.4343 2.6351-1.6455 2.4128-1.4343 4.1694-4.2584 1.5344-2.6017 1.3342-2.8574 1.5121-5.9262v-3.3355l-0.2113-4.2917-2.4015-7.3382-2.2237-3.569-2.8464-2.8241-6.1374-4.2806-3.5134-0.94507 0.6449-3.1021 0.2335-3.3355-0.2335-3.569-2.4016-6.3931-2.2237-2.6128-2.4127-2.3682-5.915-2.6128-3.3357-0.24461h-2.4126l-4.603 1.6678-1.9791 1.1897-1.9681-3.0798-4.9921-5.4369-3.0465-2.1125-3.0686-1.8901-7.0159-1.9013z" fill="#326ce5" stroke-width="1.1118"/>
<path id="path3753" d="m989.51-127.57q-1.8828 0-2.9766 1.2578-1.0859 1.25-1.0859 3.4297 0 2.2422 1.0469 3.4688 1.0547 1.2188 3 1.2188 1.1953 0 2.7266-0.42968v1.1641q-1.1875 0.44531-2.9297 0.44531-2.5234 0-3.8984-1.5312-1.3672-1.5312-1.3672-4.3516 0-1.7656 0.65625-3.0938 0.66406-1.3281 1.9062-2.0469 1.25-0.71875 2.9375-0.71875 1.7969 0 3.1406 0.65625l-0.5625 1.1406q-1.2969-0.60938-2.5938-0.60938z" fill="#fff" style="font-variant-caps:normal;font-variant-east-asian:normal;font-variant-ligatures:normal;font-variant-numeric:normal"/>
<path id="path3755" d="m995.81-117.17h-1.2969v-12.156h1.2969z" fill="#fff" style="font-variant-caps:normal;font-variant-east-asian:normal;font-variant-ligatures:normal;font-variant-numeric:normal"/>
<path id="path3757" d="m1006-121.46q0 2.0938-1.0546 3.2734-1.0547 1.1719-2.9141 1.1719-1.1484 0-2.0391-0.53906-0.89063-0.53906-1.375-1.5469-0.48438-1.0078-0.48438-2.3594 0-2.0938 1.0469-3.2578 1.0469-1.1719 2.9063-1.1719 1.7969 0 2.8515 1.1953 1.0625 1.1953 1.0625 3.2344zm-6.5234 0q0 1.6406 0.6563 2.5 0.6562 0.85937 1.9296 0.85937 1.2735 0 1.9297-0.85156 0.6641-0.85937 0.6641-2.5078 0-1.6328-0.6641-2.4766-0.6562-0.85157-1.9453-0.85157-1.2734 0-1.9219 0.83594-0.6484 0.83594-0.6484 2.4922z" fill="#fff" style="font-variant-caps:normal;font-variant-east-asian:normal;font-variant-ligatures:normal;font-variant-numeric:normal"/>
<path id="path3759" d="m1009.5-125.73v5.5547q0 1.0469 0.4766 1.5625 0.4765 0.51562 1.4922 0.51562 1.3437 0 1.9609-0.73437 0.625-0.73438 0.625-2.3984v-4.5h1.2969v8.5625h-1.0703l-0.1875-1.1484h-0.07q-0.3985 0.63282-1.1094 0.96875-0.7031 0.33594-1.6094 0.33594-1.5625 0-2.3437-0.74219-0.7735-0.74218-0.7735-2.375v-5.6016z" fill="#fff" style="font-variant-caps:normal;font-variant-east-asian:normal;font-variant-ligatures:normal;font-variant-numeric:normal"/>
<path id="path3761" d="m1023.9-118.32h-0.07q-0.8985 1.3047-2.6875 1.3047-1.6797 0-2.6172-1.1484-0.9297-1.1484-0.9297-3.2656t0.9375-3.2891q0.9375-1.1719 2.6094-1.1719 1.7422 0 2.6719 1.2656h0.1015l-0.055-0.61719-0.031-0.60156v-3.4844h1.2969v12.156h-1.0547zm-2.5938 0.21875q1.3282 0 1.9219-0.71875 0.6016-0.72656 0.6016-2.3359v-0.27344q0-1.8203-0.6094-2.5938-0.6016-0.78125-1.9297-0.78125-1.1406 0-1.75 0.89062-0.6015 0.88282-0.6015 2.5 0 1.6406 0.6015 2.4766 0.6016 0.83593 1.7656 0.83593z" fill="#fff" style="font-variant-caps:normal;font-variant-east-asian:normal;font-variant-ligatures:normal;font-variant-numeric:normal"/>
<path id="path3763" d="m978.42-97.015q-0.83593 0-1.5312-0.30469-0.6875-0.3125-1.1562-0.95312h-0.0937q0.0937 0.75 0.0937 1.4219v3.5234h-1.2969v-12.406h1.0547l0.17968 1.1719h0.0625q0.5-0.70313 1.1641-1.0156 0.66406-0.3125 1.5234-0.3125 1.7031 0 2.625 1.1641 0.92969 1.1641 0.92969 3.2656 0 2.1094-0.94531 3.2812-0.9375 1.1641-2.6094 1.1641zm-0.1875-7.7734q-1.3125 0-1.8984 0.72657-0.58594 0.72656-0.60157 2.3125v0.28906q0 1.8047 0.60157 2.5859 0.60156 0.77344 1.9297 0.77344 1.1094 0 1.7344-0.89844 0.63281-0.89844 0.63281-2.4766 0-1.6016-0.63281-2.4531-0.625-0.85938-1.7656-0.85938z" fill="#fff" style="font-variant-caps:normal;font-variant-east-asian:normal;font-variant-ligatures:normal;font-variant-numeric:normal"/>
<path id="path3765" d="m988.16-105.89q0.57031 0 1.0234 0.0937l-0.17969 1.2031q-0.53125-0.11719-0.9375-0.11719-1.0391 0-1.7812 0.84375-0.73438 0.84375-0.73438 2.1016v4.5938h-1.2969v-8.5625h1.0703l0.14844 1.5859h0.0625q0.47656-0.83594 1.1484-1.2891 0.67187-0.45313 1.4766-0.45313z" fill="#fff" style="font-variant-caps:normal;font-variant-east-asian:normal;font-variant-ligatures:normal;font-variant-numeric:normal"/>
<path id="path3767" d="m998.17-101.46q0 2.0937-1.0547 3.2734-1.0547 1.1719-2.9141 1.1719-1.1484 0-2.0391-0.53906-0.89062-0.53906-1.375-1.5469-0.48437-1.0078-0.48437-2.3594 0-2.0938 1.0469-3.2578 1.0469-1.1719 2.9062-1.1719 1.7969 0 2.8516 1.1953 1.0625 1.1953 1.0625 3.2344zm-6.5234 0q0 1.6406 0.65625 2.5t1.9297 0.85938q1.2734 0 1.9297-0.85156 0.66406-0.85938 0.66406-2.5078 0-1.6328-0.66406-2.4766-0.65625-0.85157-1.9453-0.85157-1.2734 0-1.9219 0.83594-0.64843 0.83594-0.64843 2.4922z" fill="#fff" style="font-variant-caps:normal;font-variant-east-asian:normal;font-variant-ligatures:normal;font-variant-numeric:normal"/>
<path id="path3769" d="m1002.3-97.172-3.25-8.5625h1.3906l1.8438 5.0781q0.625 1.7812 0.7343 2.3125h0.062q0.086-0.41406 0.5391-1.7109 0.4609-1.3047 2.0547-5.6797h1.3906l-3.25 8.5625z" fill="#fff" style="font-variant-caps:normal;font-variant-east-asian:normal;font-variant-ligatures:normal;font-variant-numeric:normal"/>
<path id="path3771" d="m1009.8-97.172h-1.2969v-8.5625h1.2969zm-1.4062-10.883q0-0.44531 0.2187-0.64844 0.2188-0.21094 0.5469-0.21094 0.3125 0 0.5391 0.21094 0.2265 0.21094 0.2265 0.64844t-0.2265 0.65625q-0.2266 0.21094-0.5391 0.21094-0.3281 0-0.5469-0.21094-0.2187-0.21875-0.2187-0.65625z" fill="#fff" style="font-variant-caps:normal;font-variant-east-asian:normal;font-variant-ligatures:normal;font-variant-numeric:normal"/>
<path id="path3773" d="m1018.4-98.32h-0.07q-0.8985 1.3047-2.6875 1.3047-1.6797 0-2.6172-1.1484-0.9297-1.1484-0.9297-3.2656 0-2.1172 0.9375-3.2891 0.9375-1.1719 2.6094-1.1719 1.7421 0 2.6718 1.2656h0.1016l-0.055-0.61719-0.031-0.60156v-3.4844h1.2968v12.156h-1.0547zm-2.5938 0.21875q1.3281 0 1.9219-0.71875 0.6016-0.72656 0.6016-2.3359v-0.27344q0-1.8203-0.6094-2.5938-0.6016-0.78125-1.9297-0.78125-1.1406 0-1.75 0.89062-0.6016 0.88282-0.6016 2.5 0 1.6406 0.6016 2.4766 0.6016 0.83594 1.7656 0.83594z" fill="#fff" style="font-variant-caps:normal;font-variant-east-asian:normal;font-variant-ligatures:normal;font-variant-numeric:normal"/>
<path id="path3775" d="m1026-97.015q-1.8984 0-3-1.1562-1.0937-1.1562-1.0937-3.2109 0-2.0703 1.0156-3.2891 1.0234-1.2188 2.7422-1.2188 1.6094 0 2.5469 1.0625 0.9375 1.0547 0.9375 2.7891v0.82032h-5.8985q0.039 1.5078 0.7578 2.2891 0.7266 0.78125 2.0391 0.78125 1.3828 0 2.7344-0.57812v1.1562q-0.6875 0.29688-1.3047 0.42188-0.6094 0.13281-1.4766 0.13281zm-0.3515-7.7891q-1.0313 0-1.6485 0.67187-0.6093 0.67188-0.7187 1.8594h4.4765q0-1.2266-0.5468-1.875-0.5469-0.65625-1.5625-0.65625z" fill="#fff" style="font-variant-caps:normal;font-variant-east-asian:normal;font-variant-ligatures:normal;font-variant-numeric:normal"/>
<path id="path3777" d="m1035.2-105.89q0.5704 0 1.0235 0.0937l-0.1797 1.2031q-0.5313-0.11719-0.9375-0.11719-1.0391 0-1.7813 0.84375-0.7343 0.84375-0.7343 2.1016v4.5938h-1.2969v-8.5625h1.0703l0.1484 1.5859h0.062q0.4766-0.83594 1.1485-1.2891 0.6719-0.45313 1.4765-0.45313z" fill="#fff" style="font-variant-caps:normal;font-variant-east-asian:normal;font-variant-ligatures:normal;font-variant-numeric:normal"/>
<path id="path3779" d="m1001.4-77.172-1.4218-3.6328h-4.5781l-1.4062 3.6328h-1.3438l4.5156-11.469h1.1172l4.4922 11.469zm-1.8359-4.8281-1.3281-3.5391q-0.25782-0.67188-0.53125-1.6484-0.17188 0.75-0.49219 1.6484l-1.3438 3.5391z" fill="#fff" style="font-variant-caps:normal;font-variant-east-asian:normal;font-variant-ligatures:normal;font-variant-numeric:normal"/>
<path id="path3781" d="m1011.6-85.265q0 1.7344-1.1875 2.6719-1.1796 0.92969-3.3828 0.92969h-1.3437v4.4922h-1.3281v-11.422h2.9609q4.2812 0 4.2812 3.3281zm-5.914 2.4609h1.1953q1.7656 0 2.5547-0.57031 0.789-0.57031 0.789-1.8281 0-1.1328-0.7421-1.6875-0.7422-0.55469-2.3125-0.55469h-1.4844z" fill="#fff" style="font-variant-caps:normal;font-variant-east-asian:normal;font-variant-ligatures:normal;font-variant-numeric:normal"/>
<path id="path3783" d="m1014-77.172v-11.422h1.3281v11.422z" fill="#fff" style="font-variant-caps:normal;font-variant-east-asian:normal;font-variant-ligatures:normal;font-variant-numeric:normal"/>
</g>
</g>
<g id="layer1-3" transform="translate(-279.71 93.814)" data-name="layer1">
<g id="g70-3" data-name="g70">
<path id="path3055-3" class="cls-11" d="m1150.2 328.44a4.79 4.79 0 0 0-1.82 0.46l-24.77 11.83a4.71 4.71 0 0 0-2.56 3.19l-6.1 26.59a4.66 4.66 0 0 0 0.65 3.6 3.28 3.28 0 0 0 0.27 0.38l17.08 21.32a4.75 4.75 0 0 0 3.71 1.76h27.5a4.74 4.74 0 0 0 3.7-1.77l17.14-21.32a4.68 4.68 0 0 0 0.92-4l-6.13-26.58a4.69 4.69 0 0 0-2.56-3.19l-24.77-11.83a4.82 4.82 0 0 0-2.26-0.44z" data-name="path3055"/>
<path id="path3054-2-9-3" class="cls-13" d="m1150.2 326.51a5.09 5.09 0 0 0-1.91 0.49l-26.15 12.49a5 5 0 0 0-2.71 3.37l-6.46 28.07a4.9 4.9 0 0 0 0.68 3.8c0.09 0.14 0.18 0.27 0.28 0.4l18.1 22.5a5 5 0 0 0 3.91 1.87h29a5 5 0 0 0 3.91-1.86l18.1-22.51a5 5 0 0 0 1-4.2l-6.46-28.07a5 5 0 0 0-2.7-3.36l-26.16-12.5a5.07 5.07 0 0 0-2.43-0.49zm0 1.93a4.76 4.76 0 0 1 2.29 0.46l24.78 11.83a4.69 4.69 0 0 1 2.56 3.19l6.13 26.59a4.66 4.66 0 0 1-0.92 4l-17.07 21.29a4.74 4.74 0 0 1-3.7 1.77h-27.5a4.76 4.76 0 0 1-3.71-1.77l-17.14-21.32a3.28 3.28 0 0 1-0.27-0.38 4.66 4.66 0 0 1-0.65-3.6l6.12-26.59a4.69 4.69 0 0 1 2.56-3.18l24.77-11.84a4.79 4.79 0 0 1 1.82-0.46z" data-name="path3054-2-9"/>
</g>
<g id="text2066-3" class="cls-14" data-name="text2066">
<text id="text149" class="cls-15" transform="translate(1130.9 391.73)">k-proxy</text>
</g>
<path id="path1994-3" class="cls-13" d="m1150.4 338.69c-0.58 0-16.66 7.89-16.87 8.29-0.51 1-4.17 17.86-4 18.23 0.12 0.21 2.76 3.55 5.85 7.42l5.63 7h18.53l5.9-7.37 5.89-7.36-2.06-9c-1.13-5-2.15-9.13-2.25-9.23-0.29-0.28-16.36-8-16.67-8zm0.82 3.95 3.79 1.1-3.79 1.1-3.79-1.1zm-3.79 1.52 3.55 1.06v4.93l-3.53-2zm7.58 0v4l-3.53 2v-4.93zm-9.17 6.73 3.79 1.1-3.79 1.1-3.79-1.1zm9.22 0 3.79 1.1-3.79 1.1-3.8-1.1zm-13 1.52 3.55 1.06v4.93l-3.54-1.95zm7.58 0v4l-3.53 1.95v-4.93zm1.63 0 3.55 1.06v4.93l-3.53-1.95zm7.59 0v4l-3.53 1.95v-4.93zm-14.39 6.32c1.13 0 0.25 1.18 1.54 1.79s1.64-1 2.5 0.26-0.76 0.93-0.64 2.44 1.67 0.94 1 2.31-1.19-0.2-2.43 0.66 0 1.92-1.48 2-0.43-1.13-1.79-1.78-1.65 1-2.51-0.27 0.76-0.93 0.64-2.43-1.67-0.94-1-2.31 1.19 0.2 2.43-0.66 0-1.92 1.49-2zm9.74 1.52c2 0.05 0.06 1.95 1.9 2.77s2-1.89 3.34-0.43-1.34 1.42-0.62 3.31 2.72 0 2.66 2.05-2 0.06-2.77 1.9 1.89 1.95 0.43 3.34-1.42-1.34-3.3-0.62 0 2.72-2.06 2.66-0.06-2-1.9-2.77-2 1.89-3.34 0.43 1.34-1.42 0.62-3.31-2.72 0-2.66-2.05 2-0.06 2.77-1.9-1.89-1.95-0.43-3.34 1.42 1.34 3.31 0.62 0.02-2.72 2.04-2.66zm-9.65 1.05a2.22 2.22 0 1 0 2.22 2.22 2.22 2.22 0 0 0-2.23-2.22zm9.44 2a4.43 4.43 0 1 0 4.43 4.43 4.43 4.43 0 0 0-4.45-4.42z" data-name="path1994"/>
</g>
<g id="layer1-6" transform="translate(-279.73 93.814)" data-name="layer1">
<g id="g70-6" data-name="g70">
<path id="path3055-6" class="cls-11" d="m1150.3 239.22a4.45 4.45 0 0 0-1.72 0.43l-23.45 11.21a4.46 4.46 0 0 0-2.43 3l-5.78 25.17a4.45 4.45 0 0 0 0.6 3.41c0.08 0.12 0.17 0.24 0.26 0.35l16.26 20.21a4.53 4.53 0 0 0 3.51 1.67h26a4.46 4.46 0 0 0 3.49-1.67l16.23-20.18a4.42 4.42 0 0 0 0.86-3.77l-5.79-25.17a4.46 4.46 0 0 0-2.43-3l-23.45-11.2a4.56 4.56 0 0 0-2.16-0.46z" data-name="path3055"/>
<path id="path3054-2-9-6" class="cls-13" d="m1150.2 237.39a4.71 4.71 0 0 0-1.81 0.47l-24.76 11.82a4.72 4.72 0 0 0-2.57 3.19l-6.1 26.57a4.62 4.62 0 0 0 0.64 3.6 3.28 3.28 0 0 0 0.27 0.38l17.13 21.31a4.78 4.78 0 0 0 3.71 1.76h27.48a4.74 4.74 0 0 0 3.7-1.77l17.13-21.31a4.66 4.66 0 0 0 0.92-4l-6.12-26.58a4.69 4.69 0 0 0-2.56-3.18l-24.76-11.83a4.82 4.82 0 0 0-2.3-0.43zm0 1.83a4.56 4.56 0 0 1 2.18 0.43l23.45 11.2a4.46 4.46 0 0 1 2.43 3l5.79 25.17a4.42 4.42 0 0 1-0.86 3.77l-16.24 20.21a4.5 4.5 0 0 1-3.51 1.68h-26a4.49 4.49 0 0 1-3.49-1.68l-16.23-20.19c-0.09-0.11-0.18-0.23-0.26-0.35a4.41 4.41 0 0 1-0.6-3.41l5.78-25.17a4.48 4.48 0 0 1 2.43-3l23.45-11.21a4.45 4.45 0 0 1 1.72-0.43z" data-name="path3054-2-9"/>
</g>
<g id="text2066-6" class="cls-14" data-name="text2066">
<text id="text173" class="cls-16" transform="translate(1132.2 299.14)">kubelet</text>
</g>
<path id="path1994-6" class="cls-13" d="m1150.4 248.92c-0.54 0-15.77 7.47-16 7.85-0.48 0.93-4 16.91-3.74 17.25s2.61 3.37 5.54 7l5.33 6.67h17.55l11.16-14-2-8.56c-1.08-4.71-2-8.64-2.14-8.74-0.27-0.26-15.48-7.55-15.78-7.56zm0.78 3.74 3.59 1-3.59 1-3.59-1zm-3.59 1.44 3.36 1v4.67l-3.34-1.85zm7.18 0v3.82l-3.35 1.85v-4.67zm-8.68 6.38 3.59 1-3.59 1-3.59-1zm8.72 0 3.59 1-3.59 1-3.59-1zm-12.31 1.43 3.36 1v4.68l-3.35-1.86zm7.18 0v3.82l-3.34 1.86v-4.68zm1.54 0 3.36 1v4.68l-3.35-1.86zm7.18 0v3.82l-3.34 1.86v-4.68zm-13.62 6c1.07 0 0.24 1.11 1.45 1.69s1.57-0.93 2.38 0.25-0.73 0.88-0.61 2.31 1.58 0.89 1 2.18-1.13-0.19-2.31 0.62 0 1.82-1.4 1.94-0.4-1.07-1.7-1.69-1.56 0.93-2.37-0.25 0.73-0.88 0.61-2.31-1.58-0.88-1-2.18 1.13 0.19 2.31-0.62 0-1.82 1.4-1.94zm9.22 1.43c1.91 0.05 0.06 1.85 1.8 2.63s1.85-1.8 3.16-0.41-1.26 1.34-0.58 3.13 2.57 0 2.52 1.94-1.85 0.06-2.63 1.8 1.8 1.85 0.41 3.16-1.35-1.26-3.13-0.58 0 2.57-2 2.52 0-1.85-1.8-2.63-1.84 1.8-3.15 0.41 1.26-1.34 0.58-3.13-2.57 0-2.52-1.94 1.84-0.06 2.62-1.81-1.79-1.84-0.4-3.15 1.34 1.26 3.13 0.58 0.08-2.58 1.97-2.53zm-9.14 1a2.1 2.1 0 1 0 2.1 2.1 2.1 2.1 0 0 0-2.1-2.11zm8.94 1.9a4.2 4.2 0 1 0 4.2 4.19 4.2 4.2 0 0 0-4.2-4.2z" data-name="path1994"/>
</g>
<g id="g1954" transform="translate(-123.82 -40.997)">
<path id="path108" class="cls-4" d="m380.16 400h70v70.14h-70z"/>
<g id="layer1-7" transform="translate(-31.839)" data-name="layer1">
<g id="g70-7" data-name="g70">
<path id="path3055-7" class="cls-11" d="m446.67 398.6a4.4 4.4 0 0 0-1.67 0.4l-23.39 11.14a4.41 4.41 0 0 0-2.41 3l-5.77 25a4.4 4.4 0 0 0 0.6 3.39l0.26 0.36 16.14 20.11a4.5 4.5 0 0 0 3.5 1.66h25.95a4.5 4.5 0 0 0 3.5-1.66l16.18-20.06a4.38 4.38 0 0 0 0.86-3.74l-5.78-25a4.41 4.41 0 0 0-2.42-3l-23.38-11.2a4.52 4.52 0 0 0-2.17-0.4z" data-name="path3055"/>
<path id="path3054-2-9-7" class="cls-13" d="m446.66 396.79a4.75 4.75 0 0 0-1.81 0.46l-24.68 11.75a4.66 4.66 0 0 0-2.56 3.16l-6.09 26.41a4.66 4.66 0 0 0 0.64 3.58l0.27 0.37 17.09 21.17a4.72 4.72 0 0 0 3.69 1.75h27.4a4.78 4.78 0 0 0 3.69-1.75l17.07-21.18a4.62 4.62 0 0 0 0.92-3.95l-6.1-26.4a4.69 4.69 0 0 0-2.55-3.17l-24.64-11.75a4.75 4.75 0 0 0-2.34-0.45zm0 1.81a4.52 4.52 0 0 1 2.17 0.43l23.38 11.13a4.41 4.41 0 0 1 2.42 3l5.78 25a4.38 4.38 0 0 1-0.86 3.74l-16.17 20.1a4.5 4.5 0 0 1-3.5 1.66h-25.95a4.5 4.5 0 0 1-3.5-1.66l-16.18-20.05c-0.09-0.12-0.18-0.23-0.26-0.36a4.38 4.38 0 0 1-0.6-3.38l5.76-25a4.45 4.45 0 0 1 2.42-3l23.43-11.21a4.59 4.59 0 0 1 1.71-0.43z" data-name="path3054-2-9"/>
</g>
<g id="text2066-7" class="cls-14" data-name="text2066">
<text id="text181" class="cls-17" transform="translate(432.3,458.13)">sched</text>
</g>
<path id="path1984" class="cls-13" d="m446.83 409.62c-0.54 0-15.73 7.42-15.92 7.81-0.48 0.91-3.94 16.79-3.73 17.14s2.6 3.34 5.53 7l5.31 6.63h17.49l5.56-6.92 5.57-6.93-1.95-8.51c-1.07-4.68-2-8.59-2.12-8.68-0.28-0.26-15.44-7.51-15.74-7.52zm0.93 7.78c0.74 0 0.81 1.15 2.39 1.26 2.05 0.16 1.83-1.75 3.4-0.42s-0.35 1.42 0.14 3.41 2.24 1.2 1.46 3.1-1.47 0.11-3.22 1.19-0.45 2.49-2.51 2.34-0.55-1.36-2.12-2.69-2.52 0.34-3-1.65 1.13-0.95 1.91-2.84-1.11-2.28 0.64-3.36a2.41 2.41 0 0 1 0.56-0.28 1 1 0 0 1 0.36-0.06zm2.06 2.25a2.88 2.88 0 0 0-0.88 0.12 3 3 0 1 0 0.88-0.12zm-11.82 5.1a2.68 2.68 0 0 1 0.59 0.11c1.89 0.58 0 1.57 1.31 3s2.48-0.4 2.92 1.52-1.38 0.76-2 2.64 1.58 1.94 0.13 3.28-1.35-0.81-3.27-0.36-0.9 2.33-2.79 1.75 0-1.57-1.31-3-2.48 0.4-2.92-1.52 1.38-0.76 2-2.64-1.58-1.94-0.14-3.28 1.35 0.81 3.28 0.37c1.68-0.39 1.1-1.89 2.19-1.87zm14.05 2.06a1.87 1.87 0 0 1 0.67 0.16c2.18 0.84-0.69 2.14 1 3.75s2.86-1.31 3.8 0.82-2 1-1.95 3.36 2.95 1.09 2.1 3.26-2.15-0.68-3.76 1 1.31 2.85-0.83 3.79-1-2-3.37-1.95-1.1 2.94-3.27 2.1 0.69-2.14-1-3.75-2.87 1.3-3.81-0.83 2-1 2-3.35-2.95-1.1-2.11-3.27 2.15 0.69 3.77-1-1.31-2.86 0.82-3.8 1 2 3.37 1.95c2 0 1.35-2.26 2.61-2.25zm-15.28 1a3 3 0 1 0 3 3 3 3 0 0 0-2.97-3zm12.81 2.85a4.38 4.38 0 1 0 4.42 4.34 4.38 4.38 0 0 0-4.39-4.34z"/>
</g>
<g id="layer1-8" transform="translate(-31.839)" data-name="layer1">
<g id="g70-8" data-name="g70">
<path id="path3055-8" class="cls-11" d="m456.51 406.53a4.54 4.54 0 0 0-1.71 0.43l-23.39 11.14a4.45 4.45 0 0 0-2.42 3l-5.76 25a4.38 4.38 0 0 0 0.6 3.38c0.08 0.13 0.17 0.24 0.26 0.36l16.18 20a4.5 4.5 0 0 0 3.5 1.66h26a4.5 4.5 0 0 0 3.5-1.66l16.18-20.06a4.42 4.42 0 0 0 0.86-3.74l-5.78-25a4.41 4.41 0 0 0-2.42-3l-23.43-11.04a4.52 4.52 0 0 0-2.17-0.47z" data-name="path3055"/>
<path id="path3054-2-9-8" class="cls-13" d="m456.5 404.72a4.75 4.75 0 0 0-1.81 0.46l-24.69 11.75a4.67 4.67 0 0 0-2.55 3.16l-6.09 26.41a4.66 4.66 0 0 0 0.64 3.58c0.09 0.12 0.17 0.25 0.27 0.37l17.09 21.17a4.72 4.72 0 0 0 3.69 1.75h27.39a4.75 4.75 0 0 0 3.69-1.75l17.08-21.18a4.65 4.65 0 0 0 0.92-3.95l-6.1-26.4a4.66 4.66 0 0 0-2.56-3.16l-24.68-11.76a4.77 4.77 0 0 0-2.29-0.45zm0 1.81a4.52 4.52 0 0 1 2.17 0.43l23.38 11.13a4.41 4.41 0 0 1 2.42 3l5.78 25a4.39 4.39 0 0 1-0.87 3.74l-16.16 20.07a4.5 4.5 0 0 1-3.5 1.66h-26a4.51 4.51 0 0 1-3.5-1.67l-16.18-20c-0.09-0.12-0.18-0.23-0.26-0.35a4.42 4.42 0 0 1-0.61-3.39l5.77-25a4.44 4.44 0 0 1 2.42-3l23.44-11.15a4.54 4.54 0 0 1 1.71-0.43z" data-name="path3054-2-9"/>
</g>
<g id="text2066-8" class="cls-14" data-name="text2066">
<text id="text189" class="cls-17" transform="translate(442.14,466.07)">sched</text>
</g>
<path id="path1984-2" class="cls-13" d="m456.67 417.55c-0.54 0-15.73 7.43-15.93 7.81-0.47 0.91-3.93 16.8-3.72 17.14s2.6 3.34 5.53 7l5.31 6.63h17.49l5.56-6.92 5.57-6.93-2-8.51c-1.07-4.68-2-8.58-2.13-8.68-0.27-0.26-15.43-7.51-15.73-7.52zm0.93 7.78c0.74 0 0.81 1.15 2.38 1.26 2.06 0.16 1.84-1.75 3.41-0.42s-0.35 1.42 0.14 3.41 2.23 1.2 1.45 3.1-1.46 0.11-3.21 1.19-0.46 2.49-2.51 2.34-0.55-1.36-2.12-2.69-2.52 0.34-3-1.65 1.12-0.94 1.91-2.84-1.11-2.28 0.64-3.36a2.41 2.41 0 0 1 0.56-0.28 1.34 1.34 0 0 1 0.36-0.06zm2 2.25a3 3 0 1 0 2.84 2.11 3 3 0 0 0-2.79-2.11zm-11.78 5.1a2.68 2.68 0 0 1 0.59 0.11c1.89 0.58 0 1.57 1.31 3s2.48-0.4 2.92 1.52-1.38 0.76-2 2.64 1.58 1.94 0.14 3.28-1.35-0.8-3.27-0.36-0.9 2.33-2.79 1.75 0-1.56-1.31-3-2.48 0.4-2.92-1.52 1.38-0.76 2-2.64-1.59-1.94-0.14-3.28 1.35 0.81 3.27 0.37c1.69-0.39 1.11-1.88 2.2-1.87zm14.05 2.06a1.87 1.87 0 0 1 0.67 0.16c2.17 0.84-0.69 2.14 1 3.75s2.87-1.31 3.81 0.82-2 1-2 3.36 2.95 1.09 2.11 3.26-2.15-0.68-3.76 1 1.3 2.85-0.83 3.79-1-2-3.37-1.95-1.1 2.94-3.28 2.1 0.69-2.14-1-3.75-2.86 1.3-3.8-0.83 2-1 2-3.35-3-1.1-2.11-3.27 2.15 0.69 3.77-1-1.31-2.86 0.82-3.8 1 2 3.37 1.95c2 0 1.35-2.26 2.61-2.25zm-15.28 1a3 3 0 1 0 3 3 3 3 0 0 0-2.95-3zm12.8 2.85a4.38 4.38 0 1 0 4.4 4.37 4.39 4.39 0 0 0-4.35-4.37z" data-name="path1984"/>
</g>
<g id="layer1-9" transform="translate(-31.839)" data-name="layer1">
<g id="g70-9" data-name="g70">
<path id="path3055-9" class="cls-11" d="m465.45 413.24a4.4 4.4 0 0 0-1.71 0.43l-23.38 11.13a4.43 4.43 0 0 0-2.42 3l-5.77 25a4.36 4.36 0 0 0 0.61 3.39 2.8 2.8 0 0 0 0.25 0.35l16.18 20.06a4.5 4.5 0 0 0 3.5 1.66h26a4.5 4.5 0 0 0 3.5-1.66l16.18-20.06a4.35 4.35 0 0 0 0.86-3.74l-5.77-25a4.44 4.44 0 0 0-2.42-3l-23.39-11.13a4.49 4.49 0 0 0-2.22-0.43z" data-name="path3055"/>
<path id="path3054-2-9-9" class="cls-13" d="m465.44 411.43a4.73 4.73 0 0 0-1.81 0.45l-24.63 11.76a4.66 4.66 0 0 0-2.56 3.16l-6.09 26.4a4.65 4.65 0 0 0 0.64 3.58l0.27 0.37 17.09 21.18a4.72 4.72 0 0 0 3.69 1.75h27.4a4.76 4.76 0 0 0 3.69-1.76l17.08-21.17a4.64 4.64 0 0 0 0.91-3.95l-6.12-26.4a4.69 4.69 0 0 0-2.55-3.17l-24.69-11.75a4.75 4.75 0 0 0-2.32-0.45zm0 1.81a4.52 4.52 0 0 1 2.17 0.43l23.39 11.13a4.42 4.42 0 0 1 2.41 3l5.78 25a4.35 4.35 0 0 1-0.86 3.74l-16.18 20.06a4.5 4.5 0 0 1-3.5 1.66h-26a4.5 4.5 0 0 1-3.5-1.66l-16.15-20.05c-0.09-0.11-0.18-0.23-0.26-0.35a4.4 4.4 0 0 1-0.6-3.39l5.77-25a4.43 4.43 0 0 1 2.42-3l23.38-11.13a4.4 4.4 0 0 1 1.71-0.43z" data-name="path3054-2-9"/>
</g>
<g id="text2066-9" class="cls-14" data-name="text2066">
<text id="text197" class="cls-17" transform="translate(451.08,472.77)">sched</text>
</g>
<path id="path1984-3" class="cls-13" d="m465.61 424.26c-0.54 0-15.72 7.42-15.92 7.8-0.48 0.92-3.93 16.8-3.73 17.14s2.61 3.35 5.53 7l5.31 6.62h17.49l5.57-6.93 5.56-6.92-1.95-8.51c-1.07-4.68-2-8.59-2.12-8.68-0.28-0.26-15.44-7.51-15.74-7.52zm0.93 7.78c0.74 0 0.81 1.14 2.39 1.26 2.05 0.15 1.83-1.75 3.4-0.43s-0.35 1.43 0.14 3.42 2.24 1.2 1.46 3.1-1.47 0.1-3.22 1.18-0.45 2.5-2.51 2.34-0.55-1.35-2.12-2.68-2.52 0.34-3-1.65 1.13-0.95 1.91-2.85-1.11-2.28 0.64-3.36a2.78 2.78 0 0 1 0.56-0.27 1 1 0 0 1 0.36-0.06zm2.06 2.24a2.89 2.89 0 0 0-0.88 0.13 3 3 0 1 0 0.88-0.13zm-11.78 5.11a2.21 2.21 0 0 1 0.58 0.11c1.89 0.58 0 1.57 1.32 3s2.47-0.4 2.91 1.52-1.37 0.76-1.95 2.64 1.58 1.94 0.13 3.28-1.34-0.81-3.27-0.37-0.89 2.34-2.78 1.76 0-1.57-1.32-3-2.47 0.4-2.92-1.52 1.38-0.76 2-2.64-1.58-1.94-0.14-3.28 1.35 0.81 3.28 0.36c1.68-0.38 1.1-1.88 2.2-1.86zm14 2.06a2 2 0 0 1 0.67 0.15c2.18 0.85-0.69 2.15 1 3.75s2.86-1.3 3.8 0.83-2 1-1.95 3.36 2.95 1.09 2.1 3.26-2.15-0.69-3.76 1 1.31 2.85-0.83 3.79-1-2-3.37-1.95-1.1 2.94-3.27 2.1 0.69-2.15-1-3.75-2.86 1.3-3.81-0.83 2-1 2-3.36-2.95-1.09-2.11-3.26 2.15 0.69 3.77-1-1.31-2.85 0.83-3.79 1 2 3.36 1.95c2.05-0.05 1.36-2.26 2.61-2.25zm-15.28 1a3 3 0 1 0 3 3 3 3 0 0 0-2.96-3zm12.81 2.85a4.38 4.38 0 1 0 4.39 4.37 4.37 4.37 0 0 0-4.35-4.37z" data-name="path1984"/>
</g>
</g>
<text id="text255" class="cls-22" x="216.71268" y="485.55911" font-family="'Open Sans', sans-serif" font-size="12px"><tspan id="tspan1053" font-family="'Open Sans'" font-size="14.667px" font-weight="bold" text-align="center" text-anchor="middle" style="font-variant-caps:normal;font-variant-east-asian:normal;font-variant-ligatures:normal;font-variant-numeric:normal">Control Plane</tspan></text>
<text id="text257" class="cls-22" x="549.05597" y="275.27713" font-family="'Open Sans', sans-serif" font-size="12px"><tspan id="tspan1312" font-family="'Open Sans'" font-size="14.667px" font-weight="bold" text-align="center" text-anchor="middle" style="font-variant-caps:normal;font-variant-east-asian:normal;font-variant-ligatures:normal;font-variant-numeric:normal">Node</tspan></text>
<text id="text259" x="-123.81744" y="664.74402"/>
<g id="layer1-15" transform="translate(-151.54 -61.332)" data-name="layer1">
<g id="g70-16" data-name="g70">
<path id="path3055-16" class="cls-11" d="m276.45 411.42a4.3 4.3 0 0 0-1.63 0.32l-22.3 9a4 4 0 0 0-2.37 2.55l-6.15 21.76a3.65 3.65 0 0 0 0.48 3 3.46 3.46 0 0 0 0.22 0.31l14.64 18.08a4.36 4.36 0 0 0 3.23 1.57l24.41 0.8a4.35 4.35 0 0 0 3.33-1.35l15.79-17.06a3.67 3.67 0 0 0 0.93-3.25l-4.71-22.09a4 4 0 0 0-2.19-2.71l-21.66-10.48a4.51 4.51 0 0 0-2.02-0.45z" data-name="path3055"/>
<path id="path3054-2-9-16" class="cls-13" d="m276.49 409.83a4.7 4.7 0 0 0-1.71 0.35l-23.56 9.52a4.18 4.18 0 0 0-2.49 2.69l-6.49 22.94a3.85 3.85 0 0 0 0.5 3.16 2 2 0 0 0 0.24 0.33l15.45 19.09a4.59 4.59 0 0 0 3.41 1.65l25.76 0.85a4.62 4.62 0 0 0 3.52-1.42l16.68-18a3.86 3.86 0 0 0 1-3.43l-5-23.32a4.17 4.17 0 0 0-2.31-2.85l-22.86-11.09a4.78 4.78 0 0 0-2.14-0.47zm0 1.59a4.51 4.51 0 0 1 2 0.44l21.66 10.48a4 4 0 0 1 2.19 2.71l4.7 22.09a3.63 3.63 0 0 1-0.92 3.25l-15.79 17.07a4.38 4.38 0 0 1-3.33 1.34l-24.4-0.8a4.34 4.34 0 0 1-3.23-1.57l-14.67-18.08-0.23-0.31a3.69 3.69 0 0 1-0.47-3l6.15-21.73a4 4 0 0 1 2.36-2.55l22.31-9a4.73 4.73 0 0 1 1.63-0.32z" data-name="path3054-2-9"/>
</g>
<g id="text2066-16" class="cls-14" data-name="text2066">
<text id="text264" class="cls-23" transform="matrix(1.0794 .035808 -.033155 .99945 265.24 463.26)">etcd</text>
</g>
<path id="path2078" class="cls-13" d="m276.28 421.08c-0.51 0-15 6-15.2 6.34-0.48 0.79-4.19 14.59-4 14.9s2.36 3 5 6.29l4.8 6 8.22 0.28 8.23 0.27 5.43-5.89 5.43-5.9-1.58-7.51c-0.87-4.14-1.66-7.59-1.75-7.67-0.25-0.24-14.29-7.06-14.57-7.08z"/>
<path id="path4590" class="cls-11" d="m291.05 440.37h-0.46a6.3 6.3 0 0 1-2.62-0.66 21 21 0 0 0 0.5-4.32 23.86 23.86 0 0 0-2.91-3.42 5.77 5.77 0 0 1 2.2-2l0.4-0.21-0.3-0.33a15.84 15.84 0 0 0-5.42-3.94l-0.42-0.19-0.12 0.41a5.43 5.43 0 0 1-1.58 2.49 25.41 25.41 0 0 0-4.3-1.81 25 25 0 0 0-4.39 1.52 5.44 5.44 0 0 1-1.42-2.58l-0.09-0.42-0.43 0.16a16 16 0 0 0-5.69 3.53l-0.31 0.31 0.38 0.23a5.7 5.7 0 0 1 2.05 2.18 23.53 23.53 0 0 0-3.12 3.2 21.37 21.37 0 0 0 0.2 4.37 6.36 6.36 0 0 1-2.64 0.48 3.44 3.44 0 0 1-0.46 0h-0.45v0.43a13.9 13.9 0 0 0 1.93 6.13l0.22 0.38 0.36-0.27a6.23 6.23 0 0 1 2.86-1.13 22.92 22.92 0 0 0 2.3 3.74 26.46 26.46 0 0 0 4.55 1.2 5.11 5.11 0 0 1-0.48 2.89l-0.18 0.39 0.44 0.11a16.83 16.83 0 0 0 3.43 0.46l3.44-0.24 0.45-0.07-0.16-0.4a5.15 5.15 0 0 1-0.28-2.92 25.82 25.82 0 0 0 4.6-0.9 21.72 21.72 0 0 0 2.54-3.58 6.07 6.07 0 0 1 2.8 1.33l0.34 0.28 0.25-0.36a13.91 13.91 0 0 0 2.33-6l0.06-0.42zm-10.73 4.83a20 20 0 0 1-9.83-0.33 17.16 17.16 0 0 1-2-4.18 16.22 16.22 0 0 1-0.74-4.55 18.44 18.44 0 0 1 3.67-3 19.34 19.34 0 0 1 4.42-2.05 19.57 19.57 0 0 1 4.26 2.34 18.38 18.38 0 0 1 3.48 3.29 16.19 16.19 0 0 1-1.05 4.47 17.09 17.09 0 0 1-2.21 4.01zm-3.32-7.39a2.08 2.08 0 0 0 4.15 0.14 2.08 2.08 0 0 0-4.15-0.14zm-2.69-0.09a2.08 2.08 0 1 1-2-2 2 2 0 0 1 2 2z"/>
</g>
<text id="text274" class="cls-22" x="480.11725" y="47.03083" font-family="'Open Sans', sans-serif" font-size="12px"><tspan id="tspan1314" fill="#ffffff" font-family="'Open Sans'" font-size="21.333px" font-weight="bold">Kubernetes cluster</tspan></text>
<g id="g2018" transform="translate(-123.82 -40.997)">
<g id="layer1-10-1" transform="translate(-42.645 -4.995)" data-name="layer1">
<g id="g70-10-2" data-name="g70">
<path id="path3055-10-5" class="cls-11" d="m463.61 257.22a4.39 4.39 0 0 0-1.6 0.4l-21.81 10.43a4.15 4.15 0 0 0-2.26 2.8l-5.38 23.41a4.12 4.12 0 0 0 0.57 3.17 3.43 3.43 0 0 0 0.24 0.33l15.09 18.77a4.19 4.19 0 0 0 3.26 1.55h24.21a4.19 4.19 0 0 0 3.26-1.55l15.09-18.78a4.12 4.12 0 0 0 0.81-3.5l-5.39-23.4a4.16 4.16 0 0 0-2.26-2.81l-21.81-10.42a4.16 4.16 0 0 0-2.02-0.4z" data-name="path3055"/>
<path id="path3054-2-9-10-7" class="cls-13" d="m463.6 255.53a4.48 4.48 0 0 0-1.69 0.42l-23 11a4.39 4.39 0 0 0-2.39 3l-5.68 24.71a4.33 4.33 0 0 0 0.6 3.34c0.08 0.12 0.16 0.24 0.25 0.35l15.94 19.82a4.43 4.43 0 0 0 3.44 1.64h25.53a4.43 4.43 0 0 0 3.45-1.64l15.95-19.85a4.39 4.39 0 0 0 0.85-3.7l-5.69-24.71a4.41 4.41 0 0 0-2.38-3l-23-11a4.35 4.35 0 0 0-2.18-0.38zm0 1.69a4.17 4.17 0 0 1 2 0.41l21.84 10.37a4.19 4.19 0 0 1 2.26 2.81l5.39 23.4a4.12 4.12 0 0 1-0.81 3.5l-15.09 18.78a4.19 4.19 0 0 1-3.26 1.55h-24.21a4.19 4.19 0 0 1-3.26-1.56l-15.09-18.77a3.43 3.43 0 0 1-0.24-0.33 4.12 4.12 0 0 1-0.57-3.17l5.38-23.41a4.17 4.17 0 0 1 2.26-2.8l21.8-10.37a4.21 4.21 0 0 1 1.6-0.41z" data-name="path3054-2-9"/>
</g>
<g id="text2066-10-2" class="cls-14" data-name="text2066">
<text id="text205-6" class="cls-18" transform="translate(457.08,312.94)">api</text>
</g>
<path id="path1984-4-0" class="cls-13" d="m463.76 267.54c-0.51 0-14.67 6.94-14.86 7.3-0.44 0.86-3.66 15.72-3.47 16s2.43 3.13 5.15 6.54l5 6.2h16.31l5.19-6.49 5.19-6.48-1.81-8c-1-4.38-1.9-8-2-8.13-0.25-0.24-14.4-7-14.67-7zm0.87 7.28c0.68 0 0.75 1.07 2.22 1.18 1.91 0.14 1.71-1.64 3.17-0.4s-0.32 1.33 0.13 3.2 2.09 1.12 1.36 2.89-1.37 0.1-3 1.11-0.42 2.34-2.34 2.19-0.51-1.27-2-2.51-2.35 0.32-2.8-1.54 1.05-0.89 1.78-2.67-1-2.13 0.6-3.14a2.28 2.28 0 0 1 0.52-0.26 0.88 0.88 0 0 1 0.34-0.05zm1.91 2.1a2.86 2.86 0 0 0-0.82 0.12 2.77 2.77 0 1 0 0.82-0.12zm-11 4.78a1.84 1.84 0 0 1 0.55 0.1c1.76 0.54 0 1.47 1.22 2.81s2.31-0.37 2.73 1.43-1.29 0.71-1.83 2.47 1.47 1.81 0.13 3.07-1.26-0.76-3.06-0.34-0.83 2.18-2.59 1.64 0-1.47-1.23-2.82-2.31 0.37-2.72-1.42 1.29-0.71 1.83-2.47-1.48-1.82-0.13-3.07 1.26 0.75 3.05 0.34c1.57-0.36 1-1.76 2.05-1.74zm13.1 1.92a2.08 2.08 0 0 1 0.63 0.15c2 0.79-0.65 2 0.93 3.51s2.67-1.22 3.55 0.77-1.88 1-1.83 3.14 2.75 1 2 3.06-2-0.65-3.51 0.93 1.21 2.67-0.78 3.55-1-1.87-3.14-1.83-1 2.75-3.05 2 0.64-2-0.94-3.51-2.67 1.22-3.54-0.78 1.87-1 1.82-3.14-2.75-1-2-3.05 2 0.64 3.51-0.93-1.22-2.67 0.77-3.55 1 1.87 3.14 1.82c1.91 0 1.26-2.12 2.43-2.11zm-14.25 0.94a2.78 2.78 0 1 0 2.78 2.78 2.77 2.77 0 0 0-2.77-2.78zm12 2.66a4.1 4.1 0 1 0 4.09 4.1 4.1 4.1 0 0 0-4.13-4.1z" data-name="path1984"/>
</g>
<g id="layer1-10" transform="translate(-33.895 4.515)" data-name="layer1">
<g id="g70-10" data-name="g70">
<path id="path3055-10" class="cls-11" d="m463.61 257.22a4.39 4.39 0 0 0-1.6 0.4l-21.81 10.43a4.15 4.15 0 0 0-2.26 2.8l-5.38 23.41a4.12 4.12 0 0 0 0.57 3.17 3.43 3.43 0 0 0 0.24 0.33l15.09 18.77a4.19 4.19 0 0 0 3.26 1.55h24.21a4.19 4.19 0 0 0 3.26-1.55l15.09-18.78a4.12 4.12 0 0 0 0.81-3.5l-5.39-23.4a4.16 4.16 0 0 0-2.26-2.81l-21.81-10.42a4.16 4.16 0 0 0-2.02-0.4z" data-name="path3055"/>
<path id="path3054-2-9-10" class="cls-13" d="m463.6 255.53a4.48 4.48 0 0 0-1.69 0.42l-23 11a4.39 4.39 0 0 0-2.39 3l-5.68 24.71a4.33 4.33 0 0 0 0.6 3.34c0.08 0.12 0.16 0.24 0.25 0.35l15.94 19.82a4.43 4.43 0 0 0 3.44 1.64h25.53a4.43 4.43 0 0 0 3.45-1.64l15.95-19.85a4.39 4.39 0 0 0 0.85-3.7l-5.69-24.71a4.41 4.41 0 0 0-2.38-3l-23-11a4.35 4.35 0 0 0-2.18-0.38zm0 1.69a4.17 4.17 0 0 1 2 0.41l21.84 10.37a4.19 4.19 0 0 1 2.26 2.81l5.39 23.4a4.12 4.12 0 0 1-0.81 3.5l-15.09 18.78a4.19 4.19 0 0 1-3.26 1.55h-24.21a4.19 4.19 0 0 1-3.26-1.56l-15.09-18.77a3.43 3.43 0 0 1-0.24-0.33 4.12 4.12 0 0 1-0.57-3.17l5.38-23.41a4.17 4.17 0 0 1 2.26-2.8l21.8-10.37a4.21 4.21 0 0 1 1.6-0.41z" data-name="path3054-2-9"/>
</g>
<g id="text2066-10" class="cls-14" data-name="text2066">
<text id="text205" class="cls-18" transform="translate(457.08,312.94)">api</text>
</g>
<path id="path1984-4" class="cls-13" d="m463.76 267.54c-0.51 0-14.67 6.94-14.86 7.3-0.44 0.86-3.66 15.72-3.47 16s2.43 3.13 5.15 6.54l5 6.2h16.31l5.19-6.49 5.19-6.48-1.81-8c-1-4.38-1.9-8-2-8.13-0.25-0.24-14.4-7-14.67-7zm0.87 7.28c0.68 0 0.75 1.07 2.22 1.18 1.91 0.14 1.71-1.64 3.17-0.4s-0.32 1.33 0.13 3.2 2.09 1.12 1.36 2.89-1.37 0.1-3 1.11-0.42 2.34-2.34 2.19-0.51-1.27-2-2.51-2.35 0.32-2.8-1.54 1.05-0.89 1.78-2.67-1-2.13 0.6-3.14a2.28 2.28 0 0 1 0.52-0.26 0.88 0.88 0 0 1 0.34-0.05zm1.91 2.1a2.86 2.86 0 0 0-0.82 0.12 2.77 2.77 0 1 0 0.82-0.12zm-11 4.78a1.84 1.84 0 0 1 0.55 0.1c1.76 0.54 0 1.47 1.22 2.81s2.31-0.37 2.73 1.43-1.29 0.71-1.83 2.47 1.47 1.81 0.13 3.07-1.26-0.76-3.06-0.34-0.83 2.18-2.59 1.64 0-1.47-1.23-2.82-2.31 0.37-2.72-1.42 1.29-0.71 1.83-2.47-1.48-1.82-0.13-3.07 1.26 0.75 3.05 0.34c1.57-0.36 1-1.76 2.05-1.74zm13.1 1.92a2.08 2.08 0 0 1 0.63 0.15c2 0.79-0.65 2 0.93 3.51s2.67-1.22 3.55 0.77-1.88 1-1.83 3.14 2.75 1 2 3.06-2-0.65-3.51 0.93 1.21 2.67-0.78 3.55-1-1.87-3.14-1.83-1 2.75-3.05 2 0.64-2-0.94-3.51-2.67 1.22-3.54-0.78 1.87-1 1.82-3.14-2.75-1-2-3.05 2 0.64 3.51-0.93-1.22-2.67 0.77-3.55 1 1.87 3.14 1.82c1.91 0 1.26-2.12 2.43-2.11zm-14.25 0.94a2.78 2.78 0 1 0 2.78 2.78 2.77 2.77 0 0 0-2.77-2.78zm12 2.66a4.1 4.1 0 1 0 4.09 4.1 4.1 4.1 0 0 0-4.13-4.1z" data-name="path1984"/>
</g>
<g id="layer1-10-14" transform="translate(-25.145 14.025)" data-name="layer1">
<g id="g70-10-1" data-name="g70">
<path id="path3055-10-53" class="cls-11" d="m463.61 257.22a4.39 4.39 0 0 0-1.6 0.4l-21.81 10.43a4.15 4.15 0 0 0-2.26 2.8l-5.38 23.41a4.12 4.12 0 0 0 0.57 3.17 3.43 3.43 0 0 0 0.24 0.33l15.09 18.77a4.19 4.19 0 0 0 3.26 1.55h24.21a4.19 4.19 0 0 0 3.26-1.55l15.09-18.78a4.12 4.12 0 0 0 0.81-3.5l-5.39-23.4a4.16 4.16 0 0 0-2.26-2.81l-21.81-10.42a4.16 4.16 0 0 0-2.02-0.4z" data-name="path3055"/>
<path id="path3054-2-9-10-5" class="cls-13" d="m463.6 255.53a4.48 4.48 0 0 0-1.69 0.42l-23 11a4.39 4.39 0 0 0-2.39 3l-5.68 24.71a4.33 4.33 0 0 0 0.6 3.34c0.08 0.12 0.16 0.24 0.25 0.35l15.94 19.82a4.43 4.43 0 0 0 3.44 1.64h25.53a4.43 4.43 0 0 0 3.45-1.64l15.95-19.85a4.39 4.39 0 0 0 0.85-3.7l-5.69-24.71a4.41 4.41 0 0 0-2.38-3l-23-11a4.35 4.35 0 0 0-2.18-0.38zm0 1.69a4.17 4.17 0 0 1 2 0.41l21.84 10.37a4.19 4.19 0 0 1 2.26 2.81l5.39 23.4a4.12 4.12 0 0 1-0.81 3.5l-15.09 18.78a4.19 4.19 0 0 1-3.26 1.55h-24.21a4.19 4.19 0 0 1-3.26-1.56l-15.09-18.77a3.43 3.43 0 0 1-0.24-0.33 4.12 4.12 0 0 1-0.57-3.17l5.38-23.41a4.17 4.17 0 0 1 2.26-2.8l21.8-10.37a4.21 4.21 0 0 1 1.6-0.41z" data-name="path3054-2-9"/>
</g>
<g id="text2066-10-7" class="cls-14" data-name="text2066">
<text id="text205-7" class="cls-18" transform="translate(457.08,312.94)">api</text>
</g>
<path id="path1984-4-3" class="cls-13" d="m463.76 267.54c-0.51 0-14.67 6.94-14.86 7.3-0.44 0.86-3.66 15.72-3.47 16s2.43 3.13 5.15 6.54l5 6.2h16.31l5.19-6.49 5.19-6.48-1.81-8c-1-4.38-1.9-8-2-8.13-0.25-0.24-14.4-7-14.67-7zm0.87 7.28c0.68 0 0.75 1.07 2.22 1.18 1.91 0.14 1.71-1.64 3.17-0.4s-0.32 1.33 0.13 3.2 2.09 1.12 1.36 2.89-1.37 0.1-3 1.11-0.42 2.34-2.34 2.19-0.51-1.27-2-2.51-2.35 0.32-2.8-1.54 1.05-0.89 1.78-2.67-1-2.13 0.6-3.14a2.28 2.28 0 0 1 0.52-0.26 0.88 0.88 0 0 1 0.34-0.05zm1.91 2.1a2.86 2.86 0 0 0-0.82 0.12 2.77 2.77 0 1 0 0.82-0.12zm-11 4.78a1.84 1.84 0 0 1 0.55 0.1c1.76 0.54 0 1.47 1.22 2.81s2.31-0.37 2.73 1.43-1.29 0.71-1.83 2.47 1.47 1.81 0.13 3.07-1.26-0.76-3.06-0.34-0.83 2.18-2.59 1.64 0-1.47-1.23-2.82-2.31 0.37-2.72-1.42 1.29-0.71 1.83-2.47-1.48-1.82-0.13-3.07 1.26 0.75 3.05 0.34c1.57-0.36 1-1.76 2.05-1.74zm13.1 1.92a2.08 2.08 0 0 1 0.63 0.15c2 0.79-0.65 2 0.93 3.51s2.67-1.22 3.55 0.77-1.88 1-1.83 3.14 2.75 1 2 3.06-2-0.65-3.51 0.93 1.21 2.67-0.78 3.55-1-1.87-3.14-1.83-1 2.75-3.05 2 0.64-2-0.94-3.51-2.67 1.22-3.54-0.78 1.87-1 1.82-3.14-2.75-1-2-3.05 2 0.64 3.51-0.93-1.22-2.67 0.77-3.55 1 1.87 3.14 1.82c1.91 0 1.26-2.12 2.43-2.11zm-14.25 0.94a2.78 2.78 0 1 0 2.78 2.78 2.77 2.77 0 0 0-2.77-2.78zm12 2.66a4.1 4.1 0 1 0 4.09 4.1 4.1 4.1 0 0 0-4.13-4.1z" data-name="path1984"/>
</g>
</g>
<g id="g2066" transform="translate(-123.82 -40.997)">
<path id="path84" class="cls-4" d="m396.5 106.15h70v70.14h-70z"/>
<g id="layer1-11" transform="translate(-31.326 -2.8445)" data-name="layer1">
<g id="g70-11" data-name="g70">
<path id="path3055-11" class="cls-11" d="m462.48 109.72a4.33 4.33 0 0 0-1.65 0.42l-22.55 10.77a4.29 4.29 0 0 0-2.33 2.9l-5.56 24.19a4.22 4.22 0 0 0 0.59 3.28 2.62 2.62 0 0 0 0.24 0.34l15.61 19.38a4.29 4.29 0 0 0 3.37 1.61h25a4.34 4.34 0 0 0 3.37-1.6l15.6-19.41a4.22 4.22 0 0 0 0.83-3.6l-5.57-24.19a4.27 4.27 0 0 0-2.33-2.9l-22.55-10.77a4.31 4.31 0 0 0-2.07-0.42z" data-name="path3055"/>
<path id="path3054-2-9-11" class="cls-13" d="m462.47 108a4.56 4.56 0 0 0-1.74 0.44l-23.8 11.37a4.53 4.53 0 0 0-2.47 3.06l-5.87 25.55a4.49 4.49 0 0 0 0.62 3.46l0.26 0.36 16.47 20.48a4.57 4.57 0 0 0 3.56 1.7h26.42a4.56 4.56 0 0 0 3.56-1.69l16.46-20.49a4.44 4.44 0 0 0 0.88-3.81l-5.88-25.55a4.5 4.5 0 0 0-2.46-3.06l-23.8-11.37a4.57 4.57 0 0 0-2.21-0.45zm0 1.75a4.31 4.31 0 0 1 2.09 0.42l22.55 10.77a4.27 4.27 0 0 1 2.33 2.9l5.56 24.16a4.21 4.21 0 0 1-0.83 3.62l-15.58 19.38a4.31 4.31 0 0 1-3.37 1.6h-25a4.33 4.33 0 0 1-3.38-1.61l-15.6-19.4c-0.09-0.11-0.17-0.22-0.25-0.34a4.26 4.26 0 0 1-0.58-3.28l5.56-24.2a4.29 4.29 0 0 1 2.33-2.9l22.55-10.77a4.33 4.33 0 0 1 1.65-0.42z" data-name="path3054-2-9"/>
</g>
<g id="text2066-11" class="cls-14" data-name="text2066">
<text id="text213" class="cls-19" transform="translate(449.46,167.32)">c-c-m</text>
</g>
<path id="path1984-5" class="cls-13" d="m462.64 120.39c-0.53 0-15.17 7.18-15.36 7.55-0.46 0.88-3.79 16.25-3.59 16.58s2.51 3.23 5.33 6.76l5.12 6.4h16.86l5.36-6.7 5.37-6.7-1.88-8.23c-1-4.53-2-8.31-2.05-8.4-0.27-0.25-14.89-7.26-15.17-7.27zm0.9 7.52c0.7 0 0.78 1.11 2.29 1.22 2 0.15 1.77-1.69 3.28-0.41s-0.33 1.38 0.14 3.31 2.16 1.15 1.4 3-1.41 0.1-3.1 1.15-0.43 2.41-2.41 2.26-0.54-1.31-2.05-2.6-2.43 0.34-2.9-1.59 1.08-0.92 1.83-2.75-1.06-2.21 0.63-3.25a2.45 2.45 0 0 1 0.54-0.27 0.92 0.92 0 0 1 0.35-0.06zm2 2.17a3 3 0 0 0-0.84 0.12 2.88 2.88 0 1 0 0.84-0.12zm-11.38 4.92a2.47 2.47 0 0 1 0.56 0.11c1.82 0.56 0 1.51 1.27 2.91s2.38-0.38 2.81 1.47-1.33 0.73-1.89 2.56 1.53 1.87 0.13 3.17-1.29-0.78-3.15-0.35-0.86 2.25-2.68 1.69 0-1.51-1.27-2.91-2.39 0.38-2.82-1.47 1.33-0.73 1.89-2.56-1.53-1.87-0.13-3.17 1.3 0.78 3.15 0.36c1.63-0.38 1.07-1.82 2.13-1.81zm13.54 2a1.81 1.81 0 0 1 0.64 0.14c2.1 0.82-0.66 2.08 1 3.63s2.77-1.26 3.67 0.8-1.93 1-1.88 3.25 2.84 1.06 2 3.16-2.07-0.67-3.63 1 1.26 2.76-0.8 3.67-1-1.94-3.25-1.89-1.06 2.85-3.16 2 0.67-2.07-1-3.63-2.76 1.27-3.67-0.79 1.94-1 1.89-3.25-2.85-1.06-2-3.16 2.07 0.67 3.63-1-1.26-2.76 0.8-3.67 1 1.93 3.24 1.88c2 0 1.31-2.19 2.52-2.17zm-14.7 1a2.88 2.88 0 1 0 2.87 2.88 2.88 2.88 0 0 0-2.87-2.88zm12.35 2.76a4.23 4.23 0 1 0 4.24 4.23 4.23 4.23 0 0 0-4.28-4.25z" data-name="path1984"/>
</g>
<g id="layer1-11-3" transform="translate(-22.232 5.3355)" data-name="layer1">
<g id="g70-11-2" data-name="g70">
<path id="path3055-11-0" class="cls-11" d="m462.48 109.72a4.33 4.33 0 0 0-1.65 0.42l-22.55 10.77a4.29 4.29 0 0 0-2.33 2.9l-5.56 24.19a4.22 4.22 0 0 0 0.59 3.28 2.62 2.62 0 0 0 0.24 0.34l15.61 19.38a4.29 4.29 0 0 0 3.37 1.61h25a4.34 4.34 0 0 0 3.37-1.6l15.6-19.41a4.22 4.22 0 0 0 0.83-3.6l-5.57-24.19a4.27 4.27 0 0 0-2.33-2.9l-22.55-10.77a4.31 4.31 0 0 0-2.07-0.42z" data-name="path3055"/>
<path id="path3054-2-9-11-7" class="cls-13" d="m462.47 108a4.56 4.56 0 0 0-1.74 0.44l-23.8 11.37a4.53 4.53 0 0 0-2.47 3.06l-5.87 25.55a4.49 4.49 0 0 0 0.62 3.46l0.26 0.36 16.47 20.48a4.57 4.57 0 0 0 3.56 1.7h26.42a4.56 4.56 0 0 0 3.56-1.69l16.46-20.49a4.44 4.44 0 0 0 0.88-3.81l-5.88-25.55a4.5 4.5 0 0 0-2.46-3.06l-23.8-11.37a4.57 4.57 0 0 0-2.21-0.45zm0 1.75a4.31 4.31 0 0 1 2.09 0.42l22.55 10.77a4.27 4.27 0 0 1 2.33 2.9l5.56 24.16a4.21 4.21 0 0 1-0.83 3.62l-15.58 19.38a4.31 4.31 0 0 1-3.37 1.6h-25a4.33 4.33 0 0 1-3.38-1.61l-15.6-19.4c-0.09-0.11-0.17-0.22-0.25-0.34a4.26 4.26 0 0 1-0.58-3.28l5.56-24.2a4.29 4.29 0 0 1 2.33-2.9l22.55-10.77a4.33 4.33 0 0 1 1.65-0.42z" data-name="path3054-2-9"/>
</g>
<g id="text2066-11-4" class="cls-14" data-name="text2066">
<text id="text213-7" class="cls-19" transform="translate(449.46,167.32)">c-c-m</text>
</g>
<path id="path1984-5-6" class="cls-13" d="m462.64 120.39c-0.53 0-15.17 7.18-15.36 7.55-0.46 0.88-3.79 16.25-3.59 16.58s2.51 3.23 5.33 6.76l5.12 6.4h16.86l5.36-6.7 5.37-6.7-1.88-8.23c-1-4.53-2-8.31-2.05-8.4-0.27-0.25-14.89-7.26-15.17-7.27zm0.9 7.52c0.7 0 0.78 1.11 2.29 1.22 2 0.15 1.77-1.69 3.28-0.41s-0.33 1.38 0.14 3.31 2.16 1.15 1.4 3-1.41 0.1-3.1 1.15-0.43 2.41-2.41 2.26-0.54-1.31-2.05-2.6-2.43 0.34-2.9-1.59 1.08-0.92 1.83-2.75-1.06-2.21 0.63-3.25a2.45 2.45 0 0 1 0.54-0.27 0.92 0.92 0 0 1 0.35-0.06zm2 2.17a3 3 0 0 0-0.84 0.12 2.88 2.88 0 1 0 0.84-0.12zm-11.38 4.92a2.47 2.47 0 0 1 0.56 0.11c1.82 0.56 0 1.51 1.27 2.91s2.38-0.38 2.81 1.47-1.33 0.73-1.89 2.56 1.53 1.87 0.13 3.17-1.29-0.78-3.15-0.35-0.86 2.25-2.68 1.69 0-1.51-1.27-2.91-2.39 0.38-2.82-1.47 1.33-0.73 1.89-2.56-1.53-1.87-0.13-3.17 1.3 0.78 3.15 0.36c1.63-0.38 1.07-1.82 2.13-1.81zm13.54 2a1.81 1.81 0 0 1 0.64 0.14c2.1 0.82-0.66 2.08 1 3.63s2.77-1.26 3.67 0.8-1.93 1-1.88 3.25 2.84 1.06 2 3.16-2.07-0.67-3.63 1 1.26 2.76-0.8 3.67-1-1.94-3.25-1.89-1.06 2.85-3.16 2 0.67-2.07-1-3.63-2.76 1.27-3.67-0.79 1.94-1 1.89-3.25-2.85-1.06-2-3.16 2.07 0.67 3.63-1-1.26-2.76 0.8-3.67 1 1.93 3.24 1.88c2 0 1.31-2.19 2.52-2.17zm-14.7 1a2.88 2.88 0 1 0 2.87 2.88 2.88 2.88 0 0 0-2.87-2.88zm12.35 2.76a4.23 4.23 0 1 0 4.24 4.23 4.23 4.23 0 0 0-4.28-4.25z" data-name="path1984"/>
</g>
<g id="layer1-11-8" transform="translate(-13.136 13.515)" data-name="layer1">
<g id="g70-11-1" data-name="g70">
<path id="path3055-11-8" class="cls-11" d="m462.48 109.72a4.33 4.33 0 0 0-1.65 0.42l-22.55 10.77a4.29 4.29 0 0 0-2.33 2.9l-5.56 24.19a4.22 4.22 0 0 0 0.59 3.28 2.62 2.62 0 0 0 0.24 0.34l15.61 19.38a4.29 4.29 0 0 0 3.37 1.61h25a4.34 4.34 0 0 0 3.37-1.6l15.6-19.41a4.22 4.22 0 0 0 0.83-3.6l-5.57-24.19a4.27 4.27 0 0 0-2.33-2.9l-22.55-10.77a4.31 4.31 0 0 0-2.07-0.42z" data-name="path3055"/>
<path id="path3054-2-9-11-9" class="cls-13" d="m462.47 108a4.56 4.56 0 0 0-1.74 0.44l-23.8 11.37a4.53 4.53 0 0 0-2.47 3.06l-5.87 25.55a4.49 4.49 0 0 0 0.62 3.46l0.26 0.36 16.47 20.48a4.57 4.57 0 0 0 3.56 1.7h26.42a4.56 4.56 0 0 0 3.56-1.69l16.46-20.49a4.44 4.44 0 0 0 0.88-3.81l-5.88-25.55a4.5 4.5 0 0 0-2.46-3.06l-23.8-11.37a4.57 4.57 0 0 0-2.21-0.45zm0 1.75a4.31 4.31 0 0 1 2.09 0.42l22.55 10.77a4.27 4.27 0 0 1 2.33 2.9l5.56 24.16a4.21 4.21 0 0 1-0.83 3.62l-15.58 19.38a4.31 4.31 0 0 1-3.37 1.6h-25a4.33 4.33 0 0 1-3.38-1.61l-15.6-19.4c-0.09-0.11-0.17-0.22-0.25-0.34a4.26 4.26 0 0 1-0.58-3.28l5.56-24.2a4.29 4.29 0 0 1 2.33-2.9l22.55-10.77a4.33 4.33 0 0 1 1.65-0.42z" data-name="path3054-2-9"/>
</g>
<g id="text2066-11-3" class="cls-14" data-name="text2066">
<text id="text213-72" class="cls-19" transform="translate(449.46,167.32)">c-c-m</text>
</g>
<path id="path1984-5-7" class="cls-13" d="m462.64 120.39c-0.53 0-15.17 7.18-15.36 7.55-0.46 0.88-3.79 16.25-3.59 16.58s2.51 3.23 5.33 6.76l5.12 6.4h16.86l5.36-6.7 5.37-6.7-1.88-8.23c-1-4.53-2-8.31-2.05-8.4-0.27-0.25-14.89-7.26-15.17-7.27zm0.9 7.52c0.7 0 0.78 1.11 2.29 1.22 2 0.15 1.77-1.69 3.28-0.41s-0.33 1.38 0.14 3.31 2.16 1.15 1.4 3-1.41 0.1-3.1 1.15-0.43 2.41-2.41 2.26-0.54-1.31-2.05-2.6-2.43 0.34-2.9-1.59 1.08-0.92 1.83-2.75-1.06-2.21 0.63-3.25a2.45 2.45 0 0 1 0.54-0.27 0.92 0.92 0 0 1 0.35-0.06zm2 2.17a3 3 0 0 0-0.84 0.12 2.88 2.88 0 1 0 0.84-0.12zm-11.38 4.92a2.47 2.47 0 0 1 0.56 0.11c1.82 0.56 0 1.51 1.27 2.91s2.38-0.38 2.81 1.47-1.33 0.73-1.89 2.56 1.53 1.87 0.13 3.17-1.29-0.78-3.15-0.35-0.86 2.25-2.68 1.69 0-1.51-1.27-2.91-2.39 0.38-2.82-1.47 1.33-0.73 1.89-2.56-1.53-1.87-0.13-3.17 1.3 0.78 3.15 0.36c1.63-0.38 1.07-1.82 2.13-1.81zm13.54 2a1.81 1.81 0 0 1 0.64 0.14c2.1 0.82-0.66 2.08 1 3.63s2.77-1.26 3.67 0.8-1.93 1-1.88 3.25 2.84 1.06 2 3.16-2.07-0.67-3.63 1 1.26 2.76-0.8 3.67-1-1.94-3.25-1.89-1.06 2.85-3.16 2 0.67-2.07-1-3.63-2.76 1.27-3.67-0.79 1.94-1 1.89-3.25-2.85-1.06-2-3.16 2.07 0.67 3.63-1-1.26-2.76 0.8-3.67 1 1.93 3.24 1.88c2 0 1.31-2.19 2.52-2.17zm-14.7 1a2.88 2.88 0 1 0 2.87 2.88 2.88 2.88 0 0 0-2.87-2.88zm12.35 2.76a4.23 4.23 0 1 0 4.24 4.23 4.23 4.23 0 0 0-4.28-4.25z" data-name="path1984"/>
</g>
</g>
<g id="g2042" transform="translate(-123.82 -40.997)">
<path id="path82" class="cls-4" d="m208.7 106.15h70v70.14h-70z"/>
<g id="layer1-12" transform="translate(-45.575 -4.91)" data-name="layer1">
<g id="g70-12" data-name="g70">
<path id="path3055-12" class="cls-11" d="m275.24 108.5a4.33 4.33 0 0 0-1.62 0.39l-22.18 10.11a4 4 0 0 0-2.29 2.72l-5.47 22.72a3.83 3.83 0 0 0 0.57 3.08l0.24 0.32 15.35 18.22a4.37 4.37 0 0 0 3.32 1.51h24.62a4.3 4.3 0 0 0 3.31-1.51l15.35-18.21a3.9 3.9 0 0 0 0.82-3.4l-5.48-22.72a4.08 4.08 0 0 0-2.3-2.72l-22.18-10.12a4.41 4.41 0 0 0-2.06-0.39z" data-name="path3055"/>
<path id="path3054-2-9-12" class="cls-13" d="m275.23 106.85a4.62 4.62 0 0 0-1.71 0.42l-23.41 10.67a4.32 4.32 0 0 0-2.43 2.88l-5.77 24a4 4 0 0 0 0.61 3.25c0.08 0.12 0.16 0.23 0.25 0.34l16.23 19.21a4.61 4.61 0 0 0 3.51 1.59h26a4.58 4.58 0 0 0 3.5-1.6l16.2-19.23a4 4 0 0 0 0.86-3.58l-5.78-24a4.26 4.26 0 0 0-2.42-2.87l-23.41-10.68a4.79 4.79 0 0 0-2.23-0.4zm0 1.65a4.41 4.41 0 0 1 2.06 0.39l22.19 10.11a4.08 4.08 0 0 1 2.3 2.72l5.48 22.72a3.9 3.9 0 0 1-0.82 3.4l-15.35 18.21a4.3 4.3 0 0 1-3.31 1.51h-24.62a4.37 4.37 0 0 1-3.32-1.51l-15.35-18.22-0.24-0.32a3.83 3.83 0 0 1-0.57-3.08l5.47-22.71a4 4 0 0 1 2.29-2.73l22.18-10.11a4.33 4.33 0 0 1 1.62-0.39z" data-name="path3054-2-9"/>
</g>
<g id="text2066-12" class="cls-14" data-name="text2066">
<text id="text221" class="cls-20" transform="matrix(1.05,0,0,1,266.83,162.57)">c-m</text>
</g>
<path id="path1984-6" class="cls-13" d="m275.4 118.51c-0.52 0-14.92 6.74-15.11 7.09-0.45 0.83-3.73 15.25-3.53 15.57s2.47 3 5.24 6.34l5 6h16.59l5.28-6.29 5.27-6.29-1.84-7.73c-1-4.25-1.93-7.8-2-7.88-0.26-0.24-14.64-6.82-14.92-6.83zm0.88 7.06c0.7 0 0.77 1 2.26 1.15 1.95 0.14 1.74-1.59 3.23-0.39s-0.33 1.3 0.13 3.11 2.12 1.08 1.38 2.81-1.39 0.1-3 1.08-0.43 2.26-2.37 2.12-0.53-1.23-2-2.44-2.39 0.31-2.85-1.5 1.06-0.86 1.81-2.58-1.05-2.07 0.61-3.05a2.71 2.71 0 0 1 0.53-0.25 1.16 1.16 0 0 1 0.34-0.06zm2 2a2.94 2.94 0 0 0-0.84 0.12 2.68 2.68 0 0 0-1.89 3.36 2.85 2.85 0 0 0 3.52 1.8 2.67 2.67 0 0 0 1.89-3.36 2.8 2.8 0 0 0-2.73-1.88zm-11.18 4.64a2 2 0 0 1 0.56 0.1c1.79 0.52 0 1.42 1.25 2.73s2.34-0.36 2.76 1.39-1.3 0.68-1.85 2.39 1.5 1.76 0.12 3-1.27-0.73-3.1-0.33-0.85 2.12-2.64 1.59 0-1.42-1.25-2.73-2.34 0.36-2.76-1.38 1.3-0.69 1.85-2.4-1.5-1.76-0.13-3 1.28 0.74 3.11 0.33c1.6-0.35 1-1.7 2.08-1.69zm13.32 1.87a2.06 2.06 0 0 1 0.64 0.14c2.06 0.77-0.66 2 0.95 3.41s2.71-1.19 3.61 0.75-1.91 0.93-1.86 3.05 2.8 1 2 3-2-0.62-3.57 0.91 1.24 2.59-0.79 3.44-1-1.82-3.19-1.77-1 2.67-3.11 1.9 0.65-1.94-0.95-3.4-2.71 1.18-3.61-0.75 1.91-0.94 1.86-3-2.8-1-2-3 2 0.63 3.57-0.9-1.24-2.59 0.79-3.44 1 1.81 3.19 1.77c1.94 0 1.28-2.06 2.47-2zm-14.49 0.91a2.7 2.7 0 1 0 2.83 2.7 2.77 2.77 0 0 0-2.88-2.69zm12.07 2.62a4 4 0 1 0 4.16 4 4.07 4.07 0 0 0-4.16-4z" data-name="path1984"/>
</g>
<g id="layer1-12-3" transform="translate(-37.33 5.74)" data-name="layer1">
<g id="g70-12-4" data-name="g70">
<path id="path3055-12-0" class="cls-11" d="m275.24 108.5a4.33 4.33 0 0 0-1.62 0.39l-22.18 10.11a4 4 0 0 0-2.29 2.72l-5.47 22.72a3.83 3.83 0 0 0 0.57 3.08l0.24 0.32 15.35 18.22a4.37 4.37 0 0 0 3.32 1.51h24.62a4.3 4.3 0 0 0 3.31-1.51l15.35-18.21a3.9 3.9 0 0 0 0.82-3.4l-5.48-22.72a4.08 4.08 0 0 0-2.3-2.72l-22.18-10.12a4.41 4.41 0 0 0-2.06-0.39z" data-name="path3055"/>
<path id="path3054-2-9-12-9" class="cls-13" d="m275.23 106.85a4.62 4.62 0 0 0-1.71 0.42l-23.41 10.67a4.32 4.32 0 0 0-2.43 2.88l-5.77 24a4 4 0 0 0 0.61 3.25c0.08 0.12 0.16 0.23 0.25 0.34l16.23 19.21a4.61 4.61 0 0 0 3.51 1.59h26a4.58 4.58 0 0 0 3.5-1.6l16.2-19.23a4 4 0 0 0 0.86-3.58l-5.78-24a4.26 4.26 0 0 0-2.42-2.87l-23.41-10.68a4.79 4.79 0 0 0-2.23-0.4zm0 1.65a4.41 4.41 0 0 1 2.06 0.39l22.19 10.11a4.08 4.08 0 0 1 2.3 2.72l5.48 22.72a3.9 3.9 0 0 1-0.82 3.4l-15.35 18.21a4.3 4.3 0 0 1-3.31 1.51h-24.62a4.37 4.37 0 0 1-3.32-1.51l-15.35-18.22-0.24-0.32a3.83 3.83 0 0 1-0.57-3.08l5.47-22.71a4 4 0 0 1 2.29-2.73l22.18-10.11a4.33 4.33 0 0 1 1.62-0.39z" data-name="path3054-2-9"/>
</g>
<g id="text2066-12-6" class="cls-14" data-name="text2066">
<text id="text221-8" class="cls-20" transform="matrix(1.05,0,0,1,266.83,162.57)">c-m</text>
</g>
<path id="path1984-6-2" class="cls-13" d="m275.4 118.51c-0.52 0-14.92 6.74-15.11 7.09-0.45 0.83-3.73 15.25-3.53 15.57s2.47 3 5.24 6.34l5 6h16.59l5.28-6.29 5.27-6.29-1.84-7.73c-1-4.25-1.93-7.8-2-7.88-0.26-0.24-14.64-6.82-14.92-6.83zm0.88 7.06c0.7 0 0.77 1 2.26 1.15 1.95 0.14 1.74-1.59 3.23-0.39s-0.33 1.3 0.13 3.11 2.12 1.08 1.38 2.81-1.39 0.1-3 1.08-0.43 2.26-2.37 2.12-0.53-1.23-2-2.44-2.39 0.31-2.85-1.5 1.06-0.86 1.81-2.58-1.05-2.07 0.61-3.05a2.71 2.71 0 0 1 0.53-0.25 1.16 1.16 0 0 1 0.34-0.06zm2 2a2.94 2.94 0 0 0-0.84 0.12 2.68 2.68 0 0 0-1.89 3.36 2.85 2.85 0 0 0 3.52 1.8 2.67 2.67 0 0 0 1.89-3.36 2.8 2.8 0 0 0-2.73-1.88zm-11.18 4.64a2 2 0 0 1 0.56 0.1c1.79 0.52 0 1.42 1.25 2.73s2.34-0.36 2.76 1.39-1.3 0.68-1.85 2.39 1.5 1.76 0.12 3-1.27-0.73-3.1-0.33-0.85 2.12-2.64 1.59 0-1.42-1.25-2.73-2.34 0.36-2.76-1.38 1.3-0.69 1.85-2.4-1.5-1.76-0.13-3 1.28 0.74 3.11 0.33c1.6-0.35 1-1.7 2.08-1.69zm13.32 1.87a2.06 2.06 0 0 1 0.64 0.14c2.06 0.77-0.66 2 0.95 3.41s2.71-1.19 3.61 0.75-1.91 0.93-1.86 3.05 2.8 1 2 3-2-0.62-3.57 0.91 1.24 2.59-0.79 3.44-1-1.82-3.19-1.77-1 2.67-3.11 1.9 0.65-1.94-0.95-3.4-2.71 1.18-3.61-0.75 1.91-0.94 1.86-3-2.8-1-2-3 2 0.63 3.57-0.9-1.24-2.59 0.79-3.44 1 1.81 3.19 1.77c1.94 0 1.28-2.06 2.47-2zm-14.49 0.91a2.7 2.7 0 1 0 2.83 2.7 2.77 2.77 0 0 0-2.88-2.69zm12.07 2.62a4 4 0 1 0 4.16 4 4.07 4.07 0 0 0-4.16-4z" data-name="path1984"/>
</g>
<g id="layer1-12-6" transform="translate(-29.085 16.39)" data-name="layer1">
<g id="g70-12-42" data-name="g70">
<path id="path3055-12-3" class="cls-11" d="m275.24 108.5a4.33 4.33 0 0 0-1.62 0.39l-22.18 10.11a4 4 0 0 0-2.29 2.72l-5.47 22.72a3.83 3.83 0 0 0 0.57 3.08l0.24 0.32 15.35 18.22a4.37 4.37 0 0 0 3.32 1.51h24.62a4.3 4.3 0 0 0 3.31-1.51l15.35-18.21a3.9 3.9 0 0 0 0.82-3.4l-5.48-22.72a4.08 4.08 0 0 0-2.3-2.72l-22.18-10.12a4.41 4.41 0 0 0-2.06-0.39z" data-name="path3055"/>
<path id="path3054-2-9-12-0" class="cls-13" d="m275.23 106.85a4.62 4.62 0 0 0-1.71 0.42l-23.41 10.67a4.32 4.32 0 0 0-2.43 2.88l-5.77 24a4 4 0 0 0 0.61 3.25c0.08 0.12 0.16 0.23 0.25 0.34l16.23 19.21a4.61 4.61 0 0 0 3.51 1.59h26a4.58 4.58 0 0 0 3.5-1.6l16.2-19.23a4 4 0 0 0 0.86-3.58l-5.78-24a4.26 4.26 0 0 0-2.42-2.87l-23.41-10.68a4.79 4.79 0 0 0-2.23-0.4zm0 1.65a4.41 4.41 0 0 1 2.06 0.39l22.19 10.11a4.08 4.08 0 0 1 2.3 2.72l5.48 22.72a3.9 3.9 0 0 1-0.82 3.4l-15.35 18.21a4.3 4.3 0 0 1-3.31 1.51h-24.62a4.37 4.37 0 0 1-3.32-1.51l-15.35-18.22-0.24-0.32a3.83 3.83 0 0 1-0.57-3.08l5.47-22.71a4 4 0 0 1 2.29-2.73l22.18-10.11a4.33 4.33 0 0 1 1.62-0.39z" data-name="path3054-2-9"/>
</g>
<g id="text2066-12-5" class="cls-14" data-name="text2066">
<text id="text221-0" class="cls-20" transform="matrix(1.05,0,0,1,266.83,162.57)">c-m</text>
</g>
<path id="path1984-6-7" class="cls-13" d="m275.4 118.51c-0.52 0-14.92 6.74-15.11 7.09-0.45 0.83-3.73 15.25-3.53 15.57s2.47 3 5.24 6.34l5 6h16.59l5.28-6.29 5.27-6.29-1.84-7.73c-1-4.25-1.93-7.8-2-7.88-0.26-0.24-14.64-6.82-14.92-6.83zm0.88 7.06c0.7 0 0.77 1 2.26 1.15 1.95 0.14 1.74-1.59 3.23-0.39s-0.33 1.3 0.13 3.11 2.12 1.08 1.38 2.81-1.39 0.1-3 1.08-0.43 2.26-2.37 2.12-0.53-1.23-2-2.44-2.39 0.31-2.85-1.5 1.06-0.86 1.81-2.58-1.05-2.07 0.61-3.05a2.71 2.71 0 0 1 0.53-0.25 1.16 1.16 0 0 1 0.34-0.06zm2 2a2.94 2.94 0 0 0-0.84 0.12 2.68 2.68 0 0 0-1.89 3.36 2.85 2.85 0 0 0 3.52 1.8 2.67 2.67 0 0 0 1.89-3.36 2.8 2.8 0 0 0-2.73-1.88zm-11.18 4.64a2 2 0 0 1 0.56 0.1c1.79 0.52 0 1.42 1.25 2.73s2.34-0.36 2.76 1.39-1.3 0.68-1.85 2.39 1.5 1.76 0.12 3-1.27-0.73-3.1-0.33-0.85 2.12-2.64 1.59 0-1.42-1.25-2.73-2.34 0.36-2.76-1.38 1.3-0.69 1.85-2.4-1.5-1.76-0.13-3 1.28 0.74 3.11 0.33c1.6-0.35 1-1.7 2.08-1.69zm13.32 1.87a2.06 2.06 0 0 1 0.64 0.14c2.06 0.77-0.66 2 0.95 3.41s2.71-1.19 3.61 0.75-1.91 0.93-1.86 3.05 2.8 1 2 3-2-0.62-3.57 0.91 1.24 2.59-0.79 3.44-1-1.82-3.19-1.77-1 2.67-3.11 1.9 0.65-1.94-0.95-3.4-2.71 1.18-3.61-0.75 1.91-0.94 1.86-3-2.8-1-2-3 2 0.63 3.57-0.9-1.24-2.59 0.79-3.44 1 1.81 3.19 1.77c1.94 0 1.28-2.06 2.47-2zm-14.49 0.91a2.7 2.7 0 1 0 2.83 2.7 2.77 2.77 0 0 0-2.88-2.69zm12.07 2.62a4 4 0 1 0 4.16 4 4.07 4.07 0 0 0-4.16-4z" data-name="path1984"/>
</g>
</g>
<text id="text257-0" class="cls-22" x="709.74622" y="273.9754" font-family="'Open Sans', sans-serif" font-size="12px"><tspan id="tspan1312-5" font-family="'Open Sans'" font-size="14.667px" font-weight="bold" text-align="center" text-anchor="middle" style="font-variant-caps:normal;font-variant-east-asian:normal;font-variant-ligatures:normal;font-variant-numeric:normal">Node</tspan></text>
<text id="text257-0-8" class="cls-22" x="870.43634" y="273.14334" font-family="'Open Sans', sans-serif" font-size="12px"><tspan id="tspan1312-5-0" font-family="'Open Sans'" font-size="14.667px" font-weight="bold" text-align="center" text-anchor="middle" style="font-variant-caps:normal;font-variant-east-asian:normal;font-variant-ligatures:normal;font-variant-numeric:normal">Node</tspan></text>
<g id="g1782" transform="translate(-123.82 -40.997)">
<path id="path24" class="cls-7" d="m482.2 151.95h391.95" stroke-width="1.5"/>
<path id="path26" d="m872.31 157.19 13.46-4.84-13.46-4.83z"/>
</g>
<g id="g3988" transform="translate(-123.82 664.74)">
<g id="g3990"></g>
</g>
<g id="g4014" transform="translate(-123.82 664.74)">
<g id="g4016"></g>
</g>
<path id="path4857" d="m468.32 368.91v100.33h47.605v-1h-46.605v-99.334z" color="#000000" color-rendering="auto" dominant-baseline="auto" fill-rule="evenodd" image-rendering="auto" shape-rendering="auto" solid-color="#000000" stop-color="#000000" style="font-feature-settings:normal;font-variant-alternates:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-variant-ligatures:normal;font-variant-numeric:normal;font-variant-position:normal;font-variation-settings:normal;inline-size:0;isolation:auto;mix-blend-mode:normal;shape-margin:0;shape-padding:0;text-decoration-color:#000000;text-decoration-line:none;text-decoration-style:solid;text-indent:0;text-orientation:mixed;text-transform:none;white-space:normal"/>
<path id="path4853" d="m346.1 259.99c-323.35-210.23-161.68-105.11 0 0z" color="#000000" color-rendering="auto" dominant-baseline="auto" fill-rule="evenodd" image-rendering="auto" shape-rendering="auto" solid-color="#000000" stop-color="#000000" style="font-feature-settings:normal;font-variant-alternates:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-variant-ligatures:normal;font-variant-numeric:normal;font-variant-position:normal;font-variation-settings:normal;inline-size:0;isolation:auto;mix-blend-mode:normal;shape-margin:0;shape-padding:0;text-decoration-color:#000000;text-decoration-line:none;text-decoration-style:solid;text-indent:0;text-orientation:mixed;text-transform:none;white-space:normal"/>
<path id="path3934" d="m629.76 369.61v100.33h45.238v-1h-44.238v-99.334z" color="#000000" color-rendering="auto" dominant-baseline="auto" fill-rule="evenodd" image-rendering="auto" shape-rendering="auto" solid-color="#000000" stop-color="#000000" style="font-feature-settings:normal;font-variant-alternates:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-variant-ligatures:normal;font-variant-numeric:normal;font-variant-position:normal;font-variation-settings:normal;inline-size:0;isolation:auto;mix-blend-mode:normal;shape-margin:0;shape-padding:0;text-decoration-color:#000000;text-decoration-line:none;text-decoration-style:solid;text-indent:0;text-orientation:mixed;text-transform:none;white-space:normal"/>
<g id="layer1" transform="translate(-312.21 93.814)">
<g id="g70">
<path id="path3055" class="cls-11" d="m861.36 328.44a4.79 4.79 0 0 0-1.82 0.46l-24.77 11.83a4.71 4.71 0 0 0-2.56 3.19l-6.12 26.59a4.66 4.66 0 0 0 0.65 3.6 3.28 3.28 0 0 0 0.27 0.38l17.14 21.32a4.75 4.75 0 0 0 3.71 1.76h27.5a4.74 4.74 0 0 0 3.7-1.77l17.14-21.32a4.68 4.68 0 0 0 0.92-4l-6.12-26.56a4.69 4.69 0 0 0-2.56-3.19l-24.79-11.83a4.76 4.76 0 0 0-2.29-0.46z"/>
<path id="path3054-2-9" class="cls-13" d="m861.34 326.51a5.09 5.09 0 0 0-1.91 0.49l-26.15 12.49a5 5 0 0 0-2.71 3.37l-6.45 28.07a4.9 4.9 0 0 0 0.68 3.8c0.09 0.14 0.18 0.27 0.28 0.4l18.1 22.5a5 5 0 0 0 3.91 1.87h29a5 5 0 0 0 3.91-1.86l18.1-22.51a5 5 0 0 0 1-4.2l-6.46-28.07a5 5 0 0 0-2.7-3.36l-26.17-12.5a5.07 5.07 0 0 0-2.43-0.49zm0 1.93a4.76 4.76 0 0 1 2.29 0.46l24.78 11.83a4.69 4.69 0 0 1 2.56 3.19l6.12 26.59a4.63 4.63 0 0 1-0.91 4l-17.12 21.29a4.75 4.75 0 0 1-3.71 1.77h-27.49a4.75 4.75 0 0 1-3.71-1.77l-17.15-21.31a3.28 3.28 0 0 1-0.27-0.38 4.66 4.66 0 0 1-0.65-3.6l6.11-26.59a4.73 4.73 0 0 1 2.57-3.18l24.77-11.84a4.79 4.79 0 0 1 1.82-0.46z"/>
</g>
<g id="text2066" class="cls-14">
<text id="text133" class="cls-15" transform="translate(841.97,391.73)">k-proxy</text>
</g>
<path id="path1994" class="cls-13" d="m861.53 338.69c-0.58 0-16.66 7.89-16.87 8.29-0.51 1-4.17 17.86-4 18.23 0.13 0.21 2.77 3.55 5.86 7.42l5.63 7h18.53l5.9-7.37 5.89-7.36-2.06-9c-1.13-5-2.15-9.13-2.25-9.23-0.29-0.28-16.36-8-16.67-8zm0.82 3.95 3.79 1.1-3.79 1.1-3.79-1.1zm-3.79 1.52 3.55 1.06v4.93l-3.53-2zm7.58 0v4l-3.53 2v-4.93zm-9.14 6.73 3.79 1.1-3.79 1.1-3.79-1.1zm9.22 0 3.78 1.11-3.79 1.1-3.8-1.1zm-13 1.52 3.55 1.06v4.93l-3.54-1.95zm7.58 0v4l-3.53 1.95v-4.93zm1.63 0 3.55 1.06v4.93l-3.53-1.95zm7.59 0v4l-3.54 1.95v-4.93zm-14.39 6.32c1.13 0 0.25 1.18 1.53 1.79s1.65-1 2.51 0.26-0.76 0.93-0.64 2.44 1.67 0.94 1 2.31-1.19-0.2-2.43 0.66 0 1.92-1.48 2-0.43-1.13-1.79-1.78-1.65 1-2.51-0.27 0.76-0.93 0.64-2.43-1.67-0.94-1-2.31 1.19 0.2 2.43-0.66 0-1.92 1.49-2zm9.74 1.52c2 0.05 0.06 1.95 1.9 2.77s1.95-1.89 3.34-0.43-1.34 1.42-0.62 3.31 2.72 0 2.66 2.05-2 0.06-2.77 1.9 1.89 1.95 0.43 3.34-1.42-1.34-3.31-0.62 0 2.72-2.05 2.66-0.06-2-1.9-2.77-2 1.89-3.34 0.43 1.34-1.42 0.62-3.31-2.72 0-2.66-2.05 2-0.06 2.77-1.9-1.89-1.95-0.43-3.34 1.42 1.34 3.31 0.62-0.01-2.72 2.01-2.66zm-9.65 1.05a2.22 2.22 0 1 0 2.21 2.22 2.22 2.22 0 0 0-2.25-2.22zm9.44 2a4.43 4.43 0 1 0 4.43 4.43 4.43 4.43 0 0 0-4.47-4.42z"/>
</g>
<g id="layer1-4" transform="translate(-312.22 93.814)" data-name="layer1">
<g id="g70-4" data-name="g70">
<path id="path3055-4" class="cls-11" d="m861.37 239.22a4.45 4.45 0 0 0-1.72 0.43l-23.45 11.21a4.46 4.46 0 0 0-2.43 3l-5.77 25.19a4.46 4.46 0 0 0 0.61 3.41c0.08 0.12 0.17 0.24 0.26 0.35l16.21 20.19a4.52 4.52 0 0 0 3.51 1.67h26a4.46 4.46 0 0 0 3.51-1.67l16.23-20.18a4.42 4.42 0 0 0 0.86-3.77l-5.79-25.17a4.46 4.46 0 0 0-2.43-3l-23.45-11.2a4.56 4.56 0 0 0-2.15-0.46z" data-name="path3055"/>
<path id="path3054-2-9-4" class="cls-13" d="m861.36 237.39a4.71 4.71 0 0 0-1.81 0.47l-24.77 11.82a4.74 4.74 0 0 0-2.56 3.19l-6.1 26.57a4.62 4.62 0 0 0 0.64 3.6 3.28 3.28 0 0 0 0.27 0.38l17.13 21.31a4.78 4.78 0 0 0 3.71 1.76h27.48a4.74 4.74 0 0 0 3.7-1.77l17.13-21.31a4.66 4.66 0 0 0 0.92-4l-6.1-26.55a4.72 4.72 0 0 0-2.56-3.18l-24.76-11.83a4.82 4.82 0 0 0-2.32-0.46zm0 1.83a4.49 4.49 0 0 1 2.17 0.43l23.47 11.2a4.48 4.48 0 0 1 2.43 3l5.79 25.15a4.42 4.42 0 0 1-0.86 3.77l-16.23 20.23a4.5 4.5 0 0 1-3.51 1.68h-26a4.49 4.49 0 0 1-3.51-1.67l-16.23-20.19c-0.09-0.11-0.18-0.23-0.26-0.35a4.42 4.42 0 0 1-0.61-3.41l5.79-25.17a4.46 4.46 0 0 1 2.43-3l23.45-11.21a4.45 4.45 0 0 1 1.72-0.43z" data-name="path3054-2-9"/>
</g>
<g id="text2066-4" class="cls-14" data-name="text2066">
<text id="text157" class="cls-16" transform="translate(843.3,299.14)">kubelet</text>
</g>
<path id="path1994-4" class="cls-13" d="m861.53 248.92c-0.54 0-15.77 7.47-16 7.85-0.48 0.93-3.95 16.91-3.74 17.25s2.61 3.37 5.54 7l5.33 6.67h17.55l11.16-14-1.95-8.56c-1.08-4.71-2-8.64-2.14-8.74-0.27-0.26-15.48-7.55-15.78-7.56zm0.78 3.74 3.59 1-3.59 1-3.59-1zm-3.59 1.44 3.36 1v4.67l-3.34-1.85zm7.18 0v3.82l-3.35 1.85v-4.67zm-8.68 6.38 3.59 1-3.59 1-3.59-1zm8.72 0 3.59 1-3.59 1-3.59-1zm-12.31 1.43 3.36 1v4.68l-3.35-1.86zm7.18 0v3.82l-3.35 1.86v-4.68zm1.54 0 3.36 1v4.68l-3.35-1.86zm7.18 0v3.82l-3.34 1.86v-4.68zm-13.62 6c1.07 0 0.24 1.11 1.45 1.69s1.56-0.93 2.38 0.25-0.73 0.88-0.61 2.31 1.58 0.89 1 2.18-1.13-0.19-2.31 0.62 0 1.82-1.4 1.94-0.4-1.07-1.7-1.69-1.56 0.93-2.37-0.25 0.73-0.88 0.61-2.31-1.59-0.88-1-2.18 1.12 0.19 2.3-0.62 0-1.82 1.41-1.94zm9.22 1.43c1.91 0.05 0.06 1.85 1.8 2.63s1.85-1.8 3.16-0.41-1.26 1.34-0.58 3.13 2.57 0 2.52 1.94-1.85 0.06-2.63 1.8 1.79 1.85 0.41 3.16-1.35-1.26-3.13-0.58 0 2.57-1.95 2.52-0.05-1.85-1.8-2.63-1.84 1.8-3.15 0.41 1.26-1.34 0.58-3.13-2.58 0-2.52-1.94 1.84-0.06 2.62-1.81-1.79-1.84-0.4-3.15 1.34 1.26 3.13 0.58 0.03-2.58 1.94-2.53zm-9.14 1a2.1 2.1 0 1 0 2.1 2.1 2.1 2.1 0 0 0-2.09-2.11zm8.94 1.9a4.2 4.2 0 1 0 4.2 4.19 4.2 4.2 0 0 0-4.2-4.2z" data-name="path1994"/>
</g>
<g id="layer1-5" transform="translate(-288.32 93.814)" data-name="layer1">
<g id="g70-5" data-name="g70">
<path id="path3055-5" class="cls-11" d="m998.15 239.22a4.45 4.45 0 0 0-1.72 0.43l-23.43 11.21a4.45 4.45 0 0 0-2.42 3l-5.79 25.17a4.42 4.42 0 0 0 0.61 3.41 2.88 2.88 0 0 0 0.26 0.35l16.2 20.21a4.52 4.52 0 0 0 3.51 1.67h26a4.49 4.49 0 0 0 3.51-1.67l16.22-20.18a4.42 4.42 0 0 0 0.9-3.82l-5.79-25.17a4.48 4.48 0 0 0-2.43-3l-23.46-11.2a4.49 4.49 0 0 0-2.17-0.41z" data-name="path3055"/>
<path id="path3054-2-9-5" class="cls-13" d="m998.13 237.39a4.81 4.81 0 0 0-1.81 0.47l-24.76 11.82a4.71 4.71 0 0 0-2.56 3.19l-6.11 26.57a4.7 4.7 0 0 0 0.64 3.6l0.27 0.38 17.14 21.31a4.76 4.76 0 0 0 3.7 1.76h27.48a4.76 4.76 0 0 0 3.71-1.77l17.17-21.31a4.66 4.66 0 0 0 0.91-4l-6.11-26.58a4.73 4.73 0 0 0-2.57-3.18l-24.76-11.83a4.77 4.77 0 0 0-2.34-0.43zm0 1.83a4.52 4.52 0 0 1 2.17 0.43l23.46 11.2a4.48 4.48 0 0 1 2.43 3l5.81 25.15a4.42 4.42 0 0 1-0.87 3.77l-16.22 20.23a4.53 4.53 0 0 1-3.51 1.68h-26a4.49 4.49 0 0 1-3.51-1.67l-16.23-20.19a2.88 2.88 0 0 1-0.26-0.35 4.42 4.42 0 0 1-0.61-3.41l5.79-25.17a4.44 4.44 0 0 1 2.42-3l23.46-11.21a4.45 4.45 0 0 1 1.72-0.43z" data-name="path3054-2-9"/>
</g>
<g id="text2066-5" class="cls-14" data-name="text2066">
<text id="text165" class="cls-16" transform="translate(980.08,299.14)">kubelet</text>
</g>
<path id="path1994-5" class="cls-13" d="m998.31 248.92c-0.55 0-15.78 7.47-16 7.85-0.48 0.93-4 16.91-3.75 17.25s2.62 3.37 5.55 7l5.33 6.67h17.56l5.59-7 5.58-7-2-8.56c-1.07-4.71-2-8.64-2.13-8.74-0.28-0.26-15.48-7.55-15.78-7.56zm0.77 3.74 3.59 1-3.59 1-3.58-1zm-3.58 1.44 3.36 1v4.67l-3.34-1.85zm7.17 0v3.82l-3.34 1.85v-4.67zm-8.67 6.38 3.59 1-3.59 1-3.59-1zm8.72 0 3.59 1-3.59 1-3.59-1zm-12.31 1.43 3.36 1v4.68l-3.34-1.86zm7.18 0v3.82l-3.35 1.86v-4.68zm1.54 0 3.36 1v4.68l-3.34-1.86zm7.18 0v3.82l-3.35 1.86v-4.68zm-13.62 6c1.06 0 0.24 1.11 1.45 1.69s1.56-0.93 2.37 0.25-0.72 0.88-0.61 2.31 1.59 0.89 1 2.18-1.13-0.19-2.31 0.62 0 1.82-1.4 1.94-0.41-1.07-1.7-1.69-1.56 0.93-2.37-0.25 0.72-0.88 0.61-2.31-1.59-0.88-1-2.18 1.12 0.19 2.3-0.62 0-1.82 1.41-1.94zm9.22 1.43c1.91 0.05 0.06 1.85 1.8 2.63s1.84-1.8 3.16-0.41-1.27 1.34-0.59 3.13 2.58 0 2.52 1.94-1.84 0.06-2.62 1.8 1.79 1.85 0.4 3.16-1.34-1.26-3.12-0.58 0 2.57-2 2.52-0.06-1.85-1.8-2.63-1.85 1.8-3.16 0.41 1.27-1.34 0.58-3.13-2.57 0-2.51-1.94 1.84-0.06 2.62-1.81-1.79-1.84-0.41-3.15 1.35 1.26 3.13 0.58 0.09-2.58 2-2.53zm-9.14 1a2.1 2.1 0 1 0 2.1 2.1 2.1 2.1 0 0 0-2.1-2.11zm8.94 1.9a4.2 4.2 0 1 0 4.19 4.19 4.2 4.2 0 0 0-4.19-4.2z" data-name="path1994"/>
</g>
<g id="layer1-3-3" transform="translate(-440.4 93.814)" data-name="layer1">
<g id="g70-3-0" data-name="g70">
<path id="path3055-3-4" class="cls-11" d="m1150.2 328.44a4.79 4.79 0 0 0-1.82 0.46l-24.77 11.83a4.71 4.71 0 0 0-2.56 3.19l-6.1 26.59a4.66 4.66 0 0 0 0.65 3.6 3.28 3.28 0 0 0 0.27 0.38l17.08 21.32a4.75 4.75 0 0 0 3.71 1.76h27.5a4.74 4.74 0 0 0 3.7-1.77l17.14-21.32a4.68 4.68 0 0 0 0.92-4l-6.13-26.58a4.69 4.69 0 0 0-2.56-3.19l-24.77-11.83a4.82 4.82 0 0 0-2.26-0.44z" data-name="path3055"/>
<path id="path3054-2-9-3-0" class="cls-13" d="m1150.2 326.51a5.09 5.09 0 0 0-1.91 0.49l-26.15 12.49a5 5 0 0 0-2.71 3.37l-6.46 28.07a4.9 4.9 0 0 0 0.68 3.8c0.09 0.14 0.18 0.27 0.28 0.4l18.1 22.5a5 5 0 0 0 3.91 1.87h29a5 5 0 0 0 3.91-1.86l18.1-22.51a5 5 0 0 0 1-4.2l-6.46-28.07a5 5 0 0 0-2.7-3.36l-26.16-12.5a5.07 5.07 0 0 0-2.43-0.49zm0 1.93a4.76 4.76 0 0 1 2.29 0.46l24.78 11.83a4.69 4.69 0 0 1 2.56 3.19l6.13 26.59a4.66 4.66 0 0 1-0.92 4l-17.07 21.29a4.74 4.74 0 0 1-3.7 1.77h-27.5a4.76 4.76 0 0 1-3.71-1.77l-17.14-21.32a3.28 3.28 0 0 1-0.27-0.38 4.66 4.66 0 0 1-0.65-3.6l6.12-26.59a4.69 4.69 0 0 1 2.56-3.18l24.77-11.84a4.79 4.79 0 0 1 1.82-0.46z" data-name="path3054-2-9"/>
</g>
<g id="text2066-3-0" class="cls-14" data-name="text2066">
<text id="text149-5" class="cls-15" transform="translate(1130.9 391.73)">k-proxy</text>
</g>
<path id="path1994-3-5" class="cls-13" d="m1150.4 338.69c-0.58 0-16.66 7.89-16.87 8.29-0.51 1-4.17 17.86-4 18.23 0.12 0.21 2.76 3.55 5.85 7.42l5.63 7h18.53l5.9-7.37 5.89-7.36-2.06-9c-1.13-5-2.15-9.13-2.25-9.23-0.29-0.28-16.36-8-16.67-8zm0.82 3.95 3.79 1.1-3.79 1.1-3.79-1.1zm-3.79 1.52 3.55 1.06v4.93l-3.53-2zm7.58 0v4l-3.53 2v-4.93zm-9.17 6.73 3.79 1.1-3.79 1.1-3.79-1.1zm9.22 0 3.79 1.1-3.79 1.1-3.8-1.1zm-13 1.52 3.55 1.06v4.93l-3.54-1.95zm7.58 0v4l-3.53 1.95v-4.93zm1.63 0 3.55 1.06v4.93l-3.53-1.95zm7.59 0v4l-3.53 1.95v-4.93zm-14.39 6.32c1.13 0 0.25 1.18 1.54 1.79s1.64-1 2.5 0.26-0.76 0.93-0.64 2.44 1.67 0.94 1 2.31-1.19-0.2-2.43 0.66 0 1.92-1.48 2-0.43-1.13-1.79-1.78-1.65 1-2.51-0.27 0.76-0.93 0.64-2.43-1.67-0.94-1-2.31 1.19 0.2 2.43-0.66 0-1.92 1.49-2zm9.74 1.52c2 0.05 0.06 1.95 1.9 2.77s2-1.89 3.34-0.43-1.34 1.42-0.62 3.31 2.72 0 2.66 2.05-2 0.06-2.77 1.9 1.89 1.95 0.43 3.34-1.42-1.34-3.3-0.62 0 2.72-2.06 2.66-0.06-2-1.9-2.77-2 1.89-3.34 0.43 1.34-1.42 0.62-3.31-2.72 0-2.66-2.05 2-0.06 2.77-1.9-1.89-1.95-0.43-3.34 1.42 1.34 3.31 0.62 0.02-2.72 2.04-2.66zm-9.65 1.05a2.22 2.22 0 1 0 2.22 2.22 2.22 2.22 0 0 0-2.23-2.22zm9.44 2a4.43 4.43 0 1 0 4.43 4.43 4.43 4.43 0 0 0-4.45-4.42z" data-name="path1994"/>
</g>
<g id="g4896" transform="translate(-138.94 -55.356)" fill-rule="evenodd" shape-rendering="auto">
<g id="g4885">
<path id="path4847" d="m594.91 274.99v27.163h-107.08v1h108.08v-27.163h333.33v250.34h49.326v-1h-48.326v-100.37h48.326v-1h-48.326v-148.98z" color="#000000" color-rendering="auto" dominant-baseline="auto" image-rendering="auto" solid-color="#000000" stop-color="#000000" style="font-feature-settings:normal;font-variant-alternates:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-variant-ligatures:normal;font-variant-numeric:normal;font-variant-position:normal;font-variation-settings:normal;inline-size:0;isolation:auto;mix-blend-mode:normal;shape-margin:0;shape-padding:0;text-decoration-color:#000000;text-decoration-line:none;text-decoration-style:solid;text-indent:0;text-orientation:mixed;text-transform:none;white-space:normal"/>
<path id="path4845" d="m488.78 300.07c-0.0266-2e-3 -0.0532 2e-3 -0.0781 0.0117l-6.5547 2.4102c-0.16295 0.0605-0.16295 0.29102 0 0.35156l6.5547 2.4121c0.1731 0.063 0.32383-0.13521 0.21679-0.28515-0.99512-1.3865-0.9987-3.2444 0-4.6016 0.0885-0.11937 0.01-0.28934-0.13867-0.29882z" color="#000000" color-rendering="auto" dominant-baseline="auto" image-rendering="auto" solid-color="#000000" stop-color="#000000" style="font-feature-settings:normal;font-variant-alternates:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-variant-ligatures:normal;font-variant-numeric:normal;font-variant-position:normal;font-variation-settings:normal;inline-size:0;isolation:auto;mix-blend-mode:normal;shape-margin:0;shape-padding:0;text-decoration-color:#000000;text-decoration-line:none;text-decoration-style:solid;text-indent:0;text-orientation:mixed;text-transform:none;white-space:normal"/>
</g>
<g id="g4877">
<path id="path4861" d="m489.69 329.63v1h117.52v94.564h47.605v-1h-46.605v-94.564z" color="#000000" color-rendering="auto" dominant-baseline="auto" image-rendering="auto" solid-color="#000000" stop-color="#000000" style="font-feature-settings:normal;font-variant-alternates:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-variant-ligatures:normal;font-variant-numeric:normal;font-variant-position:normal;font-variation-settings:normal;inline-size:0;isolation:auto;mix-blend-mode:normal;shape-margin:0;shape-padding:0;text-decoration-color:#000000;text-decoration-line:none;text-decoration-style:solid;text-indent:0;text-orientation:mixed;text-transform:none;white-space:normal"/>
<path id="path4859" d="m490.78 327.54c-0.014 2e-3 -0.0277 5e-3 -0.041 0.01l-6.5547 2.4121c-0.16295 0.0605-0.16295 0.29102 0 0.35156l6.5547 2.4102c0.17312 0.0631 0.32387-0.13522 0.2168-0.28516-0.99512-1.3865-1.0007-3.2444-2e-3 -4.6016 0.0968-0.13239-0.011-0.31652-0.17382-0.29687z" color="#000000" color-rendering="auto" dominant-baseline="auto" image-rendering="auto" solid-color="#000000" stop-color="#000000" style="font-feature-settings:normal;font-variant-alternates:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-variant-ligatures:normal;font-variant-numeric:normal;font-variant-position:normal;font-variation-settings:normal;inline-size:0;isolation:auto;mix-blend-mode:normal;shape-margin:0;shape-padding:0;text-decoration-color:#000000;text-decoration-line:none;text-decoration-style:solid;text-indent:0;text-orientation:mixed;text-transform:none;white-space:normal"/>
</g>
<g id="g4881">
<path id="path4855" d="m607.02 287.07v27.763h-117.48v1h118.48v-27.763h160.68v137.39h45.271v-1h-44.271v-137.39z" color="#000000" color-rendering="auto" dominant-baseline="auto" image-rendering="auto" solid-color="#000000" stop-color="#000000" style="font-feature-settings:normal;font-variant-alternates:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-variant-ligatures:normal;font-variant-numeric:normal;font-variant-position:normal;font-variation-settings:normal;inline-size:0;isolation:auto;mix-blend-mode:normal;shape-margin:0;shape-padding:0;text-decoration-color:#000000;text-decoration-line:none;text-decoration-style:solid;text-indent:0;text-orientation:mixed;text-transform:none;white-space:normal"/>
<path id="path4851" d="m492.11 312.75c-0.014 2e-3 -0.0278 5e-3 -0.041 0.01l-6.5547 2.4102c-0.16655 0.059-0.16655 0.29453 0 0.35352l6.5547 2.4102c0.17311 0.0631 0.32385-0.13522 0.21679-0.28516-0.99512-1.3865-0.9987-3.2444 0-4.6016 0.0978-0.13318-0.012-0.31859-0.17578-0.29688z" color="#000000" color-rendering="auto" dominant-baseline="auto" image-rendering="auto" solid-color="#000000" stop-color="#000000" style="font-feature-settings:normal;font-variant-alternates:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-variant-ligatures:normal;font-variant-numeric:normal;font-variant-position:normal;font-variation-settings:normal;inline-size:0;isolation:auto;mix-blend-mode:normal;shape-margin:0;shape-padding:0;text-decoration-color:#000000;text-decoration-line:none;text-decoration-style:solid;text-indent:0;text-orientation:mixed;text-transform:none;white-space:normal"/>
</g>
</g>
<rect id="rect1051" x="40.959" y="40.872" width="351.71" height="459.79" ry="18.916" fill="none" opacity=".95" stroke="#336de5" stroke-dasharray="20.8, 2.6" stroke-miterlimit="1.414" stroke-width="2.6"/>
<g id="g4560">
<text id="text270" class="cls-22" x="1148.4604" y="500.68777" font-family="'Open Sans', sans-serif" font-size="12px"><tspan id="tspan1047" font-family="'Open Sans'" font-size="14.667px" font-weight="600" text-align="end" text-anchor="end" style="font-variant-caps:normal;font-variant-east-asian:normal;font-variant-ligatures:normal;font-variant-numeric:normal">Control plane</tspan></text>
<text id="text270-1" class="cls-22" x="1148.0236" y="456.87979" font-family="'Open Sans', sans-serif" font-size="12px"><tspan id="tspan1047-7" font-family="'Open Sans'" font-size="14.667px" font-weight="600" text-align="end" text-anchor="end" style="font-variant-caps:normal;font-variant-east-asian:normal;font-variant-ligatures:normal;font-variant-numeric:normal">Scheduler</tspan></text>
<g id="use1797" transform="translate(-137.57 -55.356)">
<g id="g1691" transform="matrix(.71919 0 0 .71919 992.05 180.04)" data-name="layer1">
<g id="g1683" data-name="g70">
<path id="path1679" class="cls-11" d="m465.45 413.24a4.4 4.4 0 0 0-1.71 0.43l-23.38 11.13a4.43 4.43 0 0 0-2.42 3l-5.77 25a4.36 4.36 0 0 0 0.61 3.39 2.8 2.8 0 0 0 0.25 0.35l16.18 20.06a4.5 4.5 0 0 0 3.5 1.66h26a4.5 4.5 0 0 0 3.5-1.66l16.18-20.06a4.35 4.35 0 0 0 0.86-3.74l-5.77-25a4.44 4.44 0 0 0-2.42-3l-23.39-11.13a4.49 4.49 0 0 0-2.22-0.43z" data-name="path3055"/>
<path id="path1681" class="cls-13" d="m465.44 411.43a4.73 4.73 0 0 0-1.81 0.45l-24.63 11.76a4.66 4.66 0 0 0-2.56 3.16l-6.09 26.4a4.65 4.65 0 0 0 0.64 3.58l0.27 0.37 17.09 21.18a4.72 4.72 0 0 0 3.69 1.75h27.4a4.76 4.76 0 0 0 3.69-1.76l17.08-21.17a4.64 4.64 0 0 0 0.91-3.95l-6.12-26.4a4.69 4.69 0 0 0-2.55-3.17l-24.69-11.75a4.75 4.75 0 0 0-2.32-0.45zm0 1.81a4.52 4.52 0 0 1 2.17 0.43l23.39 11.13a4.42 4.42 0 0 1 2.41 3l5.78 25a4.35 4.35 0 0 1-0.86 3.74l-16.18 20.06a4.5 4.5 0 0 1-3.5 1.66h-26a4.5 4.5 0 0 1-3.5-1.66l-16.15-20.05c-0.09-0.11-0.18-0.23-0.26-0.35a4.4 4.4 0 0 1-0.6-3.39l5.77-25a4.43 4.43 0 0 1 2.42-3l23.38-11.13a4.4 4.4 0 0 1 1.71-0.43z" data-name="path3054-2-9"/>
</g>
<g id="g1687" class="cls-14" data-name="text2066">
<text id="text1685" class="cls-17" transform="translate(451.08,472.77)">sched</text>
</g>
<path id="path1689" class="cls-13" d="m465.61 424.26c-0.54 0-15.72 7.42-15.92 7.8-0.48 0.92-3.93 16.8-3.73 17.14s2.61 3.35 5.53 7l5.31 6.62h17.49l5.57-6.93 5.56-6.92-1.95-8.51c-1.07-4.68-2-8.59-2.12-8.68-0.28-0.26-15.44-7.51-15.74-7.52zm0.93 7.78c0.74 0 0.81 1.14 2.39 1.26 2.05 0.15 1.83-1.75 3.4-0.43s-0.35 1.43 0.14 3.42 2.24 1.2 1.46 3.1-1.47 0.1-3.22 1.18-0.45 2.5-2.51 2.34-0.55-1.35-2.12-2.68-2.52 0.34-3-1.65 1.13-0.95 1.91-2.85-1.11-2.28 0.64-3.36a2.78 2.78 0 0 1 0.56-0.27 1 1 0 0 1 0.36-0.06zm2.06 2.24a2.89 2.89 0 0 0-0.88 0.13 3 3 0 1 0 0.88-0.13zm-11.78 5.11a2.21 2.21 0 0 1 0.58 0.11c1.89 0.58 0 1.57 1.32 3s2.47-0.4 2.91 1.52-1.37 0.76-1.95 2.64 1.58 1.94 0.13 3.28-1.34-0.81-3.27-0.37-0.89 2.34-2.78 1.76 0-1.57-1.32-3-2.47 0.4-2.92-1.52 1.38-0.76 2-2.64-1.58-1.94-0.14-3.28 1.35 0.81 3.28 0.36c1.68-0.38 1.1-1.88 2.2-1.86zm14 2.06a2 2 0 0 1 0.67 0.15c2.18 0.85-0.69 2.15 1 3.75s2.86-1.3 3.8 0.83-2 1-1.95 3.36 2.95 1.09 2.1 3.26-2.15-0.69-3.76 1 1.31 2.85-0.83 3.79-1-2-3.37-1.95-1.1 2.94-3.27 2.1 0.69-2.15-1-3.75-2.86 1.3-3.81-0.83 2-1 2-3.36-2.95-1.09-2.11-3.26 2.15 0.69 3.77-1-1.31-2.85 0.83-3.79 1 2 3.36 1.95c2.05-0.05 1.36-2.26 2.61-2.25zm-15.28 1a3 3 0 1 0 3 3 3 3 0 0 0-2.96-3zm12.81 2.85a4.38 4.38 0 1 0 4.39 4.37 4.37 4.37 0 0 0-4.35-4.37z" data-name="path1984"/>
</g>
</g>
<text id="text270-1-1-5" class="cls-22" x="1148.0236" y="106.06998" font-family="'Open Sans'" font-size="14.667px" font-weight="600" text-anchor="end" style="font-variant-caps:normal;font-variant-east-asian:normal;font-variant-ligatures:normal;font-variant-numeric:normal"><tspan id="tspan4599" x="1148.0236" y="106.06998" text-align="end">Cloud controller</tspan><tspan id="tspan4601" x="1148.0236" y="124.40336" text-align="end">manager</tspan><tspan id="tspan4603" x="1148.0236" y="142.73674" font-style="italic" text-align="end">(optional)</tspan></text>
<g id="use1603" transform="translate(-138.94 -54.387)">
<g id="g2359" transform="matrix(.7857 0 0 .7857 963.45 64.034)" data-name="layer1">
<g id="g2351" data-name="g70">
<path id="path2347" class="cls-11" d="m462.48 109.72a4.33 4.33 0 0 0-1.65 0.42l-22.55 10.77a4.29 4.29 0 0 0-2.33 2.9l-5.56 24.19a4.22 4.22 0 0 0 0.59 3.28 2.62 2.62 0 0 0 0.24 0.34l15.61 19.38a4.29 4.29 0 0 0 3.37 1.61h25a4.34 4.34 0 0 0 3.37-1.6l15.6-19.41a4.22 4.22 0 0 0 0.83-3.6l-5.57-24.19a4.27 4.27 0 0 0-2.33-2.9l-22.55-10.77a4.31 4.31 0 0 0-2.07-0.42z" data-name="path3055"/>
<path id="path2349" class="cls-13" d="m462.47 108a4.56 4.56 0 0 0-1.74 0.44l-23.8 11.37a4.53 4.53 0 0 0-2.47 3.06l-5.87 25.55a4.49 4.49 0 0 0 0.62 3.46l0.26 0.36 16.47 20.48a4.57 4.57 0 0 0 3.56 1.7h26.42a4.56 4.56 0 0 0 3.56-1.69l16.46-20.49a4.44 4.44 0 0 0 0.88-3.81l-5.88-25.55a4.5 4.5 0 0 0-2.46-3.06l-23.8-11.37a4.57 4.57 0 0 0-2.21-0.45zm0 1.75a4.31 4.31 0 0 1 2.09 0.42l22.55 10.77a4.27 4.27 0 0 1 2.33 2.9l5.56 24.16a4.21 4.21 0 0 1-0.83 3.62l-15.58 19.38a4.31 4.31 0 0 1-3.37 1.6h-25a4.33 4.33 0 0 1-3.38-1.61l-15.6-19.4c-0.09-0.11-0.17-0.22-0.25-0.34a4.26 4.26 0 0 1-0.58-3.28l5.56-24.2a4.29 4.29 0 0 1 2.33-2.9l22.55-10.77a4.33 4.33 0 0 1 1.65-0.42z" data-name="path3054-2-9"/>
</g>
<g id="g2355" class="cls-14" data-name="text2066">
<text id="text2353" class="cls-19" transform="translate(449.46,167.32)">c-c-m</text>
</g>
<path id="path2357" class="cls-13" d="m462.64 120.39c-0.53 0-15.17 7.18-15.36 7.55-0.46 0.88-3.79 16.25-3.59 16.58s2.51 3.23 5.33 6.76l5.12 6.4h16.86l5.36-6.7 5.37-6.7-1.88-8.23c-1-4.53-2-8.31-2.05-8.4-0.27-0.25-14.89-7.26-15.17-7.27zm0.9 7.52c0.7 0 0.78 1.11 2.29 1.22 2 0.15 1.77-1.69 3.28-0.41s-0.33 1.38 0.14 3.31 2.16 1.15 1.4 3-1.41 0.1-3.1 1.15-0.43 2.41-2.41 2.26-0.54-1.31-2.05-2.6-2.43 0.34-2.9-1.59 1.08-0.92 1.83-2.75-1.06-2.21 0.63-3.25a2.45 2.45 0 0 1 0.54-0.27 0.92 0.92 0 0 1 0.35-0.06zm2 2.17a3 3 0 0 0-0.84 0.12 2.88 2.88 0 1 0 0.84-0.12zm-11.38 4.92a2.47 2.47 0 0 1 0.56 0.11c1.82 0.56 0 1.51 1.27 2.91s2.38-0.38 2.81 1.47-1.33 0.73-1.89 2.56 1.53 1.87 0.13 3.17-1.29-0.78-3.15-0.35-0.86 2.25-2.68 1.69 0-1.51-1.27-2.91-2.39 0.38-2.82-1.47 1.33-0.73 1.89-2.56-1.53-1.87-0.13-3.17 1.3 0.78 3.15 0.36c1.63-0.38 1.07-1.82 2.13-1.81zm13.54 2a1.81 1.81 0 0 1 0.64 0.14c2.1 0.82-0.66 2.08 1 3.63s2.77-1.26 3.67 0.8-1.93 1-1.88 3.25 2.84 1.06 2 3.16-2.07-0.67-3.63 1 1.26 2.76-0.8 3.67-1-1.94-3.25-1.89-1.06 2.85-3.16 2 0.67-2.07-1-3.63-2.76 1.27-3.67-0.79 1.94-1 1.89-3.25-2.85-1.06-2-3.16 2.07 0.67 3.63-1-1.26-2.76 0.8-3.67 1 1.93 3.24 1.88c2 0 1.31-2.19 2.52-2.17zm-14.7 1a2.88 2.88 0 1 0 2.87 2.88 2.88 2.88 0 0 0-2.87-2.88zm12.35 2.76a4.23 4.23 0 1 0 4.24 4.23 4.23 4.23 0 0 0-4.28-4.25z" data-name="path1984"/>
</g>
</g>
<text id="text270-1-1-5-8" class="cls-22" x="1148.0236" y="186.10117" font-family="'Open Sans'" font-size="14.667px" font-weight="600" style="font-variant-caps:normal;font-variant-east-asian:normal;font-variant-ligatures:normal;font-variant-numeric:normal"><tspan id="tspan4605" x="1148.0236" y="186.10117" text-align="end" text-anchor="end">Controller</tspan><tspan id="tspan4607" x="1148.0236" y="204.43454"><tspan id="tspan4609" text-align="end" text-anchor="end">manage</tspan>r</tspan></text>
<g id="use1635" transform="translate(-138.44 -53.418)">
<g id="g1625" transform="matrix(.78345 0 0 .78345 1111.2 130.81)" data-name="layer1">
<g id="g1617" data-name="g70">
<path id="path1613" class="cls-11" d="m275.24 108.5a4.33 4.33 0 0 0-1.62 0.39l-22.18 10.11a4 4 0 0 0-2.29 2.72l-5.47 22.72a3.83 3.83 0 0 0 0.57 3.08l0.24 0.32 15.35 18.22a4.37 4.37 0 0 0 3.32 1.51h24.62a4.3 4.3 0 0 0 3.31-1.51l15.35-18.21a3.9 3.9 0 0 0 0.82-3.4l-5.48-22.72a4.08 4.08 0 0 0-2.3-2.72l-22.18-10.12a4.41 4.41 0 0 0-2.06-0.39z" data-name="path3055"/>
<path id="path1615" class="cls-13" d="m275.23 106.85a4.62 4.62 0 0 0-1.71 0.42l-23.41 10.67a4.32 4.32 0 0 0-2.43 2.88l-5.77 24a4 4 0 0 0 0.61 3.25c0.08 0.12 0.16 0.23 0.25 0.34l16.23 19.21a4.61 4.61 0 0 0 3.51 1.59h26a4.58 4.58 0 0 0 3.5-1.6l16.2-19.23a4 4 0 0 0 0.86-3.58l-5.78-24a4.26 4.26 0 0 0-2.42-2.87l-23.41-10.68a4.79 4.79 0 0 0-2.23-0.4zm0 1.65a4.41 4.41 0 0 1 2.06 0.39l22.19 10.11a4.08 4.08 0 0 1 2.3 2.72l5.48 22.72a3.9 3.9 0 0 1-0.82 3.4l-15.35 18.21a4.3 4.3 0 0 1-3.31 1.51h-24.62a4.37 4.37 0 0 1-3.32-1.51l-15.35-18.22-0.24-0.32a3.83 3.83 0 0 1-0.57-3.08l5.47-22.71a4 4 0 0 1 2.29-2.73l22.18-10.11a4.33 4.33 0 0 1 1.62-0.39z" data-name="path3054-2-9"/>
</g>
<g id="g1621" class="cls-14" data-name="text2066">
<text id="text1619" class="cls-20" transform="matrix(1.05,0,0,1,266.83,162.57)">c-m</text>
</g>
<path id="path1623" class="cls-13" d="m275.4 118.51c-0.52 0-14.92 6.74-15.11 7.09-0.45 0.83-3.73 15.25-3.53 15.57s2.47 3 5.24 6.34l5 6h16.59l5.28-6.29 5.27-6.29-1.84-7.73c-1-4.25-1.93-7.8-2-7.88-0.26-0.24-14.64-6.82-14.92-6.83zm0.88 7.06c0.7 0 0.77 1 2.26 1.15 1.95 0.14 1.74-1.59 3.23-0.39s-0.33 1.3 0.13 3.11 2.12 1.08 1.38 2.81-1.39 0.1-3 1.08-0.43 2.26-2.37 2.12-0.53-1.23-2-2.44-2.39 0.31-2.85-1.5 1.06-0.86 1.81-2.58-1.05-2.07 0.61-3.05a2.71 2.71 0 0 1 0.53-0.25 1.16 1.16 0 0 1 0.34-0.06zm2 2a2.94 2.94 0 0 0-0.84 0.12 2.68 2.68 0 0 0-1.89 3.36 2.85 2.85 0 0 0 3.52 1.8 2.67 2.67 0 0 0 1.89-3.36 2.8 2.8 0 0 0-2.73-1.88zm-11.18 4.64a2 2 0 0 1 0.56 0.1c1.79 0.52 0 1.42 1.25 2.73s2.34-0.36 2.76 1.39-1.3 0.68-1.85 2.39 1.5 1.76 0.12 3-1.27-0.73-3.1-0.33-0.85 2.12-2.64 1.59 0-1.42-1.25-2.73-2.34 0.36-2.76-1.38 1.3-0.69 1.85-2.4-1.5-1.76-0.13-3 1.28 0.74 3.11 0.33c1.6-0.35 1-1.7 2.08-1.69zm13.32 1.87a2.06 2.06 0 0 1 0.64 0.14c2.06 0.77-0.66 2 0.95 3.41s2.71-1.19 3.61 0.75-1.91 0.93-1.86 3.05 2.8 1 2 3-2-0.62-3.57 0.91 1.24 2.59-0.79 3.44-1-1.82-3.19-1.77-1 2.67-3.11 1.9 0.65-1.94-0.95-3.4-2.71 1.18-3.61-0.75 1.91-0.94 1.86-3-2.8-1-2-3 2 0.63 3.57-0.9-1.24-2.59 0.79-3.44 1 1.81 3.19 1.77c1.94 0 1.28-2.06 2.47-2zm-14.49 0.91a2.7 2.7 0 1 0 2.83 2.7 2.77 2.77 0 0 0-2.88-2.69zm12.07 2.62a4 4 0 1 0 4.16 4 4.07 4.07 0 0 0-4.16-4z" data-name="path1984"/>
</g>
</g>
<text id="text270-1-2" class="cls-22" x="1147.3718" y="327.01175" font-family="'Open Sans', sans-serif" font-size="12px"><tspan id="tspan1047-7-2" font-family="'Open Sans'" font-size="14.667px" font-style="italic" font-weight="600" text-align="end" text-anchor="end" style="font-variant-caps:normal;font-variant-east-asian:normal;font-variant-ligatures:normal;font-variant-numeric:normal">kubelet</tspan></text>
<g id="use1733" transform="translate(-139.16 -55.212)">
<g id="g1659" transform="matrix(.76104 0 0 .76104 567.17 163.65)" data-name="layer1">
<g id="g1651" data-name="g70">
<path id="path1647" class="cls-11" d="m998.15 239.22a4.45 4.45 0 0 0-1.72 0.43l-23.43 11.21a4.45 4.45 0 0 0-2.42 3l-5.79 25.17a4.42 4.42 0 0 0 0.61 3.41 2.88 2.88 0 0 0 0.26 0.35l16.2 20.21a4.52 4.52 0 0 0 3.51 1.67h26a4.49 4.49 0 0 0 3.51-1.67l16.22-20.18a4.42 4.42 0 0 0 0.9-3.82l-5.79-25.17a4.48 4.48 0 0 0-2.43-3l-23.46-11.2a4.49 4.49 0 0 0-2.17-0.41z" data-name="path3055"/>
<path id="path1649" class="cls-13" d="m998.13 237.39a4.81 4.81 0 0 0-1.81 0.47l-24.76 11.82a4.71 4.71 0 0 0-2.56 3.19l-6.11 26.57a4.7 4.7 0 0 0 0.64 3.6l0.27 0.38 17.14 21.31a4.76 4.76 0 0 0 3.7 1.76h27.48a4.76 4.76 0 0 0 3.71-1.77l17.17-21.31a4.66 4.66 0 0 0 0.91-4l-6.11-26.58a4.73 4.73 0 0 0-2.57-3.18l-24.76-11.83a4.77 4.77 0 0 0-2.34-0.43zm0 1.83a4.52 4.52 0 0 1 2.17 0.43l23.46 11.2a4.48 4.48 0 0 1 2.43 3l5.81 25.15a4.42 4.42 0 0 1-0.87 3.77l-16.22 20.23a4.53 4.53 0 0 1-3.51 1.68h-26a4.49 4.49 0 0 1-3.51-1.67l-16.23-20.19a2.88 2.88 0 0 1-0.26-0.35 4.42 4.42 0 0 1-0.61-3.41l5.79-25.17a4.44 4.44 0 0 1 2.42-3l23.46-11.21a4.45 4.45 0 0 1 1.72-0.43z" data-name="path3054-2-9"/>
</g>
<g id="g1655" class="cls-14" data-name="text2066">
<text id="text1653" class="cls-16" transform="translate(980.08,299.14)">kubelet</text>
</g>
<path id="path1657" class="cls-13" d="m998.31 248.92c-0.55 0-15.78 7.47-16 7.85-0.48 0.93-4 16.91-3.75 17.25s2.62 3.37 5.55 7l5.33 6.67h17.56l5.59-7 5.58-7-2-8.56c-1.07-4.71-2-8.64-2.13-8.74-0.28-0.26-15.48-7.55-15.78-7.56zm0.77 3.74 3.59 1-3.59 1-3.58-1zm-3.58 1.44 3.36 1v4.67l-3.34-1.85zm7.17 0v3.82l-3.34 1.85v-4.67zm-8.67 6.38 3.59 1-3.59 1-3.59-1zm8.72 0 3.59 1-3.59 1-3.59-1zm-12.31 1.43 3.36 1v4.68l-3.34-1.86zm7.18 0v3.82l-3.35 1.86v-4.68zm1.54 0 3.36 1v4.68l-3.34-1.86zm7.18 0v3.82l-3.35 1.86v-4.68zm-13.62 6c1.06 0 0.24 1.11 1.45 1.69s1.56-0.93 2.37 0.25-0.72 0.88-0.61 2.31 1.59 0.89 1 2.18-1.13-0.19-2.31 0.62 0 1.82-1.4 1.94-0.41-1.07-1.7-1.69-1.56 0.93-2.37-0.25 0.72-0.88 0.61-2.31-1.59-0.88-1-2.18 1.12 0.19 2.3-0.62 0-1.82 1.41-1.94zm9.22 1.43c1.91 0.05 0.06 1.85 1.8 2.63s1.84-1.8 3.16-0.41-1.27 1.34-0.59 3.13 2.58 0 2.52 1.94-1.84 0.06-2.62 1.8 1.79 1.85 0.4 3.16-1.34-1.26-3.12-0.58 0 2.57-2 2.52-0.06-1.85-1.8-2.63-1.85 1.8-3.16 0.41 1.27-1.34 0.58-3.13-2.57 0-2.51-1.94 1.84-0.06 2.62-1.81-1.79-1.84-0.41-3.15 1.35 1.26 3.13 0.58 0.09-2.58 2-2.53zm-9.14 1a2.1 2.1 0 1 0 2.1 2.1 2.1 2.1 0 0 0-2.1-2.11zm8.94 1.9a4.2 4.2 0 1 0 4.19 4.19 4.2 4.2 0 0 0-4.19-4.2z" data-name="path1994"/>
</g>
</g>
<text id="text270-1-2-2" class="cls-22" x="1147.021" y="390.25568" font-family="'Open Sans', sans-serif" font-size="12px"><tspan id="tspan1047-7-2-9" font-family="'Open Sans'" font-size="14.667px" font-style="italic" font-weight="600" text-align="end" text-anchor="end" style="font-variant-caps:normal;font-variant-east-asian:normal;font-variant-ligatures:normal;font-variant-numeric:normal">kube-proxy</tspan></text>
<g id="use1765" transform="translate(-137.85 -54.676)">
<g id="g1675" transform="matrix(.68635 0 0 .68635 641.76 185.86)" data-name="layer1">
<g id="g1667" data-name="g70">
<path id="path1663" class="cls-11" d="m998.13 328.44a4.75 4.75 0 0 0-1.81 0.46l-24.77 11.83a4.72 4.72 0 0 0-2.57 3.19l-6.11 26.59a4.7 4.7 0 0 0 0.64 3.6l0.27 0.38 17.15 21.32a4.73 4.73 0 0 0 3.7 1.76h27.5a4.76 4.76 0 0 0 3.71-1.77l17.16-21.32a4.67 4.67 0 0 0 0.91-4l-6.12-26.58a4.69 4.69 0 0 0-2.56-3.19l-24.78-11.83a4.77 4.77 0 0 0-2.32-0.44z" data-name="path3055"/>
<path id="path1665" class="cls-13" d="m998.12 326.51a5.09 5.09 0 0 0-1.91 0.49l-26.16 12.49a5 5 0 0 0-2.7 3.37l-6.45 28.07a4.9 4.9 0 0 0 0.67 3.8c0.09 0.14 0.19 0.27 0.29 0.4l18.1 22.5a5 5 0 0 0 3.91 1.87h29a5 5 0 0 0 3.91-1.86l18.09-22.51a4.92 4.92 0 0 0 1-4.2l-6.46-28.07a5 5 0 0 0-2.71-3.36l-26.15-12.5a5.1 5.1 0 0 0-2.43-0.49zm0 1.93a4.77 4.77 0 0 1 2.3 0.46l24.78 11.83a4.69 4.69 0 0 1 2.56 3.19l6.12 26.59a4.66 4.66 0 0 1-0.91 4l-17.14 21.32a4.76 4.76 0 0 1-3.71 1.77h-27.5a4.74 4.74 0 0 1-3.7-1.77l-17.15-21.32-0.27-0.38a4.66 4.66 0 0 1-0.64-3.6l6.14-26.61a4.72 4.72 0 0 1 2.56-3.18l24.78-11.84a4.75 4.75 0 0 1 1.81-0.46z" data-name="path3054-2-9"/>
</g>
<g id="g1671" class="cls-14" data-name="text2066">
<text id="text1669" class="cls-15" transform="translate(978.75,391.73)">k-proxy</text>
</g>
<path id="path1673" class="cls-13" d="m998.31 338.69c-0.58 0-16.67 7.89-16.88 8.29-0.5 1-4.16 17.86-3.95 18.23 0.13 0.21 2.76 3.55 5.86 7.42l5.63 7h18.53l5.89-7.37 5.9-7.36-2.06-9c-1.14-5-2.15-9.13-2.26-9.23-0.29-0.28-16.35-8-16.66-8zm0.81 3.95 3.8 1.1-3.8 1.1-3.79-1.1zm-3.79 1.52 3.55 1.06v4.93l-3.54-2zm7.59 0v4l-3.54 2v-4.93zm-9.17 6.73 3.79 1.1-3.79 1.1-3.75-1.09zm9.21 0 3.79 1.1-3.79 1.1-3.79-1.1zm-13 1.52 3.55 1.06v4.93l-3.51-1.95zm7.58 0v4l-3.54 1.99v-4.93zm1.63 0 3.55 1.06v4.93l-3.53-1.95zm7.58 0v4l-3.53 1.95v-4.93zm-14.39 6.32c1.13 0 0.26 1.18 1.54 1.79s1.65-1 2.51 0.26-0.77 0.93-0.64 2.44 1.67 0.94 1 2.31-1.19-0.2-2.44 0.66 0 1.92-1.48 2-0.42-1.13-1.79-1.78-1.65 1-2.51-0.27 0.77-0.93 0.65-2.43-1.68-0.94-1-2.31 1.19 0.2 2.44-0.66 0-1.92 1.48-2zm9.75 1.52c2 0.05 0.06 1.95 1.9 2.77s2-1.89 3.33-0.43-1.33 1.42-0.61 3.31 2.72 0 2.66 2.05-1.95 0.06-2.77 1.9 1.89 1.95 0.43 3.34-1.42-1.34-3.31-0.62 0 2.72-2 2.66-0.06-2-1.9-2.77-2 1.89-3.34 0.43 1.33-1.42 0.61-3.31-2.71 0-2.66-2.05 2-0.06 2.78-1.9-1.9-1.95-0.43-3.34 1.42 1.34 3.3 0.62-0.01-2.72 2.01-2.66zm-9.66 1.05a2.22 2.22 0 1 0 2.22 2.22 2.22 2.22 0 0 0-2.22-2.22zm9.45 2a4.43 4.43 0 1 0 4.43 4.43 4.43 4.43 0 0 0-4.43-4.42z" data-name="path1994"/>
</g>
</g>
<g id="g2164" transform="translate(-137.51 -337.4)" font-family="'Open Sans'" font-size="14.667px">
<text id="text270-1-2-9" class="cls-22" x="1159.5905" y="587.27118" style="font-variant-caps:normal;font-variant-east-asian:normal;font-variant-ligatures:normal;font-variant-numeric:normal"><tspan id="tspan2127" x="1159.5905" y="587.27118" style="font-variant-caps:normal;font-variant-east-asian:normal;font-variant-ligatures:normal;font-variant-numeric:normal"/><tspan id="tspan2129" x="1159.5905" y="605.60455" style="font-variant-caps:normal;font-variant-east-asian:normal;font-variant-ligatures:normal;font-variant-numeric:normal">(persistence store)</tspan></text>
<text id="text270-1-2-9-0" class="cls-22" x="1255.2429" y="571.36078" style="font-variant-caps:normal;font-variant-east-asian:normal;font-variant-ligatures:normal;font-variant-numeric:normal"><tspan id="tspan2127-4" x="1255.2429" y="571.36078" style="font-variant-caps:normal;font-variant-east-asian:normal;font-variant-ligatures:normal;font-variant-numeric:normal"/><tspan id="tspan2129-1" x="1255.2429" y="589.69415" style="font-variant-caps:normal;font-variant-east-asian:normal;font-variant-ligatures:normal;font-variant-numeric:normal">etcd</tspan></text>
</g>
<g id="use1668" transform="translate(-138.38 -53.843)">
<g id="g1643" transform="matrix(.78889 0 0 .78889 1109.7 -42.901)" data-name="layer1">
<g id="g1633" data-name="g70">
<path id="path1629" class="cls-11" d="m276.45 411.42a4.3 4.3 0 0 0-1.63 0.32l-22.3 9a4 4 0 0 0-2.37 2.55l-6.15 21.76a3.65 3.65 0 0 0 0.48 3 3.46 3.46 0 0 0 0.22 0.31l14.64 18.08a4.36 4.36 0 0 0 3.23 1.57l24.41 0.8a4.35 4.35 0 0 0 3.33-1.35l15.79-17.06a3.67 3.67 0 0 0 0.93-3.25l-4.71-22.09a4 4 0 0 0-2.19-2.71l-21.66-10.48a4.51 4.51 0 0 0-2.02-0.45z" data-name="path3055"/>
<path id="path1631" class="cls-13" d="m276.49 409.83a4.7 4.7 0 0 0-1.71 0.35l-23.56 9.52a4.18 4.18 0 0 0-2.49 2.69l-6.49 22.94a3.85 3.85 0 0 0 0.5 3.16 2 2 0 0 0 0.24 0.33l15.45 19.09a4.59 4.59 0 0 0 3.41 1.65l25.76 0.85a4.62 4.62 0 0 0 3.52-1.42l16.68-18a3.86 3.86 0 0 0 1-3.43l-5-23.32a4.17 4.17 0 0 0-2.31-2.85l-22.86-11.09a4.78 4.78 0 0 0-2.14-0.47zm0 1.59a4.51 4.51 0 0 1 2 0.44l21.66 10.48a4 4 0 0 1 2.19 2.71l4.7 22.09a3.63 3.63 0 0 1-0.92 3.25l-15.79 17.07a4.38 4.38 0 0 1-3.33 1.34l-24.4-0.8a4.34 4.34 0 0 1-3.23-1.57l-14.67-18.08-0.23-0.31a3.69 3.69 0 0 1-0.47-3l6.15-21.73a4 4 0 0 1 2.36-2.55l22.31-9a4.73 4.73 0 0 1 1.63-0.32z" data-name="path3054-2-9"/>
</g>
<g id="g1637" class="cls-14" data-name="text2066">
<text id="text1635" class="cls-23" transform="matrix(1.0794 .035808 -.033155 .99945 265.24 463.26)">etcd</text>
</g>
<path id="path1639" class="cls-13" d="m276.28 421.08c-0.51 0-15 6-15.2 6.34-0.48 0.79-4.19 14.59-4 14.9s2.36 3 5 6.29l4.8 6 8.22 0.28 8.23 0.27 5.43-5.89 5.43-5.9-1.58-7.51c-0.87-4.14-1.66-7.59-1.75-7.67-0.25-0.24-14.29-7.06-14.57-7.08z"/>
<path id="path1641" class="cls-11" d="m291.05 440.37h-0.46a6.3 6.3 0 0 1-2.62-0.66 21 21 0 0 0 0.5-4.32 23.86 23.86 0 0 0-2.91-3.42 5.77 5.77 0 0 1 2.2-2l0.4-0.21-0.3-0.33a15.84 15.84 0 0 0-5.42-3.94l-0.42-0.19-0.12 0.41a5.43 5.43 0 0 1-1.58 2.49 25.41 25.41 0 0 0-4.3-1.81 25 25 0 0 0-4.39 1.52 5.44 5.44 0 0 1-1.42-2.58l-0.09-0.42-0.43 0.16a16 16 0 0 0-5.69 3.53l-0.31 0.31 0.38 0.23a5.7 5.7 0 0 1 2.05 2.18 23.53 23.53 0 0 0-3.12 3.2 21.37 21.37 0 0 0 0.2 4.37 6.36 6.36 0 0 1-2.64 0.48 3.44 3.44 0 0 1-0.46 0h-0.45v0.43a13.9 13.9 0 0 0 1.93 6.13l0.22 0.38 0.36-0.27a6.23 6.23 0 0 1 2.86-1.13 22.92 22.92 0 0 0 2.3 3.74 26.46 26.46 0 0 0 4.55 1.2 5.11 5.11 0 0 1-0.48 2.89l-0.18 0.39 0.44 0.11a16.83 16.83 0 0 0 3.43 0.46l3.44-0.24 0.45-0.07-0.16-0.4a5.15 5.15 0 0 1-0.28-2.92 25.82 25.82 0 0 0 4.6-0.9 21.72 21.72 0 0 0 2.54-3.58 6.07 6.07 0 0 1 2.8 1.33l0.34 0.28 0.25-0.36a13.91 13.91 0 0 0 2.33-6l0.06-0.42zm-10.73 4.83a20 20 0 0 1-9.83-0.33 17.16 17.16 0 0 1-2-4.18 16.22 16.22 0 0 1-0.74-4.55 18.44 18.44 0 0 1 3.67-3 19.34 19.34 0 0 1 4.42-2.05 19.57 19.57 0 0 1 4.26 2.34 18.38 18.38 0 0 1 3.48 3.29 16.19 16.19 0 0 1-1.05 4.47 17.09 17.09 0 0 1-2.21 4.01zm-3.32-7.39a2.08 2.08 0 0 0 4.15 0.14 2.08 2.08 0 0 0-4.15-0.14zm-2.69-0.09a2.08 2.08 0 1 1-2-2 2 2 0 0 1 2 2z"/>
</g>
</g>
<text id="text257-0-8-7" class="cls-22" x="1148.4604" y="550.76685" font-family="'Open Sans', sans-serif" font-size="12px"><tspan id="tspan1312-5-0-5" font-family="'Open Sans'" font-size="14.667px" font-weight="600" text-align="end" text-anchor="end" style="font-variant-caps:normal;font-variant-east-asian:normal;font-variant-ligatures:normal;font-variant-numeric:normal">Node</tspan></text>
<path id="path2202" class="cls-8" d="m1168.6 519.39-1 0.22-1.75 1.68-1.37 2.74-0.78 3.82v33.602l0.78 3.8 1.37 3 1.75 1.47 1 0.2h38.909l1.07-0.2 1.76-1.47 1.2699-3 0.78-3.8v-33.602l-0.78-3.82-1.2699-2.74-1.76-1.68-1.07-0.22z"/>
<text id="text270-1-1" class="cls-22" x="1076.4661" y="67.477371" font-family="'Open Sans', sans-serif" font-size="12px"><tspan id="tspan1047-7-1" font-family="'Open Sans'" font-size="14.667px" font-weight="600" style="font-variant-caps:normal;font-variant-east-asian:normal;font-variant-ligatures:normal;font-variant-numeric:normal">API server</tspan></text>
<g id="use1518" transform="translate(-137.9 -55.356)">
<g id="g1609" transform="matrix(.78098 0 0 .78098 964.75 -113.64)" data-name="layer1">
<g id="g1601" data-name="g70">
<path id="path1597" class="cls-11" d="m463.61 257.22a4.39 4.39 0 0 0-1.6 0.4l-21.81 10.43a4.15 4.15 0 0 0-2.26 2.8l-5.38 23.41a4.12 4.12 0 0 0 0.57 3.17 3.43 3.43 0 0 0 0.24 0.33l15.09 18.77a4.19 4.19 0 0 0 3.26 1.55h24.21a4.19 4.19 0 0 0 3.26-1.55l15.09-18.78a4.12 4.12 0 0 0 0.81-3.5l-5.39-23.4a4.16 4.16 0 0 0-2.26-2.81l-21.81-10.42a4.16 4.16 0 0 0-2.02-0.4z" data-name="path3055"/>
<path id="path1599" class="cls-13" d="m463.6 255.53a4.48 4.48 0 0 0-1.69 0.42l-23 11a4.39 4.39 0 0 0-2.39 3l-5.68 24.71a4.33 4.33 0 0 0 0.6 3.34c0.08 0.12 0.16 0.24 0.25 0.35l15.94 19.82a4.43 4.43 0 0 0 3.44 1.64h25.53a4.43 4.43 0 0 0 3.45-1.64l15.95-19.85a4.39 4.39 0 0 0 0.85-3.7l-5.69-24.71a4.41 4.41 0 0 0-2.38-3l-23-11a4.35 4.35 0 0 0-2.18-0.38zm0 1.69a4.17 4.17 0 0 1 2 0.41l21.84 10.37a4.19 4.19 0 0 1 2.26 2.81l5.39 23.4a4.12 4.12 0 0 1-0.81 3.5l-15.09 18.78a4.19 4.19 0 0 1-3.26 1.55h-24.21a4.19 4.19 0 0 1-3.26-1.56l-15.09-18.77a3.43 3.43 0 0 1-0.24-0.33 4.12 4.12 0 0 1-0.57-3.17l5.38-23.41a4.17 4.17 0 0 1 2.26-2.8l21.8-10.37a4.21 4.21 0 0 1 1.6-0.41z" data-name="path3054-2-9"/>
</g>
<g id="g1605" class="cls-14" data-name="text2066">
<text id="text1603" class="cls-18" transform="translate(457.08,312.94)">api</text>
</g>
<path id="path1607" class="cls-13" d="m463.76 267.54c-0.51 0-14.67 6.94-14.86 7.3-0.44 0.86-3.66 15.72-3.47 16s2.43 3.13 5.15 6.54l5 6.2h16.31l5.19-6.49 5.19-6.48-1.81-8c-1-4.38-1.9-8-2-8.13-0.25-0.24-14.4-7-14.67-7zm0.87 7.28c0.68 0 0.75 1.07 2.22 1.18 1.91 0.14 1.71-1.64 3.17-0.4s-0.32 1.33 0.13 3.2 2.09 1.12 1.36 2.89-1.37 0.1-3 1.11-0.42 2.34-2.34 2.19-0.51-1.27-2-2.51-2.35 0.32-2.8-1.54 1.05-0.89 1.78-2.67-1-2.13 0.6-3.14a2.28 2.28 0 0 1 0.52-0.26 0.88 0.88 0 0 1 0.34-0.05zm1.91 2.1a2.86 2.86 0 0 0-0.82 0.12 2.77 2.77 0 1 0 0.82-0.12zm-11 4.78a1.84 1.84 0 0 1 0.55 0.1c1.76 0.54 0 1.47 1.22 2.81s2.31-0.37 2.73 1.43-1.29 0.71-1.83 2.47 1.47 1.81 0.13 3.07-1.26-0.76-3.06-0.34-0.83 2.18-2.59 1.64 0-1.47-1.23-2.82-2.31 0.37-2.72-1.42 1.29-0.71 1.83-2.47-1.48-1.82-0.13-3.07 1.26 0.75 3.05 0.34c1.57-0.36 1-1.76 2.05-1.74zm13.1 1.92a2.08 2.08 0 0 1 0.63 0.15c2 0.79-0.65 2 0.93 3.51s2.67-1.22 3.55 0.77-1.88 1-1.83 3.14 2.75 1 2 3.06-2-0.65-3.51 0.93 1.21 2.67-0.78 3.55-1-1.87-3.14-1.83-1 2.75-3.05 2 0.64-2-0.94-3.51-2.67 1.22-3.54-0.78 1.87-1 1.82-3.14-2.75-1-2-3.05 2 0.64 3.51-0.93-1.22-2.67 0.77-3.55 1 1.87 3.14 1.82c1.91 0 1.26-2.12 2.43-2.11zm-14.25 0.94a2.78 2.78 0 1 0 2.78 2.78 2.77 2.77 0 0 0-2.77-2.78zm12 2.66a4.1 4.1 0 1 0 4.09 4.1 4.1 4.1 0 0 0-4.13-4.1z" data-name="path1984"/>
</g>
</g>
<path id="path4387" d="m1156.2 495.21v1.5h9v-1.5zm10.5 0v1.5h9v-1.5zm10.5 0v1.5h9v-1.5zm10.5 0v1.5h9v-1.5zm10.5 0v1.5h9v-1.5zm10.5 0v1.5h9v-1.5zm10.5 0v1.5h5.3809v-1.5z" color="#000000" color-rendering="auto" dominant-baseline="auto" fill="#326ce5" fill-rule="evenodd" image-rendering="auto" shape-rendering="auto" solid-color="#000000" stop-color="#000000" style="font-feature-settings:normal;font-variant-alternates:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-variant-ligatures:normal;font-variant-numeric:normal;font-variant-position:normal;font-variation-settings:normal;inline-size:0;isolation:auto;mix-blend-mode:normal;shape-margin:0;shape-padding:0;text-decoration-color:#000000;text-decoration-line:none;text-decoration-style:solid;text-indent:0;text-orientation:mixed;text-transform:none;white-space:normal"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 97 KiB

BIN
subjects/devops/orchestrator-py/pictures/dockerhub-example.jpg

diff.bin_not_shown

After

Width:  |  Height:  |  Size: 52 KiB

BIN
subjects/devops/orchestrator-py/pictures/suprise.png

diff.bin_not_shown

After

Width:  |  Height:  |  Size: 1.1 MiB

Loading…
Cancel
Save