diff --git a/README.md b/README.md index 47d90b25..189251ac 100644 --- a/README.md +++ b/README.md @@ -1,143 +1,170 @@ -# K3K +# K3k: Kubernetes in Kubernetes [![Experimental](https://img.shields.io/badge/status-experimental-orange.svg)](https://shields.io/) +[![Go Report Card](https://goreportcard.com/badge/github.com/rancher/k3k)](https://goreportcard.com/report/github.com/rancher/k3k) +![Tests](https://github.com/rancher/k3k/actions/workflows/test.yaml/badge.svg) +![Build](https://github.com/rancher/k3k/actions/workflows/build.yml/badge.svg) + + +K3k, Kubernetes in Kubernetes, is a tool that empowers you to create and manage isolated K3s clusters within your existing Kubernetes environment. It enables efficient multi-tenancy, streamlined experimentation, and robust resource isolation, minimizing infrastructure costs by allowing you to run multiple lightweight Kubernetes clusters on the same physical host. K3k offers both "shared" mode, optimizing resource utilization, and "virtual" mode, providing complete isolation with dedicated K3s server pods. This allows you to access a full Kubernetes experience without the overhead of managing separate physical resources. + +K3k integrates seamlessly with Rancher for simplified management of your embedded clusters. -A Kubernetes in Kubernetes tool, k3k provides a way to run multiple embedded isolated k3s clusters on your kubernetes cluster. **Experimental Tool** This project is still under development and is considered experimental. It may have limitations, bugs, or changes. Please use with caution and report any issues you encounter. We appreciate your feedback as we continue to refine and improve this tool. -## Example -An example on creating a k3k cluster on an RKE2 host using k3kcli +## Features and Benefits -[![asciicast](https://asciinema.org/a/eYlc3dsL2pfP2B50i3Ea8MJJp.svg)](https://asciinema.org/a/eYlc3dsL2pfP2B50i3Ea8MJJp) +- **Resource Isolation:** Ensure workload isolation and prevent resource contention between teams or applications. K3k allows you to define resource limits and quotas for each embedded cluster, guaranteeing that one team's workloads won't impact another's performance. -## Architecture +- **Simplified Multi-Tenancy:** Easily create dedicated Kubernetes environments for different users or projects, simplifying access control and management. Provide each team with their own isolated cluster, complete with its own namespaces, RBAC, and resource quotas, without the complexity of managing multiple physical clusters. -K3K consists of a controller and a cli tool, the controller can be deployed via a helm chart and the cli can be downloaded from the releases page. +- **Lightweight and Fast:** Leverage the lightweight nature of K3s to spin up and tear down clusters quickly, accelerating development and testing cycles. Spin up a new K3k cluster in seconds, test your application in a clean environment, and tear it down just as quickly, streamlining your CI/CD pipeline. -### Controller +- **Optimized Resource Utilization (Shared Mode):** Maximize your infrastructure investment by running multiple K3s clusters on the same physical host. K3k's shared mode allows you to efficiently share underlying resources, reducing overhead and minimizing costs. -The K3K controller will watch a CRD called `clusters.k3k.io`. Once found, the controller will create a separate namespace and it will create a K3S cluster as specified in the spec of the object. +- **Complete Isolation (Virtual Mode):** For enhanced security and isolation, K3k's virtual mode provides dedicated K3s server pods for each embedded cluster. This ensures complete separation of workloads and eliminates any potential resource contention or security risks. -Each server and agent is created as a separate pod that runs in the new namespace. - -### CLI - -The CLI provides a quick and easy way to create K3K clusters using simple flags, and automatically exposes the K3K clusters so it's accessible via a kubeconfig. - -## Features - -### Isolation - -Each cluster runs in a sperate namespace that can be isolated via netowrk policies and RBAC rules, clusters also run in a sperate network namespace with flannel as the backend CNI. Finally, each cluster has a separate datastore which can be persisted. - -In addition, k3k offers a persistence feature that can help users to persist their datatstore, using dynamic storage class volumes. - -### Portability and Customization - -The "Cluster" object is considered the template of the cluster that you can re-use to spin up multiple clusters in a matter of seconds. - -K3K clusters use K3S internally and leverage all options that can be passed to K3S. Each cluster is exposed to the host cluster via NodePort, LoadBalancers, and Ingresses. +- **Rancher Integration:** Simplify the management of your K3k clusters with Rancher. Leverage Rancher's intuitive UI and powerful features to monitor, manage, and scale your embedded clusters with ease. -| | Separate Namespace (for each tenant) | K3K | vcluster | Separate Cluster (for each tenant) | -|-----------------------|---------------------------------------|------------------------------|-----------------|------------------------------------| -| Isolation | Very weak | Very strong | strong | Very strong | -| Access for tenants | Very restricted | Built-in k8s RBAC / Rancher | Vclustser admin | Cluster admin | -| Cost | Very cheap | Very cheap | cheap | expensive | -| Overhead | Very low | Very low | Very low | Very high | -| Networking | Shared | Separate | shared | separate | -| Cluster Configuration | | Very easy | Very hard | | +## Installation + +This section provides instructions on how to install K3k and the `k3kcli`. + + +### Prerequisites + +* [Helm](https://helm.sh) must be installed to use the charts. Please refer to Helm's [documentation](https://helm.sh/docs) to get started. + + +### Install the K3k controller + +1. Add the K3k Helm repository: + + ```bash + helm repo add k3k https://rancher.github.io/k3k + helm repo update + ``` + +2. Install the K3k controller: + + ```bash + helm install --namespace k3k-system --create-namespace k3k k3k/k3k --devel + ``` + +**NOTE:** K3k is currently under development, so the chart is marked as a development chart. This means you need to add the `--devel` flag to install it. For production use, keep an eye on releases for stable versions. We recommend using the latest released version when possible. + + +### Install the `k3kcli` + +The `k3kcli` provides a quick and easy way to create K3k clusters and automatically exposes them via a kubeconfig. + +To install it, simply download the latest available version for your architecture from the GitHub Releases page. + +For example, you can download the Linux amd64 version with: + +``` +wget -qO k3kcli https://github.com/rancher/k3k/releases/download/v0.2.2-rc4/k3kcli-linux-amd64 && \ + chmod +x k3kcli && \ + sudo mv k3kcli /usr/local/bin +``` + +You should now be able to run: +```bash +-> % k3kcli --version +k3kcli Version: v0.2.2-rc4 +``` + ## Usage -### Deploy K3K Controller +This section provides examples of how to use the `k3kcli` to manage your K3k clusters. -[Helm](https://helm.sh) must be installed to use the charts. Please refer to -Helm's [documentation](https://helm.sh/docs) to get started. +**K3k operates within the context of your currently configured `kubectl` context.** This means that K3k respects the standard Kubernetes mechanisms for context configuration, including the `--kubeconfig` flag, the `$KUBECONFIG` environment variable, and the default `$HOME/.kube/config` file. Any K3k clusters you create will reside within the Kubernetes cluster that your `kubectl` is currently pointing to. -Once Helm has been set up correctly, add the repo as follows: -```sh - helm repo add k3k https://rancher.github.io/k3k +### Creating a K3k Cluster + +To create a new K3k cluster, use the following command: + +```bash +k3kcli cluster create mycluster ``` -If you had already added this repo earlier, run `helm repo update` to retrieve -the latest versions of the packages. You can then run `helm search repo -k3k --devel` to see the charts. +When the K3s server is ready, `k3kcli` will generate the necessary kubeconfig file and print instructions on how to use it. -To install the k3k chart: +Here's an example of the output: -```sh -helm install my-k3k k3k/k3k --devel +```bash +INFO[0000] Creating a new cluster [mycluster] +INFO[0000] Extracting Kubeconfig for [mycluster] cluster +INFO[0000] waiting for cluster to be available.. +INFO[0073] certificate CN=system:admin,O=system:masters signed by CN=k3s-client-ca@1738746570: notBefore=2025-02-05 09:09:30 +0000 UTC notAfter=2026-02-05 09:10:42 +0000 UTC +INFO[0073] You can start using the cluster with: + + export KUBECONFIG=/my/current/directory/mycluster-kubeconfig.yaml + kubectl cluster-info ``` -To uninstall the chart: +After exporting the generated kubeconfig, you should be able to reach your Kubernetes cluster: -```sh -helm delete my-k3k +```bash +export KUBECONFIG=/my/current/directory/mycluster-kubeconfig.yaml +kubectl get nodes +kubectl get pods -A ``` -**NOTE: Since k3k is still under development, the chart is marked as a development chart, this means that you need to add the `--devel` flag to install it.** +You can also directly create a Cluster resource in some namespace, to create a K3k cluster: -### Create a new cluster - -To create a new cluster you need to install and run the cli or create a cluster object, to install the cli: - -#### For linux and macOS - -1 - Donwload the binary, linux dowload url: -``` -wget https://github.com/rancher/k3k/releases/download/v0.0.0-alpha2/k3kcli -``` -macOS dowload url: -``` -wget https://github.com/rancher/k3k/releases/download/v0.0.0-alpha2/k3kcli -``` -Then copy to local bin -``` -chmod +x k3kcli -sudo cp k3kcli /usr/local/bin +```bash +kubectl apply -f - <\bin (create this directory if it doesn't exist): -``` -Copy-Item "k3kcli.exe" "C:\bin" -``` -3 - Update Environment Variable (PATH): -If you haven't already added `C:\bin` (or your chosen directory) to your PATH, you can do it through PowerShell: -``` -setx PATH "C:\bin;%PATH%" -``` - -To create a new cluster you can use: - -```sh -k3k cluster create --name example-cluster --token test +```bash +k3kcli kubeconfig generate --namespace k3k-mycluster --name mycluster ``` -## Tests +### Deleting a K3k Cluster -To run the tests we use [Ginkgo](https://onsi.github.io/ginkgo/), and [`envtest`](https://book.kubebuilder.io/reference/envtest) for testing the controllers. +To delete a K3k cluster, use the following command: -Install the required binaries from `envtest` with [`setup-envtest`](https://pkg.go.dev/sigs.k8s.io/controller-runtime/tools/setup-envtest), and then put them in the default path `/usr/local/kubebuilder/bin`: - -``` -ENVTEST_BIN=$(setup-envtest use -p path) -sudo mkdir -p /usr/local/kubebuilder/bin -sudo cp $ENVTEST_BIN/* /usr/local/kubebuilder/bin +```bash +k3kcli cluster delete mycluster ``` -then run `ginkgo run ./...`. + +## Architecture + +For a detailed explanation of the K3k architecture, please refer to the [Architecture documentation](./docs/architecture.md). + + +## Advanced Usage + +For more in-depth examples and information on advanced K3k usage, including details on shared vs. virtual modes, resource management, and other configuration options, please see the [Advanced Usage documentation](./docs/advanced-usage.md). + + +## Development + +If you're interested in building K3k from source or contributing to the project, please refer to the [Development documentation](./docs/development.md). + + +## License + +Copyright (c) 2014-2025 [SUSE](http://rancher.com/) + +Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0. + +Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. diff --git a/docs/advanced-usage.md b/docs/advanced-usage.md new file mode 100644 index 00000000..753cb5fa --- /dev/null +++ b/docs/advanced-usage.md @@ -0,0 +1,107 @@ +# Advanced Usage + +This document provides advanced usage information for k3k, including detailed use cases and explanations of the `Cluster` resource fields for customization. + +## Customizing the Cluster Resource + +The `Cluster` resource provides a variety of fields for customizing the behavior of your virtual clusters. You can check the [CRD documentation](./crds/crd-docs.md) for the full specs. + +**Note:** Most of these customization options can also be configured using the `k3kcli` tool. Refer to the `k3kcli` documentation for more details. + + + +This example creates a "shared" mode K3k cluster with: + +- 3 servers +- K3s version v1.31.3-k3s1 +- Custom network configuration +- Deployment on specific nodes with the `nodeSelector` +- `kube-api` exposed using an ingress +- Custom K3s `serverArgs` +- ETCD data persisted using a `PVC` + + +```yaml +apiVersion: k3k.io/v1alpha1 +kind: Cluster +metadata: + name: my-virtual-cluster + namespace: my-namespace +spec: + mode: shared + version: v1.31.3-k3s1 + servers: 3 + nodeSelector: + disktype: ssd + expose: + ingress: + enabled: true + ingressClassName: nginx + clusterCIDR: 10.42.0.0/16 + serviceCIDR: 10.43.0.0/16 + clusterDNS: 10.43.0.10 + serverArgs: + - --tls-san=my-cluster.example.com + persistence: + type: dynamic + storageClassName: local-path +``` + + +### `mode` + +The `mode` field specifies the cluster provisioning mode, which can be either `shared` or `virtual`. The default mode is `shared`. + +* **`shared` mode:** In this mode, the virtual cluster shares the host cluster's resources and networking. This mode is suitable for lightweight workloads and development environments where isolation is not a primary concern. +* **`virtual` mode:** In this mode, the virtual cluster runs as a separate K3s cluster within the host cluster. This mode provides stronger isolation and is suitable for production workloads or when dedicated resources are required. + + +### `version` + +The `version` field specifies the Kubernetes version to be used by the virtual nodes. If not specified, K3k will use the same K3s version as the host cluster. For example, if the host cluster is running Kubernetes v1.31.3, K3k will use the corresponding K3s version (e.g., `v1.31.3-k3s1`). + + +### `servers` + +The `servers` field specifies the number of K3s server nodes to deploy for the virtual cluster. The default value is 1. + + +### `agents` + +The `agents` field specifies the number of K3s agent nodes to deploy for the virtual cluster. The default value is 0. + +**Note:** In `shared` mode, this field is ignored, as the Virtual Kubelet acts as the agent, and there are no K3s worker nodes. + + +### `nodeSelector` + +The `nodeSelector` field allows you to specify a node selector that will be applied to all server/agent pods. In `shared` mode, the node selector will also be applied to the workloads. + + +### `expose` + +The `expose` field contains options for exposing the API server of the virtual cluster. By default, the API server is only exposed as a `ClusterIP`, which is relatively secure but difficult to access from outside the cluster. + +You can use the `expose` field to enable exposure via `NodePort`, `LoadBalancer`, or `Ingress`. + + +### `clusterCIDR` + +The `clusterCIDR` field specifies the CIDR range for the pods of the cluster. The default value is `10.42.0.0/16`. + + +### `serviceCIDR` + +The `serviceCIDR` field specifies the CIDR range for the services in the cluster. The default value is `10.43.0.0/16`. + +**Note:** In `shared` mode, the `serviceCIDR` should match the host cluster's `serviceCIDR` to prevent conflicts. + + +### `clusterDNS` + +The `clusterDNS` field specifies the IP address for the CoreDNS service. It needs to be in the range provided by `serviceCIDR`. The default value is `10.43.0.10`. + + +### `serverArgs` + +The `serverArgs` field allows you to specify additional arguments to be passed to the K3s server pods. diff --git a/docs/architecture.md b/docs/architecture.md new file mode 100644 index 00000000..592ce55e --- /dev/null +++ b/docs/architecture.md @@ -0,0 +1,121 @@ +# Architecture + +Virtual Clusters are isolated Kubernetes clusters provisioned on a physical cluster. K3k leverages [K3s](https://k3s.io/) as the control plane of the Kubernetes cluster because of its lightweight footprint. + +K3k provides two modes of deploying virtual clusters: the "shared" mode (default), and "virtual". + + +## Shared Mode + +The default `shared` mode uses a K3s server as control plane with an [agentless servers configuration](https://docs.k3s.io/advanced#running-agentless-servers-experimental). With this option enabled, the servers do not run the kubelet, container runtime, or CNI. The server uses a [Virtual Kubelet](https://virtual-kubelet.io/) provider implementation specific to K3k, which schedules the workloads and other eventually needed resources on the host cluster. This K3k Virtual Kubelet provider handles the reflection of resources and workload execution within the shared host cluster environment. + +![Shared Mode](./images/architecture/shared-mode.png) + + +### Networking and Storage + +Because of this shared infrastructure, the CNI will be the same one configured in the host cluster. To provide the needed isolation, K3k will leverage Network Policies. + +The same goes for the available storage, so the Storage Classes and Volumes are those of the host cluster. + + +### Resource Sharing and Limits + +In shared mode, K3k leverages Kubernetes ResourceQuotas and LimitRanges to manage resource sharing and enforce limits. Since all virtual cluster workloads run within the same namespace on the host cluster, ResourceQuotas are applied to this namespace to limit the total resources consumed by a virtual cluster. LimitRanges are used to set default resource requests and limits for pods, ensuring that workloads have reasonable resource allocations even if they don't explicitly specify them. + +Each pod in a virtual cluster is assigned a unique name that incorporates the pod name, namespace, and cluster name. This prevents naming collisions in the shared host cluster namespace. + +It's important to understand that ResourceQuotas are applied at the namespace level. This means that all pods within a virtual cluster share the same quota. While this provides overall limits for the virtual cluster, it also means that resource allocation is dynamic. If one workload isn't using its full resource allocation, other workloads within the *same* virtual cluster can utilize those resources, even if they belong to different deployments or services. + +This dynamic sharing can be both a benefit and a challenge. It allows for efficient resource utilization, but it can also lead to unpredictable performance if workloads have varying resource demands. Furthermore, this approach makes it difficult to guarantee strict resource isolation between workloads within the same virtual cluster. + +GPU resource sharing is an area of ongoing investigation. K3k is actively exploring potential solutions in this area. + + +### Isolation and Security + +Isolation between virtual clusters in shared mode relies heavily on Kubernetes Network Policies. Network Policies define rules that control the network traffic allowed to and from pods. K3k configures Network Policies to ensure that pods in one virtual cluster cannot communicate with pods in other virtual clusters or with pods in the host cluster itself, providing a strong foundation for network isolation. + +While Network Policies offer robust isolation capabilities, it's important to understand their characteristics: + +* **CNI Integration:** Network Policies integrate seamlessly with supported CNI plugins. K3k leverages this integration to enforce network isolation. +* **Granular Control:** Network Policies provide granular control over network traffic, allowing for fine-tuned security policies. +* **Scalability:** Network Policies scale well with the number of virtual clusters and applications, ensuring consistent isolation as the environment grows. + +K3k also utilizes Kubernetes Pod Security Admission (PSA) to enforce security policies within virtual clusters based on Pod Security Standards (PSS). PSS define different levels of security for pods, restricting what actions pods can perform. By configuring PSA to enforce a specific PSS level (e.g., `baseline` or `restricted`) for a virtual cluster, K3k ensures that pods adhere to established security best practices and prevents them from using privileged features or performing potentially dangerous operations. + +Key aspects of PSA integration include: + +* **Namespace-Level Enforcement:** PSA configuration is applied at the namespace level, providing a consistent security posture for all pods within the virtual cluster. +* **Standardized Profiles:** PSS offers a set of predefined security profiles aligned with industry best practices, simplifying security configuration and ensuring a baseline level of security. + +The shared mode architecture is designed with security in mind. K3k employs multiple layers of security controls, including Network Policies and PSA, to protect virtual clusters and the host cluster. While the shared namespace model requires careful configuration and management, these controls provide a robust security foundation for running workloads in a multi-tenant environment. K3k continuously evaluates and enhances its security mechanisms to address evolving threats and ensure the highest level of protection for its users. + + +## Virtual Mode + +The `virtual` mode in K3k deploys fully functional K3s clusters (including both server and agent components) as virtual clusters. These K3s clusters run as pods within the host cluster. Each virtual cluster has its own dedicated K3s server and one or more K3s agents acting as worker nodes. This approach provides strong isolation, as each virtual cluster operates independently with its own control plane and worker nodes. While these virtual clusters run as pods on the host cluster, they function as complete and separate Kubernetes environments. + +![Virtual Mode](./images/architecture/virtual-mode.png) + + +### Networking and Storage + +Virtual clusters in `virtual` mode each have their own independent networking configuration managed by their respective K3s servers. Each virtual cluster runs its own CNI plugin, configured within its K3s server, providing complete network isolation from other virtual clusters and the host cluster. While the virtual cluster networks ultimately operate on top of the host cluster's network infrastructure, the networking configuration and traffic management are entirely separate. + + +### Resource Sharing and Limits + +Resource sharing in `virtual` mode is managed by applying resource limits to the pods that make up the virtual cluster (both the K3s server pod and the K3s agent pods). Each pod is assigned a specific amount of CPU, memory, and other resources. The workloads running *within* the virtual cluster then utilize these allocated resources. This means that the virtual cluster as a whole has a defined resource pool determined by the limits on its constituent pods. + +This approach provides a clear and direct way to control the resources available to each virtual cluster. However, it requires careful resource planning to ensure that each virtual cluster has sufficient capacity for its workloads. + + +### Isolation and Security + +The `virtual` mode offers strong isolation due to the dedicated K3s clusters deployed for each virtual cluster. Because each virtual cluster runs its own separate control plane and worker nodes, workloads are effectively isolated from each other and from the host cluster. This architecture minimizes the risk of one virtual cluster impacting others or the host cluster. + +Security in `virtual` mode benefits from the inherent isolation provided by the separate K3s clusters. However, standard Kubernetes security best practices still apply, and K3k emphasizes a layered security approach. While the K3s server pods often run with elevated privileges (due to the nature of their function, requiring access to system resources), K3k recommends minimizing these privileges whenever possible and adhering to the principle of least privilege. This can be achieved by carefully configuring the necessary capabilities instead of relying on full `privileged` mode. Further information on K3s security best practices can be found in the official K3s documentation: [https://docs.k3s.io/security](https://docs.k3s.io/security) (This link provides general security guidance, including discussions of capabilities and other relevant topics). + +Currently security in virtual mode has a risk of privilege escalation as the server pods run with elevated privileges (due to the nature of their function, requiring access to system resources). + + +## K3k Components + +K3k consists of two main components: + +* **Controller:** The K3k controller is a core component that runs on the host cluster. It watches for `Cluster` custom resources (CRs) and manages the lifecycle of virtual clusters. When a new `Cluster` CR is created, the controller provisions the necessary resources, including namespaces, K3s server and agent pods, and network configurations, to create the virtual cluster. +* **CLI:** The K3k CLI provides a command-line interface for interacting with K3k. It allows users to easily create, manage, and access virtual clusters. The CLI simplifies common tasks such as creating `Cluster` CRs, retrieving kubeconfigs for accessing virtual clusters, and performing other management operations. + + +## Comparison and Trade-offs + +K3k offers two distinct modes for deploying virtual clusters: `shared` and `virtual`. Each mode has its own strengths and weaknesses, and the best choice depends on the specific needs and priorities of the user. Here's a comparison to help you make an informed decision: + +| Feature | Shared Mode | Virtual Mode | +|---|---|---| +| **Architecture** | Agentless K3s server with Virtual Kubelet | Full K3s cluster (server and agents) as pods | +| **Isolation** | Network Policies | Dedicated control plane and worker nodes | +| **Resource Sharing** | Dynamic, namespace-level ResourceQuotas | Resource limits on virtual cluster pods | +| **Networking** | Host cluster's CNI | Virtual cluster's own CNI | +| **Storage** | Host cluster's storage | *Under development* | +| **Security** | Pod Security Admission (PSA), Network Policies | Inherent isolation, PSA, Network Policies, secure host configuration | +| **Performance** | Smaller footprint, more efficient due to running directly on the host | Higher overhead due to running full K3s clusters | + +**Trade-offs:** + +* **Isolation vs. Overhead:** The `shared` mode has lower overhead but weaker isolation, while the `virtual` mode provides stronger isolation but potentially higher overhead due to running full K3s clusters. +* **Resource Sharing:** The `shared` mode offers dynamic resource sharing within a namespace, which can be efficient but less predictable. The `virtual` mode provides dedicated resources to each virtual cluster, offering more control but requiring careful planning. + +**Choosing the right mode:** + +* **Choose `shared` mode if:** + * You prioritize low overhead and resource efficiency. + * You need a simple setup and don't require strong isolation between virtual clusters. + * Your workloads don't have strict performance requirements. + * Your workloads needs host capacities (GPU) +* **Choose `virtual` mode if:** + * You prioritize strong isolation. + * You need dedicated resources and predictable performance for your virtual clusters. + +Ultimately, the best choice depends on your specific requirements and priorities. Consider the trade-offs carefully and choose the mode that best aligns with your needs. diff --git a/docs/crds/Makefile b/docs/crds/Makefile new file mode 100644 index 00000000..93df3d7c --- /dev/null +++ b/docs/crds/Makefile @@ -0,0 +1,6 @@ +CRD_REF_DOCS_VER := v0.1.0 +CRD_REF_DOCS := go run github.com/elastic/crd-ref-docs@$(CRD_REF_DOCS_VER) + +.PHONY: generate +generate: + $(CRD_REF_DOCS) --config=config.yaml --renderer=markdown --source-path=../../pkg/apis/k3k.io/v1alpha1 --output-path=crd-docs.md diff --git a/docs/crds/config.yaml b/docs/crds/config.yaml new file mode 100644 index 00000000..981a835c --- /dev/null +++ b/docs/crds/config.yaml @@ -0,0 +1,14 @@ +processor: + # RE2 regular expressions describing types that should be excluded from the generated documentation. + ignoreTypes: + - ClusterSet + - ClusterSetList + + # RE2 regular expressions describing type fields that should be excluded from the generated documentation. + ignoreFields: + - "status$" + - "TypeMeta$" + +render: + # Version of Kubernetes to use when generating links to Kubernetes API documentation. + kubernetesVersion: "1.31" diff --git a/docs/crds/crd-docs.md b/docs/crds/crd-docs.md new file mode 100644 index 00000000..435be85e --- /dev/null +++ b/docs/crds/crd-docs.md @@ -0,0 +1,222 @@ +# API Reference + +## Packages +- [k3k.io/v1alpha1](#k3kiov1alpha1) + + +## k3k.io/v1alpha1 + + +### Resource Types +- [Cluster](#cluster) +- [ClusterList](#clusterlist) + + + +#### Addon + + + + + + + +_Appears in:_ +- [ClusterSpec](#clusterspec) + +| Field | Description | Default | Validation | +| --- | --- | --- | --- | +| `secretNamespace` _string_ | | | | +| `secretRef` _string_ | | | | + + +#### Cluster + + + + + + + +_Appears in:_ +- [ClusterList](#clusterlist) + +| Field | Description | Default | Validation | +| --- | --- | --- | --- | +| `apiVersion` _string_ | `k3k.io/v1alpha1` | | | +| `kind` _string_ | `Cluster` | | | +| `metadata` _[ObjectMeta](https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.31/#objectmeta-v1-meta)_ | Refer to Kubernetes API documentation for fields of `metadata`. | | | +| `spec` _[ClusterSpec](#clusterspec)_ | | \{ \} | | + + +#### ClusterLimit + + + + + + + +_Appears in:_ +- [ClusterSpec](#clusterspec) + +| Field | Description | Default | Validation | +| --- | --- | --- | --- | +| `serverLimit` _[ResourceList](https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.31/#resourcelist-v1-core)_ | ServerLimit is the limits (cpu/mem) that apply to the server nodes | | | +| `workerLimit` _[ResourceList](https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.31/#resourcelist-v1-core)_ | WorkerLimit is the limits (cpu/mem) that apply to the agent nodes | | | + + +#### ClusterList + + + + + + + + + +| Field | Description | Default | Validation | +| --- | --- | --- | --- | +| `apiVersion` _string_ | `k3k.io/v1alpha1` | | | +| `kind` _string_ | `ClusterList` | | | +| `metadata` _[ListMeta](https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.31/#listmeta-v1-meta)_ | Refer to Kubernetes API documentation for fields of `metadata`. | | | +| `items` _[Cluster](#cluster) array_ | | | | + + +#### ClusterMode + +_Underlying type:_ _string_ + +ClusterMode is the possible provisioning mode of a Cluster. + +_Validation:_ +- Enum: [shared virtual] + +_Appears in:_ +- [ClusterSpec](#clusterspec) + + + +#### ClusterSpec + + + + + + + +_Appears in:_ +- [Cluster](#cluster) + +| Field | Description | Default | Validation | +| --- | --- | --- | --- | +| `version` _string_ | Version is a string representing the Kubernetes version to be used by the virtual nodes. | | | +| `servers` _integer_ | Servers is the number of K3s pods to run in server (controlplane) mode. | 1 | | +| `agents` _integer_ | Agents is the number of K3s pods to run in agent (worker) mode. | 0 | | +| `nodeSelector` _object (keys:string, values:string)_ | NodeSelector is the node selector that will be applied to all server/agent pods.
In "shared" mode the node selector will be applied also to the workloads. | | | +| `priorityClass` _string_ | PriorityClass is the priorityClassName that will be applied to all server/agent pods.
In "shared" mode the priorityClassName will be applied also to the workloads. | | | +| `clusterLimit` _[ClusterLimit](#clusterlimit)_ | Limit is the limits that apply for the server/worker nodes. | | | +| `tokenSecretRef` _[SecretReference](https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.31/#secretreference-v1-core)_ | TokenSecretRef is Secret reference used as a token join server and worker nodes to the cluster. The controller
assumes that the secret has a field "token" in its data, any other fields in the secret will be ignored. | | | +| `clusterCIDR` _string_ | ClusterCIDR is the CIDR range for the pods of the cluster. Defaults to 10.42.0.0/16. | | | +| `serviceCIDR` _string_ | ServiceCIDR is the CIDR range for the services in the cluster. Defaults to 10.43.0.0/16. | | | +| `clusterDNS` _string_ | ClusterDNS is the IP address for the coredns service. Needs to be in the range provided by ServiceCIDR or CoreDNS may not deploy.
Defaults to 10.43.0.10. | | | +| `serverArgs` _string array_ | ServerArgs are the ordered key value pairs (e.x. "testArg", "testValue") for the K3s pods running in server mode. | | | +| `agentArgs` _string array_ | AgentArgs are the ordered key value pairs (e.x. "testArg", "testValue") for the K3s pods running in agent mode. | | | +| `tlsSANs` _string array_ | TLSSANs are the subjectAlternativeNames for the certificate the K3s server will use. | | | +| `addons` _[Addon](#addon) array_ | Addons is a list of secrets containing raw YAML which will be deployed in the virtual K3k cluster on startup. | | | +| `mode` _[ClusterMode](#clustermode)_ | Mode is the cluster provisioning mode which can be either "shared" or "virtual". Defaults to "shared" | shared | Enum: [shared virtual]
| +| `persistence` _[PersistenceConfig](#persistenceconfig)_ | Persistence contains options controlling how the etcd data of the virtual cluster is persisted. By default, no data
persistence is guaranteed, so restart of a virtual cluster pod may result in data loss without this field. | | | +| `expose` _[ExposeConfig](#exposeconfig)_ | Expose contains options for exposing the apiserver inside/outside of the cluster. By default, this is only exposed as a
clusterIP which is relatively secure, but difficult to access outside of the cluster. | | | + + + + +#### ExposeConfig + + + + + + + +_Appears in:_ +- [ClusterSpec](#clusterspec) + +| Field | Description | Default | Validation | +| --- | --- | --- | --- | +| `ingress` _[IngressConfig](#ingressconfig)_ | | | | +| `loadbalancer` _[LoadBalancerConfig](#loadbalancerconfig)_ | | | | +| `nodePort` _[NodePortConfig](#nodeportconfig)_ | | | | + + +#### IngressConfig + + + + + + + +_Appears in:_ +- [ExposeConfig](#exposeconfig) + +| Field | Description | Default | Validation | +| --- | --- | --- | --- | +| `enabled` _boolean_ | | | | +| `ingressClassName` _string_ | | | | + + +#### LoadBalancerConfig + + + + + + + +_Appears in:_ +- [ExposeConfig](#exposeconfig) + +| Field | Description | Default | Validation | +| --- | --- | --- | --- | +| `enabled` _boolean_ | | | | + + +#### NodePortConfig + + + + + + + +_Appears in:_ +- [ExposeConfig](#exposeconfig) + +| Field | Description | Default | Validation | +| --- | --- | --- | --- | +| `enabled` _boolean_ | | | | + + +#### PersistenceConfig + + + + + + + +_Appears in:_ +- [ClusterSpec](#clusterspec) +- [ClusterStatus](#clusterstatus) + +| Field | Description | Default | Validation | +| --- | --- | --- | --- | +| `type` _string_ | Type can be ephemeral, static, dynamic | ephemeral | | +| `storageClassName` _string_ | | | | +| `storageRequestSize` _string_ | | | | + + + + diff --git a/docs/development.md b/docs/development.md new file mode 100644 index 00000000..1689a7f2 --- /dev/null +++ b/docs/development.md @@ -0,0 +1,15 @@ +# Development + +## Tests + +To run the tests we use [Ginkgo](https://onsi.github.io/ginkgo/), and [`envtest`](https://book.kubebuilder.io/reference/envtest) for testing the controllers. + +Install the required binaries from `envtest` with [`setup-envtest`](https://pkg.go.dev/sigs.k8s.io/controller-runtime/tools/setup-envtest), and then put them in the default path `/usr/local/kubebuilder/bin`: + +``` +ENVTEST_BIN=$(setup-envtest use -p path) +sudo mkdir -p /usr/local/kubebuilder/bin +sudo cp $ENVTEST_BIN/* /usr/local/kubebuilder/bin +``` + +then run `ginkgo run ./...`. diff --git a/docs/images/architecture/shared-mode.excalidraw b/docs/images/architecture/shared-mode.excalidraw new file mode 100644 index 00000000..b7742282 --- /dev/null +++ b/docs/images/architecture/shared-mode.excalidraw @@ -0,0 +1,14941 @@ +{ + "type": "excalidraw", + "version": 2, + "source": "https://excalidraw.com", + "elements": [ + { + "id": "qcw9KgbUejvqEmk0HAzgK", + "type": "rectangle", + "x": 400, + "y": 190.52142965923406, + "width": 1306.92124690794, + "height": 803.9927298696344, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "Zx", + "roundness": { + "type": 3 + }, + "seed": 186493999, + "version": 223, + "versionNonce": 814324270, + "isDeleted": false, + "boundElements": [], + "updated": 1738919329038, + "link": null, + "locked": false + }, + { + "id": "O6voKkj0_42RduueG1Ykr", + "type": "rectangle", + "x": 494.30229759276324, + "y": 512.3911479183313, + "width": 625.435254144063, + "height": 434.6996801852355, + "angle": 0, + "strokeColor": "#000000", + "backgroundColor": "#a5d8ff", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "dotted", + "roughness": 1, + "opacity": 20, + "groupIds": [], + "frameId": null, + "index": "Zy", + "roundness": { + "type": 3 + }, + "seed": 311664000, + "version": 396, + "versionNonce": 706144178, + "isDeleted": false, + "boundElements": [], + "updated": 1738919329038, + "link": null, + "locked": false + }, + { + "id": "_uoL8aE0gwLJc50iQ7DFB", + "type": "rectangle", + "x": 442.55233566594916, + "y": 452.51260803611444, + "width": 1230.1705235174013, + "height": 513.0639082458389, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "dashed", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "Zz", + "roundness": null, + "seed": 106290560, + "version": 204, + "versionNonce": 1425155182, + "isDeleted": false, + "boundElements": [], + "updated": 1738919329038, + "link": null, + "locked": false + }, + { + "id": "3ayqq52wsniI7ZScvRxFK", + "type": "rectangle", + "x": 508.348715830041, + "y": 526.4411250744192, + "width": 356.3354521246316, + "height": 408.08541405144564, + "angle": 0, + "strokeColor": "transparent", + "backgroundColor": "#b2f2bb", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "dashed", + "roughness": 1, + "opacity": 50, + "groupIds": [], + "frameId": null, + "index": "ZzV", + "roundness": { + "type": 3 + }, + "seed": 516648320, + "version": 592, + "versionNonce": 1225249262, + "isDeleted": false, + "boundElements": [ + { + "id": "HDocOXT_UZJKEfjrc2x90", + "type": "arrow" + } + ], + "updated": 1738919329040, + "link": null, + "locked": false + }, + { + "id": "dc-wZMyg9mSviX9Ze3OAf", + "type": "text", + "x": 539.257398165612, + "y": 135.76061144124364, + "width": 221.3440704345703, + "height": 45, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "aP", + "roundness": null, + "seed": 1602747776, + "version": 122, + "versionNonce": 1750034094, + "isDeleted": false, + "boundElements": [], + "updated": 1738919329038, + "link": null, + "locked": false, + "text": "Host Cluster", + "fontSize": 36, + "fontFamily": 5, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "Host Cluster", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "type": "line", + "version": 899, + "versionNonce": 331490098, + "isDeleted": false, + "id": "t_UrAIMxQd4KKD6i27I6h", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 452.7271768725529, + "y": 121.92666026968067, + "strokeColor": "#000000", + "backgroundColor": "#326ce5", + "width": 141.1345207909862, + "height": 138.14197943992207, + "seed": 537066112, + "groupIds": [ + "hCkivSuiPNqJt3KQ4XmQx" + ], + "strokeSharpness": "sharp", + "boundElementIds": [], + "startBinding": null, + "endBinding": null, + "points": [ + [ + 0, + 0 + ], + [ + -58.25552560308792, + 27.865549500756803 + ], + [ + -70.26697418104422, + 87.4503947098219 + ], + [ + -30.0286214448907, + 138.14197943992207 + ], + [ + 37.53577680611333, + 137.84553742395653 + ], + [ + 70.86754660994197, + 83.59664850227031 + ], + [ + 57.65495317419008, + 24.901129341101825 + ], + [ + 0, + 0 + ] + ], + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "index": "aQ", + "frameId": null, + "roundness": null, + "boundElements": [], + "updated": 1738919329038, + "link": null, + "locked": false + }, + { + "type": "line", + "version": 3321, + "versionNonce": 457859310, + "isDeleted": false, + "id": "1SExkZe77IKM91ZDl2HzB", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0.010125045471368388, + "x": 441.7223121735814, + "y": 156.1988390878119, + "strokeColor": "#000000", + "backgroundColor": "#ffff", + "width": 106.04040672794991, + "height": 105.61610706708336, + "seed": 1254075008, + "groupIds": [ + "hCkivSuiPNqJt3KQ4XmQx" + ], + "strokeSharpness": "round", + "boundElementIds": [], + "startBinding": null, + "endBinding": null, + "points": [ + [ + 0, + 0 + ], + [ + 7.560549639916194, + -2.432481274079295 + ], + [ + 8.260640800764907, + -6.319351744325669 + ], + [ + 7.265162864319282, + -17.377969213774225 + ], + [ + 12.287975594132497, + -17.79248566628771 + ], + [ + 12.06183575356039, + -6.171187074095729 + ], + [ + 13.938548022945847, + -2.5765254766629058 + ], + [ + 22.108528016458962, + -0.8911077706957935 + ], + [ + 33.492223733543035, + 3.4474169310756086 + ], + [ + 41.56330060047886, + 9.037092947258257 + ], + [ + 44.656298311390664, + 8.353010214198859 + ], + [ + 52.01360647580834, + 2.5923135147513654 + ], + [ + 54.337930199393, + 4.707569334079753 + ], + [ + 47.01722555818147, + 10.603282362420547 + ], + [ + 45.80930929238161, + 13.74466228133801 + ], + [ + 50.80569021000849, + 23.1778031266833 + ], + [ + 53.8620843977143, + 33.99711161533315 + ], + [ + 54.200666987370354, + 44.62739724353235 + ], + [ + 56.52499071095499, + 46.61663782256035 + ], + [ + 65.97785057891947, + 47.66076409933526 + ], + [ + 65.4562503732332, + 51.46822457412627 + ], + [ + 56.00339050526867, + 49.686009032734695 + ], + [ + 53.05680688718108, + 50.38809394297988 + ], + [ + 48.582026175240465, + 59.20916076400885 + ], + [ + 42.19471137578334, + 66.88708933374122 + ], + [ + 33.15364114388698, + 74.11496347382923 + ], + [ + 34.288350363274766, + 77.18433468400364 + ], + [ + 40.19981936105316, + 85.66336013850295 + ], + [ + 36.25578973560041, + 87.82362140079564 + ], + [ + 31.982328401293195, + 78.46248926419358 + ], + [ + 28.331126961488835, + 75.84317248366355 + ], + [ + 17.862519324556295, + 78.6875164790157 + ], + [ + 3.5962961549951795, + 78.40848273263624 + ], + [ + -5.389868792092051, + 74.61902443503092 + ], + [ + -8.052775105332755, + 76.6262671912447 + ], + [ + -12.829534883723326, + 85.51934272101663 + ], + [ + -16.10555021066551, + 83.27807166138794 + ], + [ + -10.477758517734125, + 75.01507233311793 + ], + [ + -10.011063596856882, + 71.85569023701471 + ], + [ + -17.038940052419996, + 66.46403816987552 + ], + [ + -23.49031101748772, + 57.57096264010348 + ], + [ + -26.299631423552707, + 51.4412213083476 + ], + [ + -30.01488902896755, + 51.063175587446345 + ], + [ + -39.49520153933658, + 53.655489102197755 + ], + [ + -40.06255614903045, + 49.568994881027166 + ], + [ + -30.545640115455438, + 48.3628490095804 + ], + [ + -27.873582921413178, + 46.031567064022724 + ], + [ + -27.830878811006112, + 33.42604255016222 + ], + [ + -25.356073936463183, + 23.77287509476861 + ], + [ + -20.790801181040955, + 15.625889797251343 + ], + [ + -22.932107288595358, + 12.475508789740982 + ], + [ + -32.092138970911364, + 7.605919860989265 + ], + [ + -29.767815247326663, + 3.7624550318266357 + ], + [ + -21.577776929971183, + 10.306246438855302 + ], + [ + -17.286013834060906, + 10.693293248349423 + ], + [ + -9.965309192849324, + 4.806581308601501 + ], + [ + 0, + 0 + ] + ], + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "index": "aR", + "frameId": null, + "roundness": { + "type": 2 + }, + "boundElements": [], + "updated": 1738919329038, + "link": null, + "locked": false + }, + { + "type": "line", + "version": 834, + "versionNonce": 1572531442, + "isDeleted": false, + "id": "4Ek5WEFr3KxFMY1ZHz40L", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 429.57906086667884, + "y": 171.32210747160022, + "strokeColor": "#000000", + "backgroundColor": "#326ce5", + "width": 21.557705003492888, + "height": 21.557705003492885, + "seed": 1516657280, + "groupIds": [ + "hCkivSuiPNqJt3KQ4XmQx" + ], + "strokeSharpness": "round", + "boundElementIds": [], + "startBinding": null, + "endBinding": null, + "points": [ + [ + 0, + 0 + ], + [ + 6.4174670964155, + -5.81198099131309 + ], + [ + 13.02185071020231, + -9.844784128142559 + ], + [ + 20.747733428217128, + -10.437843412970434 + ], + [ + 21.557705003492888, + 0.2965296424139247 + ], + [ + 20.124678370312722, + 11.11986159052245 + ], + [ + 9.719658903308929, + 6.108510633726992 + ], + [ + 0, + 0 + ] + ], + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "index": "aS", + "frameId": null, + "roundness": { + "type": 2 + }, + "boundElements": [], + "updated": 1738919329038, + "link": null, + "locked": false + }, + { + "type": "line", + "version": 952, + "versionNonce": 560730926, + "isDeleted": false, + "id": "WqusEwi9_yt3NQ2km1e8J", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0.9881310661508964, + "x": 452.4495007124243, + "y": 168.7601620195593, + "strokeColor": "#000000", + "backgroundColor": "#326ce5", + "width": 21.849656050086754, + "height": 22.28721404724548, + "seed": 565643904, + "groupIds": [ + "hCkivSuiPNqJt3KQ4XmQx" + ], + "strokeSharpness": "round", + "boundElementIds": [], + "startBinding": null, + "endBinding": null, + "points": [ + [ + 0, + 0 + ], + [ + 6.307158811343217, + -5.7120802600132725 + ], + [ + 12.798021277385752, + -9.675564522063281 + ], + [ + 19.588707167072652, + -10.78719797872464 + ], + [ + 21.849656050086754, + -0.4228378175566051 + ], + [ + 20.936752849362975, + 11.500016068520841 + ], + [ + 9.552590044364505, + 6.003512926340452 + ], + [ + 0, + 0 + ] + ], + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "index": "aT", + "frameId": null, + "roundness": { + "type": 2 + }, + "boundElements": [], + "updated": 1738919329038, + "link": null, + "locked": false + }, + { + "type": "line", + "version": 958, + "versionNonce": 158629554, + "isDeleted": false, + "id": "72AvcltpSQ-v7ejxCttLL", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 1.880863085334429, + "x": 469.20305306508027, + "y": 185.21255061781395, + "strokeColor": "#000000", + "backgroundColor": "#326ce5", + "width": 21.479159973687498, + "height": 22.534979750262238, + "seed": 460438144, + "groupIds": [ + "hCkivSuiPNqJt3KQ4XmQx" + ], + "strokeSharpness": "round", + "boundElementIds": [], + "startBinding": null, + "endBinding": null, + "points": [ + [ + 0, + 0 + ], + [ + 6.394085194479206, + -5.7908051648456125 + ], + [ + 12.821883813152631, + -9.760046630725103 + ], + [ + 20.67213951224835, + -10.399813357273743 + ], + [ + 21.479159973687498, + 0.29544924310435966 + ], + [ + 19.380563342165882, + 12.135166392988497 + ], + [ + 9.574674364814067, + 6.794079156258463 + ], + [ + 0, + 0 + ] + ], + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "index": "aU", + "frameId": null, + "roundness": { + "type": 2 + }, + "boundElements": [], + "updated": 1738919329038, + "link": null, + "locked": false + }, + { + "type": "line", + "version": 1137, + "versionNonce": 1427996014, + "isDeleted": false, + "id": "QBdlPEdSOSPFAsGUAaEX_", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 2.8469082809423476, + "x": 465.80767793955584, + "y": 208.09017500946504, + "strokeColor": "#000000", + "backgroundColor": "#326ce5", + "width": 20.573332264113013, + "height": 23.385981425370197, + "seed": 1784048256, + "groupIds": [ + "hCkivSuiPNqJt3KQ4XmQx" + ], + "strokeSharpness": "round", + "boundElementIds": [], + "startBinding": null, + "endBinding": null, + "points": [ + [ + 0, + 0 + ], + [ + 3.9968199804359084, + -4.5099335061239545 + ], + [ + 11.103261190280325, + -9.612187799981596 + ], + [ + 18.586782576556548, + -10.698015127009295 + ], + [ + 20.573332264113013, + 0.5226343615079706 + ], + [ + 19.547525553814435, + 12.6879662983609 + ], + [ + 9.342092374121995, + 7.560357671417819 + ], + [ + 0, + 0 + ] + ], + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "index": "aV", + "frameId": null, + "roundness": { + "type": 2 + }, + "boundElements": [], + "updated": 1738919329038, + "link": null, + "locked": false + }, + { + "type": "line", + "version": 1269, + "versionNonce": 865458290, + "isDeleted": false, + "id": "OaTtN_WCR4YecnAxkG2RA", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 3.774871714878671, + "x": 445.6459877013146, + "y": 219.88294197008946, + "strokeColor": "#000000", + "backgroundColor": "#326ce5", + "width": 21.060929668098346, + "height": 24.192747374364252, + "seed": 1495603840, + "groupIds": [ + "hCkivSuiPNqJt3KQ4XmQx" + ], + "strokeSharpness": "round", + "boundElementIds": [], + "startBinding": null, + "endBinding": null, + "points": [ + [ + 0, + 0 + ], + [ + 5.323764530816631, + -5.225233883686096 + ], + [ + 11.946440312022089, + -10.13358813849016 + ], + [ + 19.14310255451752, + -12.037088588123884 + ], + [ + 20.457394955122687, + -0.0020215484438121066 + ], + [ + 21.060929668098346, + 12.155658786240366 + ], + [ + 10.400753487297417, + 6.523865227139614 + ], + [ + 0, + 0 + ] + ], + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "index": "aW", + "frameId": null, + "roundness": { + "type": 2 + }, + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false + }, + { + "type": "line", + "version": 1332, + "versionNonce": 1537712046, + "isDeleted": false, + "id": "Z81_nMrMWCWVAT7gScq8w", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 4.759646000521123, + "x": 423.4888441621996, + "y": 210.8358613009474, + "strokeColor": "#000000", + "backgroundColor": "#326ce5", + "width": 20.851751550243478, + "height": 20.502820893402166, + "seed": 1520290432, + "groupIds": [ + "hCkivSuiPNqJt3KQ4XmQx" + ], + "strokeSharpness": "round", + "boundElementIds": [], + "startBinding": null, + "endBinding": null, + "points": [ + [ + 0, + 0 + ], + [ + 4.146788698896836, + -5.844864068211204 + ], + [ + 10.689172996507862, + -10.781555944738223 + ], + [ + 16.467244654531225, + -11.162985900365323 + ], + [ + 20.428485246628206, + -1.5789248026187297 + ], + [ + 20.851751550243478, + 9.339834993036844 + ], + [ + 9.574674364814067, + 6.794079156258462 + ], + [ + 0, + 0 + ] + ], + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "index": "aX", + "frameId": null, + "roundness": { + "type": 2 + }, + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false + }, + { + "type": "line", + "version": 1460, + "versionNonce": 1273362994, + "isDeleted": false, + "id": "79Hkv14365pGeHuCfBvmy", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 5.645190933495279, + "x": 417.43225162656506, + "y": 189.44484115547692, + "strokeColor": "#000000", + "backgroundColor": "#326ce5", + "width": 23.42043937693637, + "height": 22.639048645082866, + "seed": 159414912, + "groupIds": [ + "hCkivSuiPNqJt3KQ4XmQx" + ], + "strokeSharpness": "round", + "boundElementIds": [], + "startBinding": null, + "endBinding": null, + "points": [ + [ + 0, + 0 + ], + [ + 4.146788698896836, + -5.844864068211203 + ], + [ + 10.689172996507862, + -10.781555944738221 + ], + [ + 17.230354411946674, + -12.192224934711268 + ], + [ + 20.93869500462914, + -1.9981556001148353 + ], + [ + 23.42043937693637, + 10.446823710371596 + ], + [ + 11.462411876252354, + 6.399295000034613 + ], + [ + 0, + 0 + ] + ], + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "index": "aY", + "frameId": null, + "roundness": { + "type": 2 + }, + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false + }, + { + "type": "ellipse", + "version": 279, + "versionNonce": 1228110318, + "isDeleted": false, + "id": "iT-d-TSdB3DXQUXAhBtQS", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 450.9107980980906, + "y": 189.06234538643167, + "strokeColor": "#000000", + "backgroundColor": "#326ce5", + "width": 9.43161874441803, + "height": 9.43161874441803, + "seed": 680340096, + "groupIds": [ + "hCkivSuiPNqJt3KQ4XmQx" + ], + "strokeSharpness": "sharp", + "boundElementIds": [], + "index": "aZ", + "frameId": null, + "roundness": null, + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false + }, + { + "id": "nivHBVnDpVwN-TndKXAZW", + "type": "text", + "x": 939.3519701633606, + "y": 216.41992385430342, + "width": 304.84912109375, + "height": 35, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "ab", + "roundness": null, + "seed": 310254208, + "version": 359, + "versionNonce": 827057138, + "isDeleted": false, + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "text": "k3k-system namespace", + "fontSize": 28, + "fontFamily": 5, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "k3k-system namespace", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "xTu4L6YTvS5ibAOYadtTp", + "type": "rectangle", + "x": 902.387711644208, + "y": 260.2127450995846, + "width": 379.992577576889, + "height": 165.59987816580406, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "dashed", + "roughness": 1, + "opacity": 100, + "groupIds": [ + "ovaQoLIrsCZ-Ba_FUm33z" + ], + "frameId": null, + "index": "ab8", + "roundness": null, + "seed": 520604288, + "version": 730, + "versionNonce": 1856512562, + "isDeleted": false, + "boundElements": [ + { + "id": "HDocOXT_UZJKEfjrc2x90", + "type": "arrow" + } + ], + "updated": 1738919329040, + "link": null, + "locked": false + }, + { + "type": "line", + "version": 1598, + "versionNonce": 1305384370, + "isDeleted": false, + "id": "T3kwjMO3VSha1Nlz_xrMt", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 1091.4406366538587, + "y": 279.58955481778196, + "strokeColor": "#000000", + "backgroundColor": "#326ce5", + "width": 95.91694595296573, + "height": 93.88317402088744, + "seed": 1623731584, + "groupIds": [ + "_Rq0bT9FyqdmO8d_HyTVH", + "Biy2lkjCIp76BFuvPmb9J", + "0bAlRVbHZhSVeWM6lTxlD", + "wU2M2qdT2o2AStg-OmW1J", + "oKvzaLD7vxd3CNXD5Ngtw", + "ovaQoLIrsCZ-Ba_FUm33z" + ], + "strokeSharpness": "sharp", + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -39.59125003164969, + 18.937807635114627 + ], + [ + -47.754394368072326, + 59.432481408072505 + ], + [ + -20.407860841056557, + 93.88317402088744 + ], + [ + 25.509826051320665, + 93.68170798221598 + ], + [ + 48.162551584893414, + 56.813422905343806 + ], + [ + 39.18309281482855, + 16.92314724840031 + ], + [ + 0, + 0 + ] + ], + "index": "abG", + "frameId": null, + "roundness": null + }, + { + "type": "text", + "version": 871, + "versionNonce": 944086062, + "isDeleted": false, + "id": "l7JM8oP0_K51jxS8Mvn4k", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 1074.7982559977536, + "y": 348.763733737069, + "strokeColor": "#fff", + "backgroundColor": "transparent", + "width": 35.55351257324219, + "height": 23.221683381669717, + "seed": 1114013056, + "groupIds": [ + "Biy2lkjCIp76BFuvPmb9J", + "0bAlRVbHZhSVeWM6lTxlD", + "wU2M2qdT2o2AStg-OmW1J", + "oKvzaLD7vxd3CNXD5Ngtw", + "ovaQoLIrsCZ-Ba_FUm33z" + ], + "strokeSharpness": "sharp", + "boundElements": [ + { + "id": "WPJZGiua10MRJDFXeNjI4", + "type": "arrow" + }, + { + "id": "Hh4dA7_bK3xVrSpR2ljFD", + "type": "arrow" + }, + { + "id": "g8qTzFw3Bndj169_MuKfP", + "type": "arrow" + } + ], + "updated": 1738919329040, + "link": null, + "locked": false, + "fontSize": 18.577346705335774, + "fontFamily": 1, + "text": "Pod", + "baseline": 14, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "originalText": "Pod", + "index": "abO", + "frameId": null, + "roundness": null, + "autoResize": true, + "lineHeight": 1.25 + }, + { + "type": "arrow", + "version": 2001, + "versionNonce": 1806610606, + "isDeleted": false, + "id": "g8qTzFw3Bndj169_MuKfP", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 1091.0575254703322, + "y": 313.1476850724994, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 0.9316120817336468, + "height": 21.616048664569576, + "seed": 2075839872, + "groupIds": [ + "wwu1HtQZrT7QzYflY5v5Y", + "YVqeULGBaW3udJwfCtbWA", + "wU2M2qdT2o2AStg-OmW1J", + "oKvzaLD7vxd3CNXD5Ngtw", + "ovaQoLIrsCZ-Ba_FUm33z" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329043, + "link": null, + "locked": false, + "startBinding": { + "elementId": "1wFQh0a4E1oLFHUP0JRdl", + "focus": 0.06357849557367089, + "gap": 1.1610841690837006, + "fixedPoint": null + }, + "endBinding": { + "elementId": "l7JM8oP0_K51jxS8Mvn4k", + "focus": -0.1943889965203955, + "gap": 14, + "fixedPoint": null + }, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -0.9316120817336468, + 21.616048664569576 + ] + ], + "index": "abV", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "arrow", + "version": 1271, + "versionNonce": 1948695986, + "isDeleted": false, + "id": "WPJZGiua10MRJDFXeNjI4", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 1094.4587922747146, + "y": 336.1481730066223, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 15.336802800918715, + "height": 7.239641937092449, + "seed": 637869440, + "groupIds": [ + "wwu1HtQZrT7QzYflY5v5Y", + "YVqeULGBaW3udJwfCtbWA", + "wU2M2qdT2o2AStg-OmW1J", + "oKvzaLD7vxd3CNXD5Ngtw", + "ovaQoLIrsCZ-Ba_FUm33z" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329042, + "link": null, + "locked": false, + "startBinding": { + "elementId": "l7JM8oP0_K51jxS8Mvn4k", + "focus": -1.166727627308337, + "gap": 12.615560730446674, + "fixedPoint": null + }, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 15.336802800918715, + -7.239641937092449 + ] + ], + "index": "abd", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "arrow", + "version": 1348, + "versionNonce": 1884584242, + "isDeleted": false, + "id": "ag_WDSSlo272BtALRfB7B", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 1109.8454553588697, + "y": 306.4520919910791, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 0.46506629105565866, + "height": 23.461362085416425, + "seed": 847605120, + "groupIds": [ + "wwu1HtQZrT7QzYflY5v5Y", + "YVqeULGBaW3udJwfCtbWA", + "wU2M2qdT2o2AStg-OmW1J", + "oKvzaLD7vxd3CNXD5Ngtw", + "ovaQoLIrsCZ-Ba_FUm33z" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329043, + "link": null, + "locked": false, + "startBinding": { + "elementId": "1wFQh0a4E1oLFHUP0JRdl", + "focus": -0.9764089313008506, + "gap": 1.6378775642064625, + "fixedPoint": null + }, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 0.46506629105565866, + 23.461362085416425 + ] + ], + "index": "abl", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "arrow", + "version": 1130, + "versionNonce": 1425190510, + "isDeleted": false, + "id": "Hh4dA7_bK3xVrSpR2ljFD", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 1090.4713476070474, + "y": 337.3170077721088, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 18.85333133897294, + "height": 11.663940739968485, + "seed": 1786494336, + "groupIds": [ + "wwu1HtQZrT7QzYflY5v5Y", + "YVqeULGBaW3udJwfCtbWA", + "wU2M2qdT2o2AStg-OmW1J", + "oKvzaLD7vxd3CNXD5Ngtw", + "ovaQoLIrsCZ-Ba_FUm33z" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329042, + "link": null, + "locked": false, + "startBinding": { + "elementId": "l7JM8oP0_K51jxS8Mvn4k", + "focus": 0.9622870809937719, + "gap": 11.446725964960166, + "fixedPoint": null + }, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -18.85333133897294, + -11.663940739968485 + ] + ], + "index": "abt", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "arrow", + "version": 1192, + "versionNonce": 1211132654, + "isDeleted": false, + "id": "xvYvsoLR-aVt10Wc37SzT", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 1075.8285430291933, + "y": 327.53826233798105, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 1.40380467403088, + "height": 20.887541171656892, + "seed": 1864895872, + "groupIds": [ + "wwu1HtQZrT7QzYflY5v5Y", + "YVqeULGBaW3udJwfCtbWA", + "wU2M2qdT2o2AStg-OmW1J", + "oKvzaLD7vxd3CNXD5Ngtw", + "ovaQoLIrsCZ-Ba_FUm33z" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329043, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": { + "elementId": "1wFQh0a4E1oLFHUP0JRdl", + "focus": 0.8589310764378145, + "gap": 1, + "fixedPoint": null + }, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 1.40380467403088, + -20.887541171656892 + ] + ], + "index": "ac", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "diamond", + "version": 843, + "versionNonce": 242411694, + "isDeleted": false, + "id": "1wFQh0a4E1oLFHUP0JRdl", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 1074.8858361552175, + "y": 296.4017381263824, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 35.337320777988985, + "height": 16.153605471047978, + "seed": 969563520, + "groupIds": [ + "wwu1HtQZrT7QzYflY5v5Y", + "YVqeULGBaW3udJwfCtbWA", + "wU2M2qdT2o2AStg-OmW1J", + "oKvzaLD7vxd3CNXD5Ngtw", + "ovaQoLIrsCZ-Ba_FUm33z" + ], + "strokeSharpness": "sharp", + "boundElements": [ + { + "id": "g8qTzFw3Bndj169_MuKfP", + "type": "arrow" + }, + { + "id": "ag_WDSSlo272BtALRfB7B", + "type": "arrow" + }, + { + "id": "xvYvsoLR-aVt10Wc37SzT", + "type": "arrow" + } + ], + "updated": 1738919329040, + "link": null, + "locked": false, + "index": "acG", + "frameId": null, + "roundness": null + }, + { + "type": "line", + "version": 517, + "versionNonce": 1424305330, + "isDeleted": false, + "id": "NbJ7aDWMIzgONlP45-vlI", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 1101.731362673307, + "y": 312.2200117470007, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 8.182148235188777, + "height": 14.941314168605555, + "seed": 463646080, + "groupIds": [ + "YVqeULGBaW3udJwfCtbWA", + "wU2M2qdT2o2AStg-OmW1J", + "oKvzaLD7vxd3CNXD5Ngtw", + "ovaQoLIrsCZ-Ba_FUm33z" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -8.182148235188777, + 14.941314168605555 + ] + ], + "index": "acV", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "line", + "version": 519, + "versionNonce": 953593710, + "isDeleted": false, + "id": "cxnHWBdWQZLLXn1jJ8ndE", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 1080.0308825712852, + "y": 308.30681041712785, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 8.893639386074742, + "height": 13.874077442276572, + "seed": 1039203712, + "groupIds": [ + "YVqeULGBaW3udJwfCtbWA", + "wU2M2qdT2o2AStg-OmW1J", + "oKvzaLD7vxd3CNXD5Ngtw", + "ovaQoLIrsCZ-Ba_FUm33z" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 8.893639386074742, + 13.874077442276572 + ] + ], + "index": "acl", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "line", + "version": 551, + "versionNonce": 1757464178, + "isDeleted": false, + "id": "CxCT9MaUQROA-T9GBhUUC", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 1107.6011646681166, + "y": 315.77746750143075, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 8.182148235188777, + "height": 14.941314168605555, + "seed": 569724288, + "groupIds": [ + "YVqeULGBaW3udJwfCtbWA", + "wU2M2qdT2o2AStg-OmW1J", + "oKvzaLD7vxd3CNXD5Ngtw", + "ovaQoLIrsCZ-Ba_FUm33z" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -8.182148235188777, + 14.941314168605555 + ] + ], + "index": "ad", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "line", + "version": 558, + "versionNonce": 359305646, + "isDeleted": false, + "id": "-U0Qm5pxn-YRpWYPH_R0s", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 1078.0742819063487, + "y": 317.02257701548115, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 8.893639386074742, + "height": 13.874077442276572, + "seed": 552574336, + "groupIds": [ + "YVqeULGBaW3udJwfCtbWA", + "wU2M2qdT2o2AStg-OmW1J", + "oKvzaLD7vxd3CNXD5Ngtw", + "ovaQoLIrsCZ-Ba_FUm33z" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 8.893639386074742, + 13.874077442276572 + ] + ], + "index": "adV", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "id": "DFdxTfi9wJhaB7h8V-qDe", + "type": "text", + "x": 994.6903390415662, + "y": 386.4555130424055, + "width": 193.90875244140625, + "height": 35, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "dashed", + "roughness": 1, + "opacity": 100, + "groupIds": [ + "oKvzaLD7vxd3CNXD5Ngtw", + "ovaQoLIrsCZ-Ba_FUm33z" + ], + "frameId": null, + "index": "ae", + "roundness": null, + "seed": 905714304, + "version": 194, + "versionNonce": 964896818, + "isDeleted": false, + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "text": "K3k Controller", + "fontSize": 28, + "fontFamily": 5, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "originalText": "K3k Controller", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "KItJ2RwOqq1eKPHLbX-7a", + "type": "text", + "x": 448.7780102224841, + "y": 368.47694270163964, + "width": 296.4451599121094, + "height": 70, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b06", + "roundness": null, + "seed": 456805760, + "version": 439, + "versionNonce": 1908943854, + "isDeleted": false, + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "text": "k3k-my-virtual-cluster\nnamespace", + "fontSize": 28, + "fontFamily": 5, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "k3k-my-virtual-cluster\nnamespace", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "type": "line", + "version": 1664, + "versionNonce": 252924402, + "isDeleted": false, + "id": "gLMCSJslDWNXBQmX584Ke", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 608.810294103606, + "y": 571.7227597450657, + "strokeColor": "#000000", + "backgroundColor": "#326ce5", + "width": 95.91694595296573, + "height": 93.88317402088744, + "seed": 1906957696, + "groupIds": [ + "TZH2DmgQ6UX0wWzOp6cjW", + "OHPPW2PytZWveQN4gTwBU", + "8HuPTiUFICUpB-yA5wd3f", + "F7sbb28uZp5auYrRhD91V", + "QSv-mgxeSjGXAseRULooA" + ], + "strokeSharpness": "sharp", + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -39.59125003164969, + 18.937807635114627 + ], + [ + -47.754394368072326, + 59.432481408072505 + ], + [ + -20.407860841056557, + 93.88317402088744 + ], + [ + 25.509826051320665, + 93.68170798221598 + ], + [ + 48.162551584893414, + 56.813422905343806 + ], + [ + 39.18309281482855, + 16.92314724840031 + ], + [ + 0, + 0 + ] + ], + "index": "b08", + "frameId": null, + "roundness": null + }, + { + "type": "text", + "version": 940, + "versionNonce": 1024999278, + "isDeleted": false, + "id": "4tcJljIkG_OoBn1bQz1R4", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 592.1679134475008, + "y": 640.8969386643527, + "strokeColor": "#fff", + "backgroundColor": "transparent", + "width": 35.99360924158806, + "height": 23.221683381669717, + "seed": 731000192, + "groupIds": [ + "OHPPW2PytZWveQN4gTwBU", + "8HuPTiUFICUpB-yA5wd3f", + "F7sbb28uZp5auYrRhD91V", + "QSv-mgxeSjGXAseRULooA" + ], + "strokeSharpness": "sharp", + "boundElements": [ + { + "id": "RA5KCrFamreS7cNpTiRdY", + "type": "arrow" + }, + { + "id": "MtF--zcpFSKCtT6PbzmSC", + "type": "arrow" + }, + { + "id": "7cprIOD6hU68JV5bShmzH", + "type": "arrow" + } + ], + "updated": 1738919329040, + "link": null, + "locked": false, + "fontSize": 18.577346705335774, + "fontFamily": 1, + "text": "Pod", + "baseline": 14, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "Pod", + "index": "b09", + "frameId": null, + "roundness": null, + "autoResize": true, + "lineHeight": 1.25 + }, + { + "type": "arrow", + "version": 2232, + "versionNonce": 1401489262, + "isDeleted": false, + "id": "MtF--zcpFSKCtT6PbzmSC", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 608.4271829200793, + "y": 605.2808899997832, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 0.9316120817335332, + "height": 21.616048664569462, + "seed": 602963328, + "groupIds": [ + "sELBEUwAws-Nsueayzx-o", + "6eoEQTdvSBimRXnZNDu-E", + "F7sbb28uZp5auYrRhD91V", + "QSv-mgxeSjGXAseRULooA" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329044, + "link": null, + "locked": false, + "startBinding": { + "elementId": "pgq6x1ZSuWtyo0alD46vz", + "focus": 0.0635784955736886, + "gap": 1.1610841690838987, + "fixedPoint": null + }, + "endBinding": { + "elementId": "4tcJljIkG_OoBn1bQz1R4", + "focus": -0.20397278528525298, + "gap": 14, + "fixedPoint": null + }, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -0.9316120817335332, + 21.616048664569462 + ] + ], + "index": "b0A", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "arrow", + "version": 1430, + "versionNonce": 434721970, + "isDeleted": false, + "id": "7cprIOD6hU68JV5bShmzH", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 589.6498946129703, + "y": 634.1956592969706, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 37.51535791241045, + "height": 13.153923300156952, + "seed": 470076800, + "groupIds": [ + "sELBEUwAws-Nsueayzx-o", + "6eoEQTdvSBimRXnZNDu-E", + "F7sbb28uZp5auYrRhD91V", + "QSv-mgxeSjGXAseRULooA" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329044, + "link": null, + "locked": false, + "startBinding": { + "elementId": "4tcJljIkG_OoBn1bQz1R4", + "focus": -1.4231994947854592, + "gap": 6.701279367382085, + "fixedPoint": null + }, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 37.51535791241045, + -13.153923300156952 + ] + ], + "index": "b0B", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "arrow", + "version": 1496, + "versionNonce": 1258286706, + "isDeleted": false, + "id": "XD0yZfZ-WZ4C7irCKDsOE", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 627.2151128086172, + "y": 598.5852969183628, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 0.46506629105565866, + "height": 23.461362085416425, + "seed": 755965312, + "groupIds": [ + "sELBEUwAws-Nsueayzx-o", + "6eoEQTdvSBimRXnZNDu-E", + "F7sbb28uZp5auYrRhD91V", + "QSv-mgxeSjGXAseRULooA" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329044, + "link": null, + "locked": false, + "startBinding": { + "elementId": "pgq6x1ZSuWtyo0alD46vz", + "focus": -0.9764089313008564, + "gap": 1.6378775642064882, + "fixedPoint": null + }, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 0.46506629105565866, + 23.461362085416425 + ] + ], + "index": "b0C", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "arrow", + "version": 1278, + "versionNonce": 1636991730, + "isDeleted": false, + "id": "RA5KCrFamreS7cNpTiRdY", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 607.8410050567952, + "y": 629.4502126993926, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 18.85333133897328, + "height": 11.663940739968542, + "seed": 1213164928, + "groupIds": [ + "sELBEUwAws-Nsueayzx-o", + "6eoEQTdvSBimRXnZNDu-E", + "F7sbb28uZp5auYrRhD91V", + "QSv-mgxeSjGXAseRULooA" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329044, + "link": null, + "locked": false, + "startBinding": { + "elementId": "4tcJljIkG_OoBn1bQz1R4", + "focus": 0.9505420481460304, + "gap": 11.446725964960024, + "fixedPoint": null + }, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -18.85333133897328, + -11.663940739968542 + ] + ], + "index": "b0D", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "arrow", + "version": 1340, + "versionNonce": 1477568942, + "isDeleted": false, + "id": "CwyO9NB1p4s6MncefAaIW", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 593.1982004789407, + "y": 619.6714672652648, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 1.40380467403088, + "height": 20.887541171656835, + "seed": 923123072, + "groupIds": [ + "sELBEUwAws-Nsueayzx-o", + "6eoEQTdvSBimRXnZNDu-E", + "F7sbb28uZp5auYrRhD91V", + "QSv-mgxeSjGXAseRULooA" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329044, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": { + "elementId": "pgq6x1ZSuWtyo0alD46vz", + "focus": 0.8589310764377989, + "gap": 1, + "fixedPoint": null + }, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 1.40380467403088, + -20.887541171656835 + ] + ], + "index": "b0E", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "diamond", + "version": 915, + "versionNonce": 1592114158, + "isDeleted": false, + "id": "pgq6x1ZSuWtyo0alD46vz", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 592.2554936049647, + "y": 588.5349430536661, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 35.337320777988985, + "height": 16.153605471047978, + "seed": 443682176, + "groupIds": [ + "sELBEUwAws-Nsueayzx-o", + "6eoEQTdvSBimRXnZNDu-E", + "F7sbb28uZp5auYrRhD91V", + "QSv-mgxeSjGXAseRULooA" + ], + "strokeSharpness": "sharp", + "boundElements": [ + { + "id": "MtF--zcpFSKCtT6PbzmSC", + "type": "arrow" + }, + { + "id": "XD0yZfZ-WZ4C7irCKDsOE", + "type": "arrow" + }, + { + "id": "CwyO9NB1p4s6MncefAaIW", + "type": "arrow" + } + ], + "updated": 1738919329040, + "link": null, + "locked": false, + "index": "b0F", + "frameId": null, + "roundness": null + }, + { + "type": "line", + "version": 582, + "versionNonce": 617203954, + "isDeleted": false, + "id": "UoWfsKKLr-YfuK0u6lWLD", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 619.1010201230544, + "y": 604.3532166742845, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 8.182148235188777, + "height": 14.941314168605555, + "seed": 1809079680, + "groupIds": [ + "6eoEQTdvSBimRXnZNDu-E", + "F7sbb28uZp5auYrRhD91V", + "QSv-mgxeSjGXAseRULooA" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -8.182148235188777, + 14.941314168605555 + ] + ], + "index": "b0G", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "line", + "version": 585, + "versionNonce": 1011414830, + "isDeleted": false, + "id": "ZYJsh037xvX6c2j5AWrMU", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 597.4005400210327, + "y": 600.4400153444116, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 8.893639386074742, + "height": 13.874077442276572, + "seed": 2087497088, + "groupIds": [ + "6eoEQTdvSBimRXnZNDu-E", + "F7sbb28uZp5auYrRhD91V", + "QSv-mgxeSjGXAseRULooA" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 8.893639386074742, + 13.874077442276572 + ] + ], + "index": "b0H", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "line", + "version": 616, + "versionNonce": 1112005298, + "isDeleted": false, + "id": "Tpz4y9Q0FIvkNN7aAIKYd", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 624.970822117864, + "y": 607.9106724287145, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 8.182148235188777, + "height": 14.941314168605555, + "seed": 1970994560, + "groupIds": [ + "6eoEQTdvSBimRXnZNDu-E", + "F7sbb28uZp5auYrRhD91V", + "QSv-mgxeSjGXAseRULooA" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -8.182148235188777, + 14.941314168605555 + ] + ], + "index": "b0I", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "line", + "version": 624, + "versionNonce": 1253957998, + "isDeleted": false, + "id": "JsyY6_NE4ChFWdYJZTbBm", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 595.4439393560962, + "y": 609.155781942765, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 8.893639386074742, + "height": 13.874077442276572, + "seed": 1480543616, + "groupIds": [ + "6eoEQTdvSBimRXnZNDu-E", + "F7sbb28uZp5auYrRhD91V", + "QSv-mgxeSjGXAseRULooA" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 8.893639386074742, + 13.874077442276572 + ] + ], + "index": "b0J", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "id": "SggIf7xRieQejcq3d6lyz", + "type": "text", + "x": 536.4621113594775, + "y": 673.8909956255865, + "width": 145.10452270507812, + "height": 35, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "dashed", + "roughness": 1, + "opacity": 100, + "groupIds": [ + "QSv-mgxeSjGXAseRULooA" + ], + "frameId": null, + "index": "b0K", + "roundness": null, + "seed": 320182912, + "version": 324, + "versionNonce": 832418930, + "isDeleted": false, + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "text": "K3s server", + "fontSize": 28, + "fontFamily": 5, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "K3s server", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "type": "line", + "version": 1869, + "versionNonce": 127632302, + "isDeleted": false, + "id": "UFW9z9Q0lzQhITugQ8fhX", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 689.0347988996142, + "y": 726.2139650643975, + "strokeColor": "#000000", + "backgroundColor": "#326ce5", + "width": 95.91694595296573, + "height": 93.88317402088744, + "seed": 171380096, + "groupIds": [ + "N68E50vjvJGvxVapxdYT8", + "FRTSXCrtyhjZpilI88dJj", + "WeV3uUNV3TUKxHFExYr75", + "lyos0lLkzzxSbeM0uOMtt", + "slXBQXX7H8-YJ8hcrk4Xy" + ], + "strokeSharpness": "sharp", + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -39.59125003164969, + 18.937807635114627 + ], + [ + -47.754394368072326, + 59.432481408072505 + ], + [ + -20.407860841056557, + 93.88317402088744 + ], + [ + 25.509826051320665, + 93.68170798221598 + ], + [ + 48.162551584893414, + 56.813422905343806 + ], + [ + 39.18309281482855, + 16.92314724840031 + ], + [ + 0, + 0 + ] + ], + "index": "b0L", + "frameId": null, + "roundness": null + }, + { + "type": "text", + "version": 1145, + "versionNonce": 1100798638, + "isDeleted": false, + "id": "uG5N0x1SLPkvwP7NY66Fq", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 672.392418243509, + "y": 795.3881439836845, + "strokeColor": "#fff", + "backgroundColor": "transparent", + "width": 35.99360924158806, + "height": 23.221683381669717, + "seed": 452550016, + "groupIds": [ + "FRTSXCrtyhjZpilI88dJj", + "WeV3uUNV3TUKxHFExYr75", + "lyos0lLkzzxSbeM0uOMtt", + "slXBQXX7H8-YJ8hcrk4Xy" + ], + "strokeSharpness": "sharp", + "boundElements": [ + { + "id": "kkKQFNlKGYNS-a1GL6q1z", + "type": "arrow" + }, + { + "id": "Y6IsRVFiXsKxtO8jejV4s", + "type": "arrow" + }, + { + "id": "rwc1LZ8GuLfrmS-T8-1SH", + "type": "arrow" + } + ], + "updated": 1738919329040, + "link": null, + "locked": false, + "fontSize": 18.577346705335774, + "fontFamily": 1, + "text": "Pod", + "baseline": 14, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "Pod", + "index": "b0M", + "frameId": null, + "roundness": null, + "autoResize": true, + "lineHeight": 1.25 + }, + { + "type": "arrow", + "version": 2909, + "versionNonce": 782882350, + "isDeleted": false, + "id": "Y6IsRVFiXsKxtO8jejV4s", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 688.6516877160877, + "y": 759.7720953191148, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 0.9316120817337605, + "height": 21.61604866456969, + "seed": 2129767808, + "groupIds": [ + "whFSfBRLBI_x8Jx3gu4mq", + "nryh5yEFmV4ypiYfTH1Wb", + "lyos0lLkzzxSbeM0uOMtt", + "slXBQXX7H8-YJ8hcrk4Xy" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329044, + "link": null, + "locked": false, + "startBinding": { + "elementId": "LVbU5G0inKV2aKqFhLKU3", + "focus": 0.06357849557367079, + "gap": 1.1610841690838027, + "fixedPoint": null + }, + "endBinding": { + "elementId": "uG5N0x1SLPkvwP7NY66Fq", + "focus": -0.2039727852852656, + "gap": 14, + "fixedPoint": null + }, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -0.9316120817337605, + 21.61604866456969 + ] + ], + "index": "b0N", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "arrow", + "version": 1871, + "versionNonce": 2041084402, + "isDeleted": false, + "id": "rwc1LZ8GuLfrmS-T8-1SH", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 669.8743994089785, + "y": 788.6868646163024, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 37.51535791241045, + "height": 13.153923300156952, + "seed": 1600126336, + "groupIds": [ + "whFSfBRLBI_x8Jx3gu4mq", + "nryh5yEFmV4ypiYfTH1Wb", + "lyos0lLkzzxSbeM0uOMtt", + "slXBQXX7H8-YJ8hcrk4Xy" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329044, + "link": null, + "locked": false, + "startBinding": { + "elementId": "uG5N0x1SLPkvwP7NY66Fq", + "focus": -1.4231994947854567, + "gap": 6.701279367382085, + "fixedPoint": null + }, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 37.51535791241045, + -13.153923300156952 + ] + ], + "index": "b0O", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "arrow", + "version": 1937, + "versionNonce": 1244162994, + "isDeleted": false, + "id": "lSrlt2Jxp6_ZRULZ22Isg", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 707.4396176046254, + "y": 753.0765022376944, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 0.46506629105577235, + "height": 23.461362085416425, + "seed": 1032080768, + "groupIds": [ + "whFSfBRLBI_x8Jx3gu4mq", + "nryh5yEFmV4ypiYfTH1Wb", + "lyos0lLkzzxSbeM0uOMtt", + "slXBQXX7H8-YJ8hcrk4Xy" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329045, + "link": null, + "locked": false, + "startBinding": { + "elementId": "LVbU5G0inKV2aKqFhLKU3", + "focus": -0.9764089313008558, + "gap": 1.6378775642064882, + "fixedPoint": null + }, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 0.46506629105577235, + 23.461362085416425 + ] + ], + "index": "b0P", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "arrow", + "version": 1719, + "versionNonce": 1503481906, + "isDeleted": false, + "id": "kkKQFNlKGYNS-a1GL6q1z", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 688.0655098528034, + "y": 783.9414180187244, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 18.85333133897328, + "height": 11.663940739968542, + "seed": 1922997632, + "groupIds": [ + "whFSfBRLBI_x8Jx3gu4mq", + "nryh5yEFmV4ypiYfTH1Wb", + "lyos0lLkzzxSbeM0uOMtt", + "slXBQXX7H8-YJ8hcrk4Xy" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329044, + "link": null, + "locked": false, + "startBinding": { + "elementId": "uG5N0x1SLPkvwP7NY66Fq", + "focus": 0.9505420481460304, + "gap": 11.446725964960024, + "fixedPoint": null + }, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -18.85333133897328, + -11.663940739968542 + ] + ], + "index": "b0Q", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "arrow", + "version": 1781, + "versionNonce": 464183406, + "isDeleted": false, + "id": "9Xw377a8Upcw33OreNQRb", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 673.422705274949, + "y": 774.1626725845966, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 1.4038046740309937, + "height": 20.887541171657062, + "seed": 804187520, + "groupIds": [ + "whFSfBRLBI_x8Jx3gu4mq", + "nryh5yEFmV4ypiYfTH1Wb", + "lyos0lLkzzxSbeM0uOMtt", + "slXBQXX7H8-YJ8hcrk4Xy" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329045, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": { + "elementId": "LVbU5G0inKV2aKqFhLKU3", + "focus": 0.8589310764377914, + "gap": 1, + "fixedPoint": null + }, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 1.4038046740309937, + -20.887541171657062 + ] + ], + "index": "b0R", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "diamond", + "version": 1120, + "versionNonce": 1961658158, + "isDeleted": false, + "id": "LVbU5G0inKV2aKqFhLKU3", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 672.4799984009729, + "y": 743.0261483729977, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 35.337320777988985, + "height": 16.153605471047978, + "seed": 2125806976, + "groupIds": [ + "whFSfBRLBI_x8Jx3gu4mq", + "nryh5yEFmV4ypiYfTH1Wb", + "lyos0lLkzzxSbeM0uOMtt", + "slXBQXX7H8-YJ8hcrk4Xy" + ], + "strokeSharpness": "sharp", + "boundElements": [ + { + "id": "Y6IsRVFiXsKxtO8jejV4s", + "type": "arrow" + }, + { + "id": "lSrlt2Jxp6_ZRULZ22Isg", + "type": "arrow" + }, + { + "id": "9Xw377a8Upcw33OreNQRb", + "type": "arrow" + } + ], + "updated": 1738919329040, + "link": null, + "locked": false, + "index": "b0S", + "frameId": null, + "roundness": null + }, + { + "type": "line", + "version": 787, + "versionNonce": 696073390, + "isDeleted": false, + "id": "bk_yVVDCFENJmuO_9glVy", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 699.3255249190626, + "y": 758.8444219936163, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 8.182148235188777, + "height": 14.941314168605555, + "seed": 1076989312, + "groupIds": [ + "nryh5yEFmV4ypiYfTH1Wb", + "lyos0lLkzzxSbeM0uOMtt", + "slXBQXX7H8-YJ8hcrk4Xy" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -8.182148235188777, + 14.941314168605555 + ] + ], + "index": "b0T", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "line", + "version": 790, + "versionNonce": 629452082, + "isDeleted": false, + "id": "zagGAslLWeutfep-xo3Y0", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 677.6250448170409, + "y": 754.9312206637431, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 8.893639386074742, + "height": 13.874077442276572, + "seed": 765713792, + "groupIds": [ + "nryh5yEFmV4ypiYfTH1Wb", + "lyos0lLkzzxSbeM0uOMtt", + "slXBQXX7H8-YJ8hcrk4Xy" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 8.893639386074742, + 13.874077442276572 + ] + ], + "index": "b0U", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "line", + "version": 821, + "versionNonce": 1682798318, + "isDeleted": false, + "id": "cfszKNppHg6jfqQvlEs22", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 705.1953269138722, + "y": 762.4018777480463, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 8.182148235188777, + "height": 14.941314168605555, + "seed": 1481387392, + "groupIds": [ + "nryh5yEFmV4ypiYfTH1Wb", + "lyos0lLkzzxSbeM0uOMtt", + "slXBQXX7H8-YJ8hcrk4Xy" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -8.182148235188777, + 14.941314168605555 + ] + ], + "index": "b0V", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "line", + "version": 829, + "versionNonce": 1788622578, + "isDeleted": false, + "id": "dwUi-vmSFQEbBHnqnjcnY", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 675.6684441521044, + "y": 763.6469872620966, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 8.893639386074742, + "height": 13.874077442276572, + "seed": 694844800, + "groupIds": [ + "nryh5yEFmV4ypiYfTH1Wb", + "lyos0lLkzzxSbeM0uOMtt", + "slXBQXX7H8-YJ8hcrk4Xy" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 8.893639386074742, + 13.874077442276572 + ] + ], + "index": "b0W", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "id": "2m6Sj3RYwN_UL_kMY-oKG", + "type": "text", + "x": 588.8284847467943, + "y": 828.382200944918, + "width": 200.82078552246094, + "height": 35, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "dashed", + "roughness": 1, + "opacity": 100, + "groupIds": [ + "slXBQXX7H8-YJ8hcrk4Xy" + ], + "frameId": null, + "index": "b0X", + "roundness": null, + "seed": 1648283008, + "version": 527, + "versionNonce": 1167878446, + "isDeleted": false, + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "text": "Virtual Kubelet", + "fontSize": 28, + "fontFamily": 5, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "Virtual Kubelet", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "type": "line", + "version": 1922, + "versionNonce": 1067223218, + "isDeleted": false, + "id": "GOa98MhHSLck8Krzg90bI", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 770.9791789490306, + "y": 556.178375876295, + "strokeColor": "#000000", + "backgroundColor": "#326ce5", + "width": 95.91694595296573, + "height": 93.88317402088744, + "seed": 907524736, + "groupIds": [ + "PnHs9M9rbz1n3q7dgIGv6", + "I2SkvWzFil5Fh18WrPOxB", + "bEwZK8PYaIalE9L-YrS_i", + "ARXHVTHbyN-lkzqibjkc8", + "tHDXT26d4aWVipUbiN67Z" + ], + "strokeSharpness": "sharp", + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -39.59125003164969, + 18.937807635114627 + ], + [ + -47.754394368072326, + 59.432481408072505 + ], + [ + -20.407860841056557, + 93.88317402088744 + ], + [ + 25.509826051320665, + 93.68170798221598 + ], + [ + 48.162551584893414, + 56.813422905343806 + ], + [ + 39.18309281482855, + 16.92314724840031 + ], + [ + 0, + 0 + ] + ], + "index": "b0Y", + "frameId": null, + "roundness": null + }, + { + "type": "text", + "version": 1198, + "versionNonce": 1603825134, + "isDeleted": false, + "id": "FCkDjPJwl37UVEdk4okID", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 754.3367982929252, + "y": 625.352554795582, + "strokeColor": "#fff", + "backgroundColor": "transparent", + "width": 35.99360924158806, + "height": 23.221683381669717, + "seed": 1077701248, + "groupIds": [ + "I2SkvWzFil5Fh18WrPOxB", + "bEwZK8PYaIalE9L-YrS_i", + "ARXHVTHbyN-lkzqibjkc8", + "tHDXT26d4aWVipUbiN67Z" + ], + "strokeSharpness": "sharp", + "boundElements": [ + { + "id": "A_9iIoiRCoU8WmgZLG2TT", + "type": "arrow" + }, + { + "id": "7_6_hi2ys8I5QdxnD-b9d", + "type": "arrow" + }, + { + "id": "1tv2TCpeJuPq7-EUCF77k", + "type": "arrow" + } + ], + "updated": 1738919329040, + "link": null, + "locked": false, + "fontSize": 18.577346705335774, + "fontFamily": 1, + "text": "Pod", + "baseline": 14, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "Pod", + "index": "b0Z", + "frameId": null, + "roundness": null, + "autoResize": true, + "lineHeight": 1.25 + }, + { + "type": "arrow", + "version": 3084, + "versionNonce": 1610882286, + "isDeleted": false, + "id": "7_6_hi2ys8I5QdxnD-b9d", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 770.5960677655041, + "y": 589.7365061310123, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 0.9316120817337605, + "height": 21.61604866456969, + "seed": 38476416, + "groupIds": [ + "cfBuDBseWpaVEEPKmnXfu", + "XZEASvIoSkI1SeUaIkKfK", + "ARXHVTHbyN-lkzqibjkc8", + "tHDXT26d4aWVipUbiN67Z" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329045, + "link": null, + "locked": false, + "startBinding": { + "elementId": "HORfkDk99tXucXUr6IBH6", + "focus": 0.06357849557366692, + "gap": 1.1610841690837566, + "fixedPoint": null + }, + "endBinding": { + "elementId": "FCkDjPJwl37UVEdk4okID", + "focus": -0.20397278528524673, + "gap": 14, + "fixedPoint": null + }, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -0.9316120817337605, + 21.61604866456969 + ] + ], + "index": "b0a", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "arrow", + "version": 1985, + "versionNonce": 943892274, + "isDeleted": false, + "id": "1tv2TCpeJuPq7-EUCF77k", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 751.8187794583947, + "y": 618.6512754281999, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 37.51535791241034, + "height": 13.153923300156952, + "seed": 1862519424, + "groupIds": [ + "cfBuDBseWpaVEEPKmnXfu", + "XZEASvIoSkI1SeUaIkKfK", + "ARXHVTHbyN-lkzqibjkc8", + "tHDXT26d4aWVipUbiN67Z" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329045, + "link": null, + "locked": false, + "startBinding": { + "elementId": "FCkDjPJwl37UVEdk4okID", + "focus": -1.423199494785459, + "gap": 6.701279367382085, + "fixedPoint": null + }, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 37.51535791241034, + -13.153923300156952 + ] + ], + "index": "b0b", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "arrow", + "version": 2051, + "versionNonce": 663417074, + "isDeleted": false, + "id": "4byfUQ-ubaNJN9DdhX_DH", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 789.3839976540418, + "y": 583.040913049592, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 0.46506629105577235, + "height": 23.461362085416425, + "seed": 556169856, + "groupIds": [ + "cfBuDBseWpaVEEPKmnXfu", + "XZEASvIoSkI1SeUaIkKfK", + "ARXHVTHbyN-lkzqibjkc8", + "tHDXT26d4aWVipUbiN67Z" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329045, + "link": null, + "locked": false, + "startBinding": { + "elementId": "HORfkDk99tXucXUr6IBH6", + "focus": -0.9764089313008687, + "gap": 1.6378775642065824, + "fixedPoint": null + }, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 0.46506629105577235, + 23.461362085416425 + ] + ], + "index": "b0c", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "arrow", + "version": 1833, + "versionNonce": 1900291442, + "isDeleted": false, + "id": "A_9iIoiRCoU8WmgZLG2TT", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 770.0098899022197, + "y": 613.905828830622, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 18.853331338973167, + "height": 11.663940739968542, + "seed": 1534274176, + "groupIds": [ + "cfBuDBseWpaVEEPKmnXfu", + "XZEASvIoSkI1SeUaIkKfK", + "ARXHVTHbyN-lkzqibjkc8", + "tHDXT26d4aWVipUbiN67Z" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329045, + "link": null, + "locked": false, + "startBinding": { + "elementId": "FCkDjPJwl37UVEdk4okID", + "focus": 0.9505420481460367, + "gap": 11.446725964960024, + "fixedPoint": null + }, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -18.853331338973167, + -11.663940739968542 + ] + ], + "index": "b0d", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "arrow", + "version": 1895, + "versionNonce": 529420078, + "isDeleted": false, + "id": "Z8s9PCPew98bDBtNEN5M-", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 755.3670853243651, + "y": 604.1270833964942, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 1.40380467403088, + "height": 20.887541171657062, + "seed": 145349248, + "groupIds": [ + "cfBuDBseWpaVEEPKmnXfu", + "XZEASvIoSkI1SeUaIkKfK", + "ARXHVTHbyN-lkzqibjkc8", + "tHDXT26d4aWVipUbiN67Z" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329045, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": { + "elementId": "HORfkDk99tXucXUr6IBH6", + "focus": 0.8589310764377985, + "gap": 1.0000000000000115, + "fixedPoint": null + }, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 1.40380467403088, + -20.887541171657062 + ] + ], + "index": "b0e", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "diamond", + "version": 1173, + "versionNonce": 2097957486, + "isDeleted": false, + "id": "HORfkDk99tXucXUr6IBH6", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 754.4243784503891, + "y": 572.9905591848952, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 35.337320777988985, + "height": 16.153605471047978, + "seed": 998935168, + "groupIds": [ + "cfBuDBseWpaVEEPKmnXfu", + "XZEASvIoSkI1SeUaIkKfK", + "ARXHVTHbyN-lkzqibjkc8", + "tHDXT26d4aWVipUbiN67Z" + ], + "strokeSharpness": "sharp", + "boundElements": [ + { + "id": "7_6_hi2ys8I5QdxnD-b9d", + "type": "arrow" + }, + { + "id": "4byfUQ-ubaNJN9DdhX_DH", + "type": "arrow" + }, + { + "id": "Z8s9PCPew98bDBtNEN5M-", + "type": "arrow" + } + ], + "updated": 1738919329040, + "link": null, + "locked": false, + "index": "b0f", + "frameId": null, + "roundness": null + }, + { + "type": "line", + "version": 840, + "versionNonce": 1923194802, + "isDeleted": false, + "id": "kOKE7km6SbmY4hRSk29sk", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 781.269904968479, + "y": 588.8088328055138, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 8.182148235188777, + "height": 14.941314168605555, + "seed": 785726080, + "groupIds": [ + "XZEASvIoSkI1SeUaIkKfK", + "ARXHVTHbyN-lkzqibjkc8", + "tHDXT26d4aWVipUbiN67Z" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -8.182148235188777, + 14.941314168605555 + ] + ], + "index": "b0g", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "line", + "version": 843, + "versionNonce": 965667950, + "isDeleted": false, + "id": "ZDMoKTanPRI67o814OsR2", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 759.5694248664572, + "y": 584.8956314756407, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 8.893639386074742, + "height": 13.874077442276572, + "seed": 1162472064, + "groupIds": [ + "XZEASvIoSkI1SeUaIkKfK", + "ARXHVTHbyN-lkzqibjkc8", + "tHDXT26d4aWVipUbiN67Z" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 8.893639386074742, + 13.874077442276572 + ] + ], + "index": "b0h", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "line", + "version": 874, + "versionNonce": 477550962, + "isDeleted": false, + "id": "v9VeSHa2_pV5tEUPmgH4L", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 787.1397069632886, + "y": 592.3662885599439, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 8.182148235188777, + "height": 14.941314168605555, + "seed": 162044544, + "groupIds": [ + "XZEASvIoSkI1SeUaIkKfK", + "ARXHVTHbyN-lkzqibjkc8", + "tHDXT26d4aWVipUbiN67Z" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -8.182148235188777, + 14.941314168605555 + ] + ], + "index": "b0i", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "line", + "version": 882, + "versionNonce": 773009070, + "isDeleted": false, + "id": "32Kh9XYoRvHtqfxD6bSpy", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 757.6128242015205, + "y": 593.6113980739941, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 8.893639386074742, + "height": 13.874077442276572, + "seed": 783370880, + "groupIds": [ + "XZEASvIoSkI1SeUaIkKfK", + "ARXHVTHbyN-lkzqibjkc8", + "tHDXT26d4aWVipUbiN67Z" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 8.893639386074742, + 13.874077442276572 + ] + ], + "index": "b0j", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "id": "od-jblVhF0PGotpkoscP6", + "type": "text", + "x": 711.7030558362494, + "y": 658.3466117568156, + "width": 118.96040344238281, + "height": 35, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "dashed", + "roughness": 1, + "opacity": 100, + "groupIds": [ + "tHDXT26d4aWVipUbiN67Z" + ], + "frameId": null, + "index": "b0k", + "roundness": null, + "seed": 254016128, + "version": 599, + "versionNonce": 1392433970, + "isDeleted": false, + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "text": "CoreDNS", + "fontSize": 28, + "fontFamily": 5, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "CoreDNS", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "qJqsVwTGUlht5ywVSLVPl", + "type": "text", + "x": 1667.0524712971746, + "y": 56.255756710797755, + "width": 61.61216735839844, + "height": 35, + "angle": 0, + "strokeColor": "transparent", + "backgroundColor": "#a5d8ff", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "dashed", + "roughness": 1, + "opacity": 40, + "groupIds": [], + "frameId": null, + "index": "b0t", + "roundness": null, + "seed": 1592822400, + "version": 39, + "versionNonce": 2080384878, + "isDeleted": false, + "boundElements": [], + "updated": 1738921737580, + "link": null, + "locked": false, + "text": "ssss", + "fontSize": 28, + "fontFamily": 5, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "originalText": "ssss", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "Luydn8IC_eyUVpVZ6NARZ", + "type": "text", + "x": 603.350956930011, + "y": 896.6336874220343, + "width": 156.99986267089844, + "height": 25, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b0u", + "roundness": null, + "seed": 113106304, + "version": 557, + "versionNonce": 77636850, + "isDeleted": false, + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "text": "K3k components", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "K3k components", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "type": "line", + "version": 1798, + "versionNonce": 249420590, + "isDeleted": false, + "id": "d5dNTKF5EQdaoMPUDwzOh", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 1311.775930477088, + "y": 776.1712413038391, + "strokeColor": "#000000", + "backgroundColor": "#326ce5", + "width": 82.60981288607078, + "height": 80.85819832940717, + "seed": 688934272, + "groupIds": [ + "9FzQImcFJRwrhJvgmMdeI", + "SIHo5FyEEv5IaCMBdeRSL", + "kTVRIYgNDXUBNVNbEiwHM", + "YZiZX0h3rP31Fwb7cN425" + ], + "strokeSharpness": "sharp", + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -34.09851851042071, + 16.31045202352848 + ], + [ + -41.12914088370334, + 51.18705688235002 + ], + [ + -17.576555933206564, + 80.85819832940717 + ], + [ + 21.97069491650818, + 80.68468288234834 + ], + [ + 41.48067200236744, + 48.93135607058538 + ], + [ + 33.74698739175657, + 14.575297552940347 + ], + [ + 0, + 0 + ] + ], + "index": "b0v", + "frameId": null, + "roundness": null + }, + { + "type": "text", + "version": 1068, + "versionNonce": 1939015406, + "isDeleted": false, + "id": "swHaD7JOQP6h-vBlIIl_k", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 1297.4424470835097, + "y": 835.7484715867138, + "strokeColor": "#fff", + "backgroundColor": "transparent", + "width": 31, + "height": 20, + "seed": 212508032, + "groupIds": [ + "SIHo5FyEEv5IaCMBdeRSL", + "kTVRIYgNDXUBNVNbEiwHM", + "YZiZX0h3rP31Fwb7cN425" + ], + "strokeSharpness": "sharp", + "boundElements": [ + { + "id": "KvxWKeiR__8HxNqQJ7l4Q", + "type": "arrow" + }, + { + "id": "1H6g0Q9BbGqVJtvqdNr1k", + "type": "arrow" + }, + { + "id": "U69lETgPIEty62YQQivfp", + "type": "arrow" + } + ], + "updated": 1738919329040, + "link": null, + "locked": false, + "fontSize": 16, + "fontFamily": 1, + "text": "Pod", + "baseline": 14, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "Pod", + "index": "b0w", + "frameId": null, + "roundness": null, + "autoResize": true, + "lineHeight": 1.25 + }, + { + "type": "arrow", + "version": 2573, + "versionNonce": 728423342, + "isDeleted": false, + "id": "U69lETgPIEty62YQQivfp", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 1311.4985710818632, + "y": 805.0976959624079, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 0.5635072862773995, + "height": 15.6802046362493, + "seed": 679144832, + "groupIds": [ + "HN0kGKY7kBdau1SC3y3ct", + "zI6MNUE7PIQPujH5R_96A", + "YZiZX0h3rP31Fwb7cN425" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329045, + "link": null, + "locked": false, + "startBinding": { + "elementId": "q6OjAVj6UylAZoNq_0w7V", + "focus": 0.06357849557368235, + "gap": 1.0000000000001572, + "fixedPoint": null + }, + "endBinding": { + "focus": -0.17817963642461448, + "gap": 14.970570988056524, + "elementId": "swHaD7JOQP6h-vBlIIl_k" + }, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -0.5635072862773995, + 15.6802046362493 + ] + ], + "index": "b0x", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "arrow", + "version": 1665, + "versionNonce": 581173938, + "isDeleted": false, + "id": "KvxWKeiR__8HxNqQJ7l4Q", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 1314.3753592706425, + "y": 824.8831432441485, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 13.209036182988534, + "height": 6.235242999486586, + "seed": 96550272, + "groupIds": [ + "HN0kGKY7kBdau1SC3y3ct", + "zI6MNUE7PIQPujH5R_96A", + "YZiZX0h3rP31Fwb7cN425" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329045, + "link": null, + "locked": false, + "startBinding": { + "elementId": "swHaD7JOQP6h-vBlIIl_k", + "focus": -1.1658662773845616, + "gap": 10.865328342565249, + "fixedPoint": null + }, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 13.209036182988534, + -6.235242999486586 + ] + ], + "index": "b0y", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "arrow", + "version": 1742, + "versionNonce": 973372978, + "isDeleted": false, + "id": "c_-iIRIxUSl_iBC9K7ZPs", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 1327.6273383207927, + "y": 799.3069776169966, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 0.4005448557814406, + "height": 20.20642663997038, + "seed": 96308608, + "groupIds": [ + "HN0kGKY7kBdau1SC3y3ct", + "zI6MNUE7PIQPujH5R_96A", + "YZiZX0h3rP31Fwb7cN425" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329045, + "link": null, + "locked": false, + "startBinding": { + "elementId": "q6OjAVj6UylAZoNq_0w7V", + "focus": -0.976408931300852, + "gap": 1.4106449883812182, + "fixedPoint": null + }, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 0.4005448557814406, + 20.20642663997038 + ] + ], + "index": "b0z", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "arrow", + "version": 1524, + "versionNonce": 1268267374, + "isDeleted": false, + "id": "1H6g0Q9BbGqVJtvqdNr1k", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 1310.9411167119706, + "y": 825.889818553837, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 16.237695630503037, + "height": 10.045732299645078, + "seed": 1638915456, + "groupIds": [ + "HN0kGKY7kBdau1SC3y3ct", + "zI6MNUE7PIQPujH5R_96A", + "YZiZX0h3rP31Fwb7cN425" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329045, + "link": null, + "locked": false, + "startBinding": { + "elementId": "swHaD7JOQP6h-vBlIIl_k", + "focus": 0.95054204814603, + "gap": 9.85865303287676, + "fixedPoint": null + }, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -16.237695630503037, + -10.045732299645078 + ] + ], + "index": "b10", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "arrow", + "version": 1586, + "versionNonce": 892286446, + "isDeleted": false, + "id": "lyUAkOpVhTAhmp3k-1LhA", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 1298.329796217081, + "y": 817.4677371108984, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 1.199099860023125, + "height": 17.841689914912763, + "seed": 718810496, + "groupIds": [ + "HN0kGKY7kBdau1SC3y3ct", + "zI6MNUE7PIQPujH5R_96A", + "YZiZX0h3rP31Fwb7cN425" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329046, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": { + "elementId": "q6OjAVj6UylAZoNq_0w7V", + "focus": 0.858931076437822, + "gap": 1, + "fixedPoint": null + }, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 1.199099860023125, + -17.841689914912763 + ] + ], + "index": "b11", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "diamond", + "version": 1044, + "versionNonce": 66364270, + "isDeleted": false, + "id": "q6OjAVj6UylAZoNq_0w7V", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 1297.5178767205643, + "y": 790.6509696097304, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 30.434762370313667, + "height": 13.912518920828106, + "seed": 1249279360, + "groupIds": [ + "HN0kGKY7kBdau1SC3y3ct", + "zI6MNUE7PIQPujH5R_96A", + "YZiZX0h3rP31Fwb7cN425" + ], + "strokeSharpness": "sharp", + "boundElements": [ + { + "id": "U69lETgPIEty62YQQivfp", + "type": "arrow" + }, + { + "id": "c_-iIRIxUSl_iBC9K7ZPs", + "type": "arrow" + }, + { + "id": "lyUAkOpVhTAhmp3k-1LhA", + "type": "arrow" + } + ], + "updated": 1738919329040, + "link": null, + "locked": false, + "index": "b12", + "frameId": null, + "roundness": null + }, + { + "type": "line", + "version": 716, + "versionNonce": 655873070, + "isDeleted": false, + "id": "He3v5Yf0TTROVJ0JfFrvf", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 1320.6389623687137, + "y": 804.2746792785175, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 7.0469897472182765, + "height": 12.86841606013769, + "seed": 30068096, + "groupIds": [ + "zI6MNUE7PIQPujH5R_96A", + "YZiZX0h3rP31Fwb7cN425" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -7.0469897472182765, + 12.86841606013769 + ] + ], + "index": "b13", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "line", + "version": 719, + "versionNonce": 1445023154, + "isDeleted": false, + "id": "Mu4ZRgh2tx5vzntaHntxD", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 1301.949119995657, + "y": 800.9043798341958, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 7.6597714643676795, + "height": 11.949243484413557, + "seed": 1779768704, + "groupIds": [ + "zI6MNUE7PIQPujH5R_96A", + "YZiZX0h3rP31Fwb7cN425" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 7.6597714643676795, + 11.949243484413557 + ] + ], + "index": "b14", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "line", + "version": 750, + "versionNonce": 296296046, + "isDeleted": false, + "id": "askepW7rr2Tvf5jnrMuia", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 1325.6944115351962, + "y": 807.3385878642647, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 7.0469897472182765, + "height": 12.86841606013769, + "seed": 1955949952, + "groupIds": [ + "zI6MNUE7PIQPujH5R_96A", + "YZiZX0h3rP31Fwb7cN425" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -7.0469897472182765, + 12.86841606013769 + ] + ], + "index": "b15", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "line", + "version": 758, + "versionNonce": 265340786, + "isDeleted": false, + "id": "rRC1FosO4yneFDkDSUXxb", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 1300.263970273496, + "y": 808.4109558692761, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 7.6597714643676795, + "height": 11.949243484413557, + "seed": 1787542912, + "groupIds": [ + "zI6MNUE7PIQPujH5R_96A", + "YZiZX0h3rP31Fwb7cN425" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 7.6597714643676795, + 11.949243484413557 + ] + ], + "index": "b16", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "line", + "version": 1854, + "versionNonce": 672604334, + "isDeleted": false, + "id": "e_TURQ0-nxA6BjbpO2DiA", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 1302.9045084324907, + "y": 550.570349768956, + "strokeColor": "#000000", + "backgroundColor": "#326ce5", + "width": 82.60981288607078, + "height": 80.85819832940717, + "seed": 1601309312, + "groupIds": [ + "SuJGTd2GOD_nzD5Fv_mLl", + "-8i0GTZc-bcFBXHR7nlYU", + "mA86f5VpDdvxDPwT096SQ", + "4zVPD4JsH9f-eLVTZ1tDV" + ], + "strokeSharpness": "sharp", + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -34.09851851042071, + 16.31045202352848 + ], + [ + -41.12914088370334, + 51.18705688235002 + ], + [ + -17.576555933206564, + 80.85819832940717 + ], + [ + 21.97069491650818, + 80.68468288234834 + ], + [ + 41.48067200236744, + 48.93135607058538 + ], + [ + 33.74698739175657, + 14.575297552940347 + ], + [ + 0, + 0 + ] + ], + "index": "b1K", + "frameId": null, + "roundness": null + }, + { + "type": "text", + "version": 1124, + "versionNonce": 1559830510, + "isDeleted": false, + "id": "b8_pTGVAM-OSvlSnQJUpa", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 1288.571025038912, + "y": 610.1475800518306, + "strokeColor": "#fff", + "backgroundColor": "transparent", + "width": 31, + "height": 20, + "seed": 1775024768, + "groupIds": [ + "-8i0GTZc-bcFBXHR7nlYU", + "mA86f5VpDdvxDPwT096SQ", + "4zVPD4JsH9f-eLVTZ1tDV" + ], + "strokeSharpness": "sharp", + "boundElements": [ + { + "id": "g35BvKY6r9FEeVh6UE6zR", + "type": "arrow" + }, + { + "id": "p-KWVivArPkOjb-vbZ98a", + "type": "arrow" + }, + { + "id": "xtVEVWz89_U1Xksj6XsR6", + "type": "arrow" + } + ], + "updated": 1738919329040, + "link": null, + "locked": false, + "fontSize": 16, + "fontFamily": 1, + "text": "Pod", + "baseline": 14, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "Pod", + "index": "b1L", + "frameId": null, + "roundness": null, + "autoResize": true, + "lineHeight": 1.25 + }, + { + "type": "arrow", + "version": 2776, + "versionNonce": 1636897390, + "isDeleted": false, + "id": "xtVEVWz89_U1Xksj6XsR6", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 1302.627149037266, + "y": 579.4968044275248, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 0.5635072862773995, + "height": 15.680204636249186, + "seed": 894528128, + "groupIds": [ + "TuEDP67etXtMt88E0bjwb", + "jGQPjcBEVYoNAL9msjrUC", + "4zVPD4JsH9f-eLVTZ1tDV" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329046, + "link": null, + "locked": false, + "startBinding": { + "elementId": "jL9XpwHIHXx4kkot5bkxz", + "focus": 0.06357849557365149, + "gap": 1.000000000000278, + "fixedPoint": null + }, + "endBinding": { + "focus": -0.17817963642461448, + "gap": 14.970570988056524, + "elementId": "b8_pTGVAM-OSvlSnQJUpa" + }, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -0.5635072862773995, + 15.680204636249186 + ] + ], + "index": "b1M", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "arrow", + "version": 1798, + "versionNonce": 1626990578, + "isDeleted": false, + "id": "g35BvKY6r9FEeVh6UE6zR", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 1305.5039372260449, + "y": 599.2822517092654, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 13.209036182988534, + "height": 6.235242999486586, + "seed": 213916288, + "groupIds": [ + "TuEDP67etXtMt88E0bjwb", + "jGQPjcBEVYoNAL9msjrUC", + "4zVPD4JsH9f-eLVTZ1tDV" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329046, + "link": null, + "locked": false, + "startBinding": { + "elementId": "b8_pTGVAM-OSvlSnQJUpa", + "focus": -1.165866277384555, + "gap": 10.865328342565135, + "fixedPoint": null + }, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 13.209036182988534, + -6.235242999486586 + ] + ], + "index": "b1N", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "arrow", + "version": 1875, + "versionNonce": 160568178, + "isDeleted": false, + "id": "SWUPlpirpspc4BzegMM6G", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 1318.755916276195, + "y": 573.7060860821134, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 0.4005448557814406, + "height": 20.20642663997038, + "seed": 1658374784, + "groupIds": [ + "TuEDP67etXtMt88E0bjwb", + "jGQPjcBEVYoNAL9msjrUC", + "4zVPD4JsH9f-eLVTZ1tDV" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329046, + "link": null, + "locked": false, + "startBinding": { + "elementId": "jL9XpwHIHXx4kkot5bkxz", + "focus": -0.9764089313008518, + "gap": 1.4106449883814243, + "fixedPoint": null + }, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 0.4005448557814406, + 20.20642663997038 + ] + ], + "index": "b1O", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "arrow", + "version": 1657, + "versionNonce": 837699630, + "isDeleted": false, + "id": "p-KWVivArPkOjb-vbZ98a", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 1302.069694667373, + "y": 600.2889270189539, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 16.237695630503037, + "height": 10.045732299645078, + "seed": 1381726848, + "groupIds": [ + "TuEDP67etXtMt88E0bjwb", + "jGQPjcBEVYoNAL9msjrUC", + "4zVPD4JsH9f-eLVTZ1tDV" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329046, + "link": null, + "locked": false, + "startBinding": { + "elementId": "b8_pTGVAM-OSvlSnQJUpa", + "focus": 0.9505420481460244, + "gap": 9.858653032876646, + "fixedPoint": null + }, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -16.237695630503037, + -10.045732299645078 + ] + ], + "index": "b1P", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "arrow", + "version": 1719, + "versionNonce": 518034606, + "isDeleted": false, + "id": "1yzaWWAYh9ZXzJ5zXEzP9", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 1289.4583741724837, + "y": 591.8668455760153, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 1.199099860023125, + "height": 17.841689914912877, + "seed": 503851648, + "groupIds": [ + "TuEDP67etXtMt88E0bjwb", + "jGQPjcBEVYoNAL9msjrUC", + "4zVPD4JsH9f-eLVTZ1tDV" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329046, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": { + "elementId": "jL9XpwHIHXx4kkot5bkxz", + "focus": 0.8589310764377905, + "gap": 1, + "fixedPoint": null + }, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 1.199099860023125, + -17.841689914912877 + ] + ], + "index": "b1Q", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "diamond", + "version": 1100, + "versionNonce": 459832430, + "isDeleted": false, + "id": "jL9XpwHIHXx4kkot5bkxz", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 1288.6464546759667, + "y": 565.0500780748471, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 30.434762370313667, + "height": 13.912518920828106, + "seed": 815716992, + "groupIds": [ + "TuEDP67etXtMt88E0bjwb", + "jGQPjcBEVYoNAL9msjrUC", + "4zVPD4JsH9f-eLVTZ1tDV" + ], + "strokeSharpness": "sharp", + "boundElements": [ + { + "id": "xtVEVWz89_U1Xksj6XsR6", + "type": "arrow" + }, + { + "id": "SWUPlpirpspc4BzegMM6G", + "type": "arrow" + }, + { + "id": "1yzaWWAYh9ZXzJ5zXEzP9", + "type": "arrow" + } + ], + "updated": 1738919329040, + "link": null, + "locked": false, + "index": "b1R", + "frameId": null, + "roundness": null + }, + { + "type": "line", + "version": 772, + "versionNonce": 616716718, + "isDeleted": false, + "id": "NK1ZPdBmwOZ9Lq135Ju8y", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 1311.767540324116, + "y": 578.6737877436344, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 7.0469897472182765, + "height": 12.86841606013769, + "seed": 484412032, + "groupIds": [ + "jGQPjcBEVYoNAL9msjrUC", + "4zVPD4JsH9f-eLVTZ1tDV" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -7.0469897472182765, + 12.86841606013769 + ] + ], + "index": "b1S", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "line", + "version": 775, + "versionNonce": 1114366002, + "isDeleted": false, + "id": "RMDHXxyyNjeZHGxtN9c-W", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 1293.0776979510592, + "y": 575.3034882993124, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 7.6597714643676795, + "height": 11.949243484413557, + "seed": 495598208, + "groupIds": [ + "jGQPjcBEVYoNAL9msjrUC", + "4zVPD4JsH9f-eLVTZ1tDV" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 7.6597714643676795, + 11.949243484413557 + ] + ], + "index": "b1T", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "line", + "version": 806, + "versionNonce": 1390867438, + "isDeleted": false, + "id": "pSuWq58ekjitbKX2BAKiK", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 1316.822989490599, + "y": 581.7376963293814, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 7.0469897472182765, + "height": 12.86841606013769, + "seed": 358541952, + "groupIds": [ + "jGQPjcBEVYoNAL9msjrUC", + "4zVPD4JsH9f-eLVTZ1tDV" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -7.0469897472182765, + 12.86841606013769 + ] + ], + "index": "b1U", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "line", + "version": 814, + "versionNonce": 1780812274, + "isDeleted": false, + "id": "ihb4Sm2HtA46fTdXcn5EV", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 1291.3925482288982, + "y": 582.8100643343928, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 7.6597714643676795, + "height": 11.949243484413557, + "seed": 253598336, + "groupIds": [ + "jGQPjcBEVYoNAL9msjrUC", + "4zVPD4JsH9f-eLVTZ1tDV" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 7.6597714643676795, + 11.949243484413557 + ] + ], + "index": "b1V", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "line", + "version": 2401, + "versionNonce": 2113816110, + "isDeleted": false, + "id": "I6_VBFCb-mk4OBkz40Lal", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 1447.8044018275687, + "y": 717.2578607855476, + "strokeColor": "#000000", + "backgroundColor": "#326ce5", + "width": 82.60981288607078, + "height": 80.85819832940717, + "seed": 1717108096, + "groupIds": [ + "LKayq5OOtg5deFdndGC1g", + "a5NGitwtPgeqB_J7C82h2", + "BtRw-EGdQq0KapZX4V07H", + "7gAYv3oK3NrFeO3On4aNw", + "0mwfZjVlGOuXKMas6xKrQ", + "KBJIbAfkUZojwJrpsH6xv" + ], + "strokeSharpness": "sharp", + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -34.09851851042071, + 16.31045202352848 + ], + [ + -41.12914088370334, + 51.18705688235002 + ], + [ + -17.576555933206564, + 80.85819832940717 + ], + [ + 21.97069491650818, + 80.68468288234834 + ], + [ + 41.48067200236744, + 48.93135607058538 + ], + [ + 33.74698739175657, + 14.575297552940347 + ], + [ + 0, + 0 + ] + ], + "index": "b1W", + "frameId": null, + "roundness": null + }, + { + "type": "text", + "version": 1676, + "versionNonce": 479394738, + "isDeleted": false, + "id": "Ihes0fO5WkUac6-hUGTVZ", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 1434.6676749348044, + "y": 776.6412761544407, + "strokeColor": "#fff", + "backgroundColor": "transparent", + "width": 31, + "height": 20, + "seed": 2103266688, + "groupIds": [ + "a5NGitwtPgeqB_J7C82h2", + "BtRw-EGdQq0KapZX4V07H", + "7gAYv3oK3NrFeO3On4aNw", + "0mwfZjVlGOuXKMas6xKrQ", + "KBJIbAfkUZojwJrpsH6xv" + ], + "strokeSharpness": "sharp", + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "fontSize": 16, + "fontFamily": 1, + "text": "PVC", + "baseline": 14, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "PVC", + "index": "b1X", + "frameId": null, + "roundness": null, + "autoResize": true, + "lineHeight": 1.25 + }, + { + "type": "line", + "version": 1905, + "versionNonce": 1727090798, + "isDeleted": false, + "id": "2MukC2yut_VNkv0ofl66-", + "fillStyle": "hachure", + "strokeWidth": 1, + "strokeStyle": "dashed", + "roughness": 0, + "opacity": 100, + "angle": 6.247353822903583, + "x": 1424.7597748329567, + "y": 746.336473039732, + "strokeColor": "#fff", + "backgroundColor": "transparent", + "width": 47.66610072953717, + "height": 23.333636826274624, + "seed": 1331142016, + "groupIds": [ + "8OwcBseaB78gwqk49BJ77", + "KBJIbAfkUZojwJrpsH6xv" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -5.002910168624836e-13, + 13.493948071006393 + ], + [ + 13.135367779511398, + 17.133714739595867 + ], + [ + 31.029721508204602, + 17.49841603881237 + ], + [ + 44.738363614954324, + 14.952753267871929 + ], + [ + 47.66610072953667, + 2.5529090945147126 + ], + [ + 45.11047245698392, + -2.119535953870144 + ], + [ + 31.72856276095118, + -5.766548946034074 + ], + [ + 16.451132110193736, + -5.835220787462256 + ], + [ + 2.952767301829226, + -3.832986803559301 + ], + [ + 0.03207061641023756, + -0.1672376958776418 + ] + ], + "index": "b1Y", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "line", + "version": 1512, + "versionNonce": 937211250, + "isDeleted": false, + "id": "R6m8vFEoa0HlyAGovOXan", + "fillStyle": "hachure", + "strokeWidth": 1, + "strokeStyle": "dashed", + "roughness": 0, + "opacity": 100, + "angle": 6.247353822903583, + "x": 1425.3072615963406, + "y": 744.8667546785982, + "strokeColor": "#fff", + "backgroundColor": "transparent", + "width": 44.65081727334564, + "height": 4.784016136429898, + "seed": 227011968, + "groupIds": [ + "8OwcBseaB78gwqk49BJ77", + "KBJIbAfkUZojwJrpsH6xv" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 12.757376363813364, + 4.670110990324417 + ], + [ + 32.12125120174369, + 4.784016136429898 + ], + [ + 44.65081727334564, + 2.961533798742323 + ] + ], + "index": "b1Z", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "line", + "version": 2264, + "versionNonce": 1233719982, + "isDeleted": false, + "id": "-PF_H-FZSvBZhA9FBF4Hc", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 1583.8328731780518, + "y": 771.9038972442459, + "strokeColor": "#000000", + "backgroundColor": "#326ce5", + "width": 82.60981288607078, + "height": 80.85819832940717, + "seed": 1155156608, + "groupIds": [ + "aPv2FvGKv_jSBRPK_PZlS", + "V27uFnaiH6Fuzq5xib7Vw", + "kGEzcdTSA4me5YFwqR4Tv", + "2iZLUIZ3iB6j0rI7zLmCT", + "zNxYv1Gl_X-qsIsSe-6-T", + "yUmnPhKym6LrjFYx0hlNz", + "3LswK9GIlxmFJzPygOkm9" + ], + "strokeSharpness": "sharp", + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -34.09851851042071, + 16.31045202352848 + ], + [ + -41.12914088370334, + 51.18705688235002 + ], + [ + -17.576555933206564, + 80.85819832940717 + ], + [ + 21.97069491650818, + 80.68468288234834 + ], + [ + 41.48067200236744, + 48.93135607058538 + ], + [ + 33.74698739175657, + 14.575297552940347 + ], + [ + 0, + 0 + ] + ], + "index": "b1a", + "frameId": null, + "roundness": null + }, + { + "type": "text", + "version": 1552, + "versionNonce": 1028208434, + "isDeleted": false, + "id": "NKA6BgAIrONLHZMSajS5w", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 1574.1697659128752, + "y": 831.287312613139, + "strokeColor": "#fff", + "backgroundColor": "transparent", + "width": 21, + "height": 20, + "seed": 2016213632, + "groupIds": [ + "V27uFnaiH6Fuzq5xib7Vw", + "kGEzcdTSA4me5YFwqR4Tv", + "2iZLUIZ3iB6j0rI7zLmCT", + "zNxYv1Gl_X-qsIsSe-6-T", + "yUmnPhKym6LrjFYx0hlNz", + "3LswK9GIlxmFJzPygOkm9" + ], + "strokeSharpness": "sharp", + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "fontSize": 16, + "fontFamily": 1, + "text": "PV", + "baseline": 14, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "PV", + "index": "b1b", + "frameId": null, + "roundness": null, + "autoResize": true, + "lineHeight": 1.25 + }, + { + "type": "line", + "version": 1466, + "versionNonce": 7245038, + "isDeleted": false, + "id": "4Q7YtMJMtOsovbMRogbjD", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "angle": 6.247353822903583, + "x": 1561.4313474596277, + "y": 797.8987984203634, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 47.66610072953717, + "height": 23.333636826274624, + "seed": 229223040, + "groupIds": [ + "0YuSvJjzOAWkZhDE3DvzF", + "3LswK9GIlxmFJzPygOkm9" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -5.002910168624836e-13, + 13.493948071006393 + ], + [ + 13.135367779511398, + 17.133714739595867 + ], + [ + 31.029721508204602, + 17.49841603881237 + ], + [ + 44.738363614954324, + 14.952753267871929 + ], + [ + 47.66610072953667, + 2.5529090945147126 + ], + [ + 45.11047245698392, + -2.119535953870144 + ], + [ + 31.72856276095118, + -5.766548946034074 + ], + [ + 16.451132110193736, + -5.835220787462256 + ], + [ + 2.952767301829226, + -3.832986803559301 + ], + [ + 0.03207061641023756, + -0.1672376958776418 + ] + ], + "index": "b1c", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "line", + "version": 1072, + "versionNonce": 1832878322, + "isDeleted": false, + "id": "2t5bjTimkak4lO1PEKRV0", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "angle": 6.247353822903583, + "x": 1561.978834223011, + "y": 796.4290800592294, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 44.65081727334564, + "height": 4.784016136429898, + "seed": 806378112, + "groupIds": [ + "0YuSvJjzOAWkZhDE3DvzF", + "3LswK9GIlxmFJzPygOkm9" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 12.757376363813364, + 4.670110990324417 + ], + [ + 32.12125120174369, + 4.784016136429898 + ], + [ + 44.65081727334564, + 2.961533798742323 + ] + ], + "index": "b1d", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "line", + "version": 1002, + "versionNonce": 690667310, + "isDeleted": false, + "id": "ftz-P6kZRM2LUpvmdBYPu", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 502.2611941309701, + "y": 480.89472693225554, + "strokeColor": "#000000", + "backgroundColor": "#326ce5", + "width": 74.56969262545775, + "height": 72.98855650463366, + "seed": 620939904, + "groupIds": [ + "9aYXPCQ4RXUUuzutj4hgm" + ], + "strokeSharpness": "sharp", + "boundElementIds": [], + "startBinding": null, + "endBinding": null, + "points": [ + [ + 0, + 0 + ], + [ + -30.779830573061282, + 14.723013543853138 + ], + [ + -37.12618739224919, + 46.20520207911358 + ], + [ + -15.86589204796974, + 72.98855650463366 + ], + [ + 19.832365059962157, + 72.83192870097564 + ], + [ + 37.443505233208555, + 44.16904063155936 + ], + [ + 30.462512732101867, + 13.156735507273018 + ], + [ + 0, + 0 + ] + ], + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "index": "b1e", + "frameId": null, + "roundness": null, + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false + }, + { + "type": "line", + "version": 3423, + "versionNonce": 1665569458, + "isDeleted": false, + "id": "UGZxyockcDob4-6c6kCzu", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0.010125045471368388, + "x": 496.4466749517654, + "y": 499.0027406609278, + "strokeColor": "#000000", + "backgroundColor": "#ffff", + "width": 56.027402022303576, + "height": 55.80321948273368, + "seed": 1061517952, + "groupIds": [ + "9aYXPCQ4RXUUuzutj4hgm" + ], + "strokeSharpness": "round", + "boundElementIds": [], + "startBinding": null, + "endBinding": null, + "points": [ + [ + 0, + 0 + ], + [ + 3.9946843590662695, + -1.285223345136831 + ], + [ + 4.364583816560461, + -3.3388862946180877 + ], + [ + 3.8386141011418626, + -9.181806233252713 + ], + [ + 6.492462353704386, + -9.400819726754438 + ], + [ + 6.372979336315567, + -3.260602159347162 + ], + [ + 7.364557132379737, + -1.361330394290641 + ], + [ + 11.681239496538245, + -0.4708248002297829 + ], + [ + 17.69591744922602, + 1.82147372210106 + ], + [ + 21.960343457482153, + 4.7748292871787585 + ], + [ + 23.594556598968, + 4.413388026396299 + ], + [ + 27.48185649765045, + 1.369672146122987 + ], + [ + 28.709933828826234, + 2.487286570910849 + ], + [ + 24.84197373063479, + 5.6023395421280675 + ], + [ + 24.203760314433225, + 7.262115858089609 + ], + [ + 26.843643081448892, + 12.24620061203717 + ], + [ + 28.458516422443815, + 17.96267949967549 + ], + [ + 28.63740957698519, + 23.57928645999234 + ], + [ + 29.865486908160953, + 24.63031959989924 + ], + [ + 34.8599903849507, + 25.1819931031988 + ], + [ + 34.584398227954594, + 27.193699067816908 + ], + [ + 29.589894751164813, + 26.25204946735735 + ], + [ + 28.03304081164278, + 26.623002340265668 + ], + [ + 25.668750201623222, + 31.283692281934176 + ], + [ + 22.293955015951155, + 35.34039485361095 + ], + [ + 17.51702429468465, + 39.15930712214137 + ], + [ + 18.11655810990433, + 40.781036989599514 + ], + [ + 21.239935889193962, + 45.26100630087681 + ], + [ + 19.156072386293303, + 46.402399755979246 + ], + [ + 16.898150678974055, + 41.45636145053517 + ], + [ + 14.969005580001015, + 40.0724218862234 + ], + [ + 9.437822639587216, + 41.57525660210832 + ], + [ + 1.9001353982365563, + 41.427826614157595 + ], + [ + -2.8477856222934856, + 39.4256322616653 + ], + [ + -4.254756108010628, + 40.486177013698054 + ], + [ + -6.7786000720805735, + 45.1849134038699 + ], + [ + -8.509512216021257, + 44.00071769420113 + ], + [ + -5.536017890536574, + 39.63488772843409 + ], + [ + -5.289435434276864, + 37.9655998003467 + ], + [ + -9.002677128540677, + 35.11687196865337 + ], + [ + -12.411316965071922, + 30.41813557848146 + ], + [ + -13.895646652752923, + 27.17943164962812 + ], + [ + -15.858636402585077, + 26.979687794985175 + ], + [ + -20.867644729743052, + 28.34935994110819 + ], + [ + -21.167411637352878, + 26.190223988539294 + ], + [ + -16.139063509703984, + 25.5529459761071 + ], + [ + -14.72725807386408, + 24.321192205808988 + ], + [ + -14.704694973291298, + 17.660950026127566 + ], + [ + -13.397109573430448, + 12.560612235086246 + ], + [ + -10.985006678863819, + 8.256079325241366 + ], + [ + -12.116385007584832, + 6.591547203216893 + ], + [ + -16.956170080446924, + 4.018656123173355 + ], + [ + -15.728092749271116, + 1.9879269343035022 + ], + [ + -11.400812389419393, + 5.445397942051484 + ], + [ + -9.13322078185465, + 5.649897602757343 + ], + [ + -5.265260683663174, + 2.539600437603044 + ], + [ + 0, + 0 + ] + ], + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "index": "b1f", + "frameId": null, + "roundness": { + "type": 2 + }, + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false + }, + { + "type": "line", + "version": 937, + "versionNonce": 1210493294, + "isDeleted": false, + "id": "JsTr__NZRirbj-6QCe2gh", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 490.0306789760506, + "y": 506.99325544463215, + "strokeColor": "#000000", + "backgroundColor": "#326ce5", + "width": 11.390207206651219, + "height": 11.390207206651217, + "seed": 1571957376, + "groupIds": [ + "9aYXPCQ4RXUUuzutj4hgm" + ], + "strokeSharpness": "round", + "boundElementIds": [], + "startBinding": null, + "endBinding": null, + "points": [ + [ + 0, + 0 + ], + [ + 3.390726422789228, + -3.0708123968413275 + ], + [ + 6.880211867601436, + -5.201580182404683 + ], + [ + 10.9622514445516, + -5.514928386164008 + ], + [ + 11.390207206651219, + 0.15667410187965508 + ], + [ + 10.633054704474981, + 5.8752788204872095 + ], + [ + 5.135469145195345, + 3.2274864987209697 + ], + [ + 0, + 0 + ] + ], + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "index": "b1g", + "frameId": null, + "roundness": { + "type": 2 + }, + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false + }, + { + "type": "line", + "version": 1055, + "versionNonce": 839216242, + "isDeleted": false, + "id": "JjDVVBKen1UDfiow4SW72", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0.9881310661508964, + "x": 502.1144814359175, + "y": 505.63962853740077, + "strokeColor": "#000000", + "backgroundColor": "#326ce5", + "width": 11.544462166275355, + "height": 11.775649866995707, + "seed": 1795742336, + "groupIds": [ + "9aYXPCQ4RXUUuzutj4hgm" + ], + "strokeSharpness": "round", + "boundElementIds": [], + "startBinding": null, + "endBinding": null, + "points": [ + [ + 0, + 0 + ], + [ + 3.3324440488825404, + -3.0180289475169877 + ], + [ + 6.761949574917, + -5.112171482528766 + ], + [ + 10.349869501749856, + -5.699513011099051 + ], + [ + 11.544462166275355, + -0.22341016151754417 + ], + [ + 11.062121554685474, + 6.076136855896657 + ], + [ + 5.047196811899782, + 3.1720100162678397 + ], + [ + 0, + 0 + ] + ], + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "index": "b1h", + "frameId": null, + "roundness": { + "type": 2 + }, + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false + }, + { + "type": "line", + "version": 1061, + "versionNonce": 1823165358, + "isDeleted": false, + "id": "SUxJghmdrQyxxXmkznLSc", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 1.880863085334429, + "x": 510.96637140812527, + "y": 514.3323959330073, + "strokeColor": "#000000", + "backgroundColor": "#326ce5", + "width": 11.348707234163841, + "height": 11.906559103187837, + "seed": 2047445632, + "groupIds": [ + "9aYXPCQ4RXUUuzutj4hgm" + ], + "strokeSharpness": "round", + "boundElementIds": [], + "startBinding": null, + "endBinding": null, + "points": [ + [ + 0, + 0 + ], + [ + 3.378372384736624, + -3.0596239585916343 + ], + [ + 6.774557560174097, + -5.156808363994443 + ], + [ + 10.922310719585418, + -5.4948348644094605 + ], + [ + 11.348707234163841, + 0.1561032631934463 + ], + [ + 10.239894840992186, + 6.411724238778376 + ], + [ + 5.058865261110764, + 3.5897127897257852 + ], + [ + 0, + 0 + ] + ], + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "index": "b1i", + "frameId": null, + "roundness": { + "type": 2 + }, + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false + }, + { + "type": "line", + "version": 1241, + "versionNonce": 2135100978, + "isDeleted": false, + "id": "tI1eKs0-yihefVQXVKk86", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 2.8469082809423476, + "x": 509.17239444175675, + "y": 526.4199944122806, + "strokeColor": "#000000", + "backgroundColor": "#326ce5", + "width": 10.870105021919633, + "height": 12.35619348732643, + "seed": 1165245056, + "groupIds": [ + "9aYXPCQ4RXUUuzutj4hgm" + ], + "strokeSharpness": "round", + "boundElementIds": [], + "startBinding": null, + "endBinding": null, + "points": [ + [ + 0, + 0 + ], + [ + 2.111755761453853, + -2.382863904791711 + ], + [ + 5.866507849809183, + -5.078685821765166 + ], + [ + 9.820493638708378, + -5.6523924497891525 + ], + [ + 10.870105021919633, + 0.2761385625198566 + ], + [ + 10.328110826230393, + 6.703801037537276 + ], + [ + 4.935978475801803, + 3.994582930784675 + ], + [ + 0, + 0 + ] + ], + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "index": "b1j", + "frameId": null, + "roundness": { + "type": 2 + }, + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false + }, + { + "type": "line", + "version": 1372, + "versionNonce": 1424074222, + "isDeleted": false, + "id": "jCSieWZbedOsnz2dtjF8z", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 3.774871714878671, + "x": 498.51978418418634, + "y": 532.6508088333658, + "strokeColor": "#000000", + "backgroundColor": "#326ce5", + "width": 11.127731493008197, + "height": 12.782455527966839, + "seed": 805890688, + "groupIds": [ + "9aYXPCQ4RXUUuzutj4hgm" + ], + "strokeSharpness": "round", + "boundElementIds": [], + "startBinding": null, + "endBinding": null, + "points": [ + [ + 0, + 0 + ], + [ + 2.8128588416808156, + -2.760799288642105 + ], + [ + 6.312009117564948, + -5.354172377141463 + ], + [ + 10.114430299459066, + -6.359903949021169 + ], + [ + 10.808848502630248, + -0.001068103290659764 + ], + [ + 11.127731493008197, + 6.42255157894567 + ], + [ + 5.495331590557679, + 3.446942831500251 + ], + [ + 0, + 0 + ] + ], + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "index": "b1k", + "frameId": null, + "roundness": { + "type": 2 + }, + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false + }, + { + "type": "line", + "version": 1434, + "versionNonce": 535197682, + "isDeleted": false, + "id": "4KLbrMmhZhj2Z4Fdtl8aa", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 4.759646000521123, + "x": 486.81285823927976, + "y": 527.8707024435566, + "strokeColor": "#000000", + "backgroundColor": "#326ce5", + "width": 11.01721035427482, + "height": 10.832849705424145, + "seed": 1149737600, + "groupIds": [ + "9aYXPCQ4RXUUuzutj4hgm" + ], + "strokeSharpness": "round", + "boundElementIds": [], + "startBinding": null, + "endBinding": null, + "points": [ + [ + 0, + 0 + ], + [ + 2.190993081823027, + -3.088186466084833 + ], + [ + 5.647720630662613, + -5.69653199172979 + ], + [ + 8.700616726471578, + -5.898063937208797 + ], + [ + 10.7935737982968, + -0.8342391113819538 + ], + [ + 11.01721035427482, + 4.934785768215347 + ], + [ + 5.058865261110762, + 3.5897127897257852 + ], + [ + 0, + 0 + ] + ], + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "index": "b1l", + "frameId": null, + "roundness": { + "type": 2 + }, + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false + }, + { + "type": "line", + "version": 1562, + "versionNonce": 299022382, + "isDeleted": false, + "id": "E-tqA7z15V1Vuu1MvwBdU", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 5.645190933495279, + "x": 483.61280313434366, + "y": 516.5685646798623, + "strokeColor": "#000000", + "backgroundColor": "#326ce5", + "width": 12.374399655756315, + "height": 11.961544839173278, + "seed": 900745856, + "groupIds": [ + "9aYXPCQ4RXUUuzutj4hgm" + ], + "strokeSharpness": "round", + "boundElementIds": [], + "startBinding": null, + "endBinding": null, + "points": [ + [ + 0, + 0 + ], + [ + 2.190993081823027, + -3.088186466084832 + ], + [ + 5.647720630662615, + -5.696531991729788 + ], + [ + 9.103812625894594, + -6.44187163215937 + ], + [ + 11.063147709877112, + -1.055743471429398 + ], + [ + 12.374399655756315, + 5.519673207013908 + ], + [ + 6.056268342912206, + 3.3811250323293445 + ], + [ + 0, + 0 + ] + ], + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "index": "b1m", + "frameId": null, + "roundness": { + "type": 2 + }, + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false + }, + { + "type": "ellipse", + "version": 381, + "versionNonce": 871803314, + "isDeleted": false, + "id": "32vpzSS7h7F2nIXYmr4PW", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 501.3014940792468, + "y": 516.3664696022839, + "strokeColor": "#000000", + "backgroundColor": "#326ce5", + "width": 4.983280538241474, + "height": 4.983280538241474, + "seed": 1581447808, + "groupIds": [ + "9aYXPCQ4RXUUuzutj4hgm" + ], + "strokeSharpness": "sharp", + "boundElementIds": [], + "index": "b1n", + "frameId": null, + "roundness": null, + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false + }, + { + "type": "line", + "version": 1711, + "versionNonce": 728203886, + "isDeleted": false, + "id": "POuT11BZD_5S44lslbM11", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 990.9261665308427, + "y": 568.7963054441099, + "strokeColor": "#000000", + "backgroundColor": "#326ce5", + "width": 82.60981288607078, + "height": 80.85819832940717, + "seed": 1628085632, + "groupIds": [ + "qHsuUyPedtwT7JRHG4iTW", + "-I5URh3qXEs1DE2GqgHCZ", + "BayJ6lzSJiMd24YEh39rv", + "xTevi4wi8_V9r0RvZOcgq", + "6R1vL2JmCGMvNj3Zqcwrf" + ], + "strokeSharpness": "sharp", + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -34.09851851042071, + 16.31045202352848 + ], + [ + -41.12914088370334, + 51.18705688235002 + ], + [ + -17.576555933206564, + 80.85819832940717 + ], + [ + 21.97069491650818, + 80.68468288234834 + ], + [ + 41.48067200236744, + 48.93135607058538 + ], + [ + 33.74698739175657, + 14.575297552940347 + ], + [ + 0, + 0 + ] + ], + "index": "b2B8", + "frameId": null, + "roundness": null + }, + { + "type": "text", + "version": 981, + "versionNonce": 1242216686, + "isDeleted": false, + "id": "R0-AC_1bOzdk7-Ed7Msay", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 976.5926831372649, + "y": 628.3735357269846, + "strokeColor": "#fff", + "backgroundColor": "transparent", + "width": 31, + "height": 20, + "seed": 1893395840, + "groupIds": [ + "-I5URh3qXEs1DE2GqgHCZ", + "BayJ6lzSJiMd24YEh39rv", + "xTevi4wi8_V9r0RvZOcgq", + "6R1vL2JmCGMvNj3Zqcwrf" + ], + "strokeSharpness": "sharp", + "boundElements": [ + { + "id": "CJMbzws10XjqBSjAcddaq", + "type": "arrow" + }, + { + "id": "pV2Mqha2DX8S-QK2UuQTg", + "type": "arrow" + }, + { + "id": "pd6fGJ8sfYZu0rp6SXPW1", + "type": "arrow" + } + ], + "updated": 1738919329040, + "link": null, + "locked": false, + "fontSize": 16, + "fontFamily": 1, + "text": "Pod", + "baseline": 14, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "Pod", + "index": "b2BG", + "frameId": null, + "roundness": null, + "autoResize": true, + "lineHeight": 1.25 + }, + { + "type": "arrow", + "version": 2337, + "versionNonce": 201965870, + "isDeleted": false, + "id": "pd6fGJ8sfYZu0rp6SXPW1", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 990.648807135618, + "y": 597.7227601026786, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 0.5635072862770585, + "height": 15.680204636249414, + "seed": 1109474688, + "groupIds": [ + "1rzR4HDKc42HuPUUWroLY", + "PZdj34P3d-iH7CD7jv4gH", + "xTevi4wi8_V9r0RvZOcgq", + "6R1vL2JmCGMvNj3Zqcwrf" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329048, + "link": null, + "locked": false, + "startBinding": { + "elementId": "DCGYtED_beykt0LdZqebj", + "focus": 0.06357849557369728, + "gap": 1.0000000000002487, + "fixedPoint": null + }, + "endBinding": { + "focus": -0.17817963642461448, + "gap": 14.970570988056524, + "elementId": "R0-AC_1bOzdk7-Ed7Msay" + }, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -0.5635072862770585, + 15.680204636249414 + ] + ], + "index": "b2BO", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "arrow", + "version": 1504, + "versionNonce": 748868914, + "isDeleted": false, + "id": "CJMbzws10XjqBSjAcddaq", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 993.5255953243973, + "y": 617.5082073844193, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 13.209036182988534, + "height": 6.235242999486586, + "seed": 907906432, + "groupIds": [ + "1rzR4HDKc42HuPUUWroLY", + "PZdj34P3d-iH7CD7jv4gH", + "xTevi4wi8_V9r0RvZOcgq", + "6R1vL2JmCGMvNj3Zqcwrf" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329047, + "link": null, + "locked": false, + "startBinding": { + "elementId": "R0-AC_1bOzdk7-Ed7Msay", + "focus": -1.1658662773845803, + "gap": 10.865328342565363, + "fixedPoint": null + }, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 13.209036182988534, + -6.235242999486586 + ] + ], + "index": "b2BV", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "arrow", + "version": 1581, + "versionNonce": 1666232498, + "isDeleted": false, + "id": "nl4FA_UWao61Qlp8P6ywl", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 1006.7775743745474, + "y": 591.9320417572675, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 0.4005448557814406, + "height": 20.20642663997038, + "seed": 101703040, + "groupIds": [ + "1rzR4HDKc42HuPUUWroLY", + "PZdj34P3d-iH7CD7jv4gH", + "xTevi4wi8_V9r0RvZOcgq", + "6R1vL2JmCGMvNj3Zqcwrf" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329048, + "link": null, + "locked": false, + "startBinding": { + "elementId": "DCGYtED_beykt0LdZqebj", + "focus": -0.976408931300837, + "gap": 1.410644988381204, + "fixedPoint": null + }, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 0.4005448557814406, + 20.20642663997038 + ] + ], + "index": "b2Bd", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "arrow", + "version": 1363, + "versionNonce": 59100910, + "isDeleted": false, + "id": "pV2Mqha2DX8S-QK2UuQTg", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 990.0913527657253, + "y": 618.5148826941078, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 16.237695630503037, + "height": 10.045732299645078, + "seed": 1127755136, + "groupIds": [ + "1rzR4HDKc42HuPUUWroLY", + "PZdj34P3d-iH7CD7jv4gH", + "xTevi4wi8_V9r0RvZOcgq", + "6R1vL2JmCGMvNj3Zqcwrf" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329047, + "link": null, + "locked": false, + "startBinding": { + "elementId": "R0-AC_1bOzdk7-Ed7Msay", + "focus": 0.9505420481460178, + "gap": 9.858653032876873, + "fixedPoint": null + }, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -16.237695630503037, + -10.045732299645078 + ] + ], + "index": "b2Bl", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "arrow", + "version": 1425, + "versionNonce": 1003842414, + "isDeleted": false, + "id": "H_b7gLNHFHiVxr_zlFa1O", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 977.4800322708356, + "y": 610.0928012511691, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 1.199099860023125, + "height": 17.841689914912763, + "seed": 1456897408, + "groupIds": [ + "1rzR4HDKc42HuPUUWroLY", + "PZdj34P3d-iH7CD7jv4gH", + "xTevi4wi8_V9r0RvZOcgq", + "6R1vL2JmCGMvNj3Zqcwrf" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329048, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": { + "elementId": "DCGYtED_beykt0LdZqebj", + "focus": 0.858931076437837, + "gap": 1, + "fixedPoint": null + }, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 1.199099860023125, + -17.841689914912763 + ] + ], + "index": "b2C", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "diamond", + "version": 957, + "versionNonce": 1638389102, + "isDeleted": false, + "id": "DCGYtED_beykt0LdZqebj", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 976.6681127743191, + "y": 583.2760337500011, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 30.434762370313667, + "height": 13.912518920828106, + "seed": 36359552, + "groupIds": [ + "1rzR4HDKc42HuPUUWroLY", + "PZdj34P3d-iH7CD7jv4gH", + "xTevi4wi8_V9r0RvZOcgq", + "6R1vL2JmCGMvNj3Zqcwrf" + ], + "strokeSharpness": "sharp", + "boundElements": [ + { + "id": "pd6fGJ8sfYZu0rp6SXPW1", + "type": "arrow" + }, + { + "id": "nl4FA_UWao61Qlp8P6ywl", + "type": "arrow" + }, + { + "id": "H_b7gLNHFHiVxr_zlFa1O", + "type": "arrow" + } + ], + "updated": 1738919329040, + "link": null, + "locked": false, + "index": "b2C8", + "frameId": null, + "roundness": null + }, + { + "type": "line", + "version": 629, + "versionNonce": 1861475182, + "isDeleted": false, + "id": "vBPZj3b2ER3Nk5Bd2MPwi", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 999.7891984224684, + "y": 596.8997434187883, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 7.0469897472182765, + "height": 12.86841606013769, + "seed": 1584733568, + "groupIds": [ + "PZdj34P3d-iH7CD7jv4gH", + "xTevi4wi8_V9r0RvZOcgq", + "6R1vL2JmCGMvNj3Zqcwrf" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -7.0469897472182765, + 12.86841606013769 + ] + ], + "index": "b2CG", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "line", + "version": 632, + "versionNonce": 257710706, + "isDeleted": false, + "id": "IWiwFOSG2gTEqx4S1gY9n", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 981.0993560494121, + "y": 593.5294439744665, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 7.6597714643676795, + "height": 11.949243484413557, + "seed": 1559588224, + "groupIds": [ + "PZdj34P3d-iH7CD7jv4gH", + "xTevi4wi8_V9r0RvZOcgq", + "6R1vL2JmCGMvNj3Zqcwrf" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 7.6597714643676795, + 11.949243484413557 + ] + ], + "index": "b2CO", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "line", + "version": 663, + "versionNonce": 1728200110, + "isDeleted": false, + "id": "2sQmV2GbxJ_aXQLwo5ep7", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 1004.8446475889509, + "y": 599.9636520045354, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 7.0469897472182765, + "height": 12.86841606013769, + "seed": 1189854592, + "groupIds": [ + "PZdj34P3d-iH7CD7jv4gH", + "xTevi4wi8_V9r0RvZOcgq", + "6R1vL2JmCGMvNj3Zqcwrf" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -7.0469897472182765, + 12.86841606013769 + ] + ], + "index": "b2CV", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "line", + "version": 671, + "versionNonce": 797719602, + "isDeleted": false, + "id": "mQQHiVnHR5rOFiiogcIUA", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 979.4142063272507, + "y": 601.0360200095469, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 7.6597714643676795, + "height": 11.949243484413557, + "seed": 1033375104, + "groupIds": [ + "PZdj34P3d-iH7CD7jv4gH", + "xTevi4wi8_V9r0RvZOcgq", + "6R1vL2JmCGMvNj3Zqcwrf" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 7.6597714643676795, + 11.949243484413557 + ] + ], + "index": "b2Cd", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "id": "ENd9713SgXxH1J8Vl2ac-", + "type": "text", + "x": 956.1878238138077, + "y": 655.319588810264, + "width": 69.82821655273438, + "height": 35, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "dashed", + "roughness": 1, + "opacity": 100, + "groupIds": [ + "AXVlF3UO2LrH8avfKyQnA", + "6R1vL2JmCGMvNj3Zqcwrf" + ], + "frameId": null, + "index": "b2Cl", + "roundness": null, + "seed": 1175137664, + "version": 466, + "versionNonce": 193615854, + "isDeleted": false, + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "text": "nginx", + "fontSize": 28, + "fontFamily": 5, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "nginx", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "type": "line", + "version": 1386, + "versionNonce": 182052338, + "isDeleted": false, + "id": "11Wgo5PAEsQ6wlzdatU4O", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 993.3729171317268, + "y": 759.6708053101685, + "strokeColor": "#000000", + "backgroundColor": "#326ce5", + "width": 82.60981288607078, + "height": 80.85819832940717, + "seed": 1916820864, + "groupIds": [ + "UrSlg6-SVmSvXwp44Nh5h", + "tAISC-DTprPPF3Np5RhKT", + "TekUeTKayYx4eu_uN1YXI", + "HCO2fXpwxm-Jwu8gsWq78" + ], + "strokeSharpness": "sharp", + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -34.09851851042071, + 16.31045202352848 + ], + [ + -41.12914088370334, + 51.18705688235002 + ], + [ + -17.576555933206564, + 80.85819832940717 + ], + [ + 21.97069491650818, + 80.68468288234834 + ], + [ + 41.48067200236744, + 48.93135607058538 + ], + [ + 33.74698739175657, + 14.575297552940347 + ], + [ + 0, + 0 + ] + ], + "index": "b2E", + "frameId": null, + "roundness": null + }, + { + "type": "text", + "version": 592, + "versionNonce": 345319982, + "isDeleted": false, + "id": "vrXgkIJhZNE_1ipcdT_WD", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 984.6847185705379, + "y": 819.6008658950675, + "strokeColor": "#fff", + "backgroundColor": "transparent", + "width": 23, + "height": 20, + "seed": 1431874944, + "groupIds": [ + "tAISC-DTprPPF3Np5RhKT", + "TekUeTKayYx4eu_uN1YXI", + "HCO2fXpwxm-Jwu8gsWq78" + ], + "strokeSharpness": "sharp", + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "fontSize": 16, + "fontFamily": 1, + "text": "RS", + "baseline": 14, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "RS", + "index": "b2F", + "frameId": null, + "roundness": null, + "autoResize": true, + "lineHeight": 1.25 + }, + { + "type": "rectangle", + "version": 940, + "versionNonce": 172775346, + "isDeleted": false, + "id": "DHvQCvtgYmfgMcJQzrHuS", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "dashed", + "roughness": 0, + "opacity": 100, + "angle": 0, + "x": 985.8665804532737, + "y": 777.349063232201, + "strokeColor": "#fff", + "backgroundColor": "transparent", + "width": 30.72840895114018, + "height": 20.68258294788275, + "seed": 1357315456, + "groupIds": [ + "z00ZDjKpUFzRTS5ezoU7a", + "TekUeTKayYx4eu_uN1YXI", + "HCO2fXpwxm-Jwu8gsWq78" + ], + "strokeSharpness": "sharp", + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "index": "b2G", + "frameId": null, + "roundness": null + }, + { + "type": "rectangle", + "version": 828, + "versionNonce": 1359721582, + "isDeleted": false, + "id": "vZEgEBh2-UtBljxiMpbTX", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "dashed", + "roughness": 0, + "opacity": 100, + "angle": 0, + "x": 972.866099743176, + "y": 784.4402345286179, + "strokeColor": "#fff", + "backgroundColor": "transparent", + "width": 30.72840895114018, + "height": 20.68258294788275, + "seed": 1714113920, + "groupIds": [ + "z00ZDjKpUFzRTS5ezoU7a", + "TekUeTKayYx4eu_uN1YXI", + "HCO2fXpwxm-Jwu8gsWq78" + ], + "strokeSharpness": "sharp", + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "index": "b2H", + "frameId": null, + "roundness": null + }, + { + "type": "rectangle", + "version": 795, + "versionNonce": 1577750898, + "isDeleted": false, + "id": "nHf91g7GrBr48o16QN84B", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 964.5930665640229, + "y": 793.0087331784551, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 30.72840895114018, + "height": 20.68258294788275, + "seed": 1852153216, + "groupIds": [ + "z00ZDjKpUFzRTS5ezoU7a", + "TekUeTKayYx4eu_uN1YXI", + "HCO2fXpwxm-Jwu8gsWq78" + ], + "strokeSharpness": "sharp", + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "index": "b2I", + "frameId": null, + "roundness": null + }, + { + "id": "cgaPKNKrq4Sx0JBcPrZo9", + "type": "text", + "x": 953.2645564093207, + "y": 847.5337331098577, + "width": 80.56825256347656, + "height": 35, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "dashed", + "roughness": 1, + "opacity": 100, + "groupIds": [ + "Y-THZJAOmJHf-A4nYBlH3", + "HCO2fXpwxm-Jwu8gsWq78" + ], + "frameId": null, + "index": "b2J", + "roundness": null, + "seed": 373717632, + "version": 566, + "versionNonce": 1253504686, + "isDeleted": false, + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "text": "myapp", + "fontSize": 28, + "fontFamily": 5, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "myapp", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "0Aw-L13ZkGeuf_HEPUgEI", + "type": "text", + "x": 560.7022596523924, + "y": 482.89114791833146, + "width": 143.2998809814453, + "height": 25, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b2K", + "roundness": null, + "seed": 837012864, + "version": 509, + "versionNonce": 425431858, + "isDeleted": false, + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "text": "Virtual Cluster", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "Virtual Cluster", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "cnnlS5lQ0Z72rTpMSrYKH", + "type": "text", + "x": 1152.8376791357002, + "y": 645.533885402603, + "width": 338.67962646484375, + "height": 25, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "dashed", + "roughness": 1, + "opacity": 100, + "groupIds": [ + "lLzNepX0O-dClZl6AyCuC", + "iCuAZfGxrzV8uOIJH15rF" + ], + "frameId": null, + "index": "b2L", + "roundness": null, + "seed": 18000512, + "version": 549, + "versionNonce": 1782575342, + "isDeleted": false, + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "text": "nginx-k3k-my-virtual-cluster-a1s1r2", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "nginx-k3k-my-virtual-cluster-a1s1r2", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "dqB731R1yrAXNBGSWVCxQ", + "type": "text", + "x": 1150.004734507829, + "y": 879.1479992436477, + "width": 357.6596374511719, + "height": 25, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "dashed", + "roughness": 1, + "opacity": 100, + "groupIds": [ + "vvpm7fO2C4gP3uZyvseZp", + "a0LnN2ZxzwMZM4WpR_TDT" + ], + "frameId": null, + "index": "b2M", + "roundness": null, + "seed": 1851116160, + "version": 601, + "versionNonce": 1319525618, + "isDeleted": false, + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "text": "myapp-k3k-my-virtual-cluster-c2m6nd", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "myapp-k3k-my-virtual-cluster-c2m6nd", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "HDocOXT_UZJKEfjrc2x90", + "type": "arrow", + "x": 901.387711644208, + "y": 408.4787895967094, + "width": 169.71152203234647, + "height": 116.96233547770981, + "angle": 0, + "strokeColor": "#000000", + "backgroundColor": "#b2f2bb", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b2N", + "roundness": { + "type": 2 + }, + "seed": 527919744, + "version": 595, + "versionNonce": 2018731054, + "isDeleted": false, + "boundElements": [], + "updated": 1738919329042, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + -65.53566533447429, + 8.548130261018343 + ], + [ + -169.71152203234647, + 116.96233547770981 + ] + ], + "lastCommittedPoint": null, + "startBinding": { + "elementId": "xTu4L6YTvS5ibAOYadtTp", + "focus": -0.37695452763669435, + "gap": 1, + "fixedPoint": null + }, + "endBinding": { + "elementId": "3ayqq52wsniI7ZScvRxFK", + "focus": -0.405808085521648, + "gap": 1, + "fixedPoint": null + }, + "startArrowhead": null, + "endArrowhead": "arrow", + "elbowed": false, + "fixedSegments": null, + "startIsSpecial": null, + "endIsSpecial": null + }, + { + "id": "76LjwS65PV5BTZ64AVLeh", + "type": "line", + "x": 1029.8253836128429, + "y": 617.5411161999864, + "width": 231.23846783787803, + "height": 16.264273748427172, + "angle": 0, + "strokeColor": "#000000", + "backgroundColor": "#b2f2bb", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "dotted", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b2Q", + "roundness": null, + "seed": 249478528, + "version": 81, + "versionNonce": 728886962, + "isDeleted": false, + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 231.23846783787803, + -16.264273748427172 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "bzmte64CyigQP7ABPZdWB", + "type": "line", + "x": 1033.6897246332087, + "y": 807.0111179842182, + "width": 236.96229253363254, + "height": 21.416728442248882, + "angle": 0, + "strokeColor": "#000000", + "backgroundColor": "#b2f2bb", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "dotted", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b2R", + "roundness": null, + "seed": 1741823360, + "version": 206, + "versionNonce": 1877937518, + "isDeleted": false, + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 236.96229253363254, + 21.416728442248882 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "_YEzY7SqIhhByW0UhaKHz", + "type": "line", + "x": 1344.8389953300875, + "y": 794.3273143549475, + "width": 63.578524652942406, + "height": 26.614266133789897, + "angle": 0, + "strokeColor": "#000000", + "backgroundColor": "#b2f2bb", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "dotted", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b2T", + "roundness": null, + "seed": 125848192, + "version": 33, + "versionNonce": 342182002, + "isDeleted": false, + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 63.578524652942406, + -26.614266133789897 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "MjFovMi3OefJSDFCPEfCN", + "type": "line", + "x": 1488.2603183843999, + "y": 766.2344778803914, + "width": 60.621383971410296, + "height": 28.092836474556066, + "angle": 0, + "strokeColor": "#000000", + "backgroundColor": "#b2f2bb", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "dotted", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b2U", + "roundness": null, + "seed": 748497536, + "version": 36, + "versionNonce": 1170681774, + "isDeleted": false, + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 60.621383971410296, + 28.092836474556066 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "oQuaP6oGYl8zpZVaMViGt", + "type": "rectangle", + "x": 2041.3708405186685, + "y": 237.18440188684474, + "width": 1091.9040403428567, + "height": 745.7213534091308, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b2V", + "roundness": { + "type": 3 + }, + "seed": 140281198, + "version": 341, + "versionNonce": 1459469106, + "isDeleted": false, + "boundElements": [], + "updated": 1738921718024, + "link": null, + "locked": false + }, + { + "id": "CCK5D5HMvuk7gH1LiNUWw", + "type": "rectangle", + "x": 2135.673138111432, + "y": 559.0541201459417, + "width": 886.8187769209076, + "height": 382.0892311467011, + "angle": 0, + "strokeColor": "#000000", + "backgroundColor": "#a5d8ff", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "dotted", + "roughness": 1, + "opacity": 20, + "groupIds": [], + "frameId": null, + "index": "b2W", + "roundness": { + "type": 3 + }, + "seed": 1640343470, + "version": 735, + "versionNonce": 1081959406, + "isDeleted": false, + "boundElements": [], + "updated": 1738921703701, + "link": null, + "locked": false + }, + { + "id": "QJMXjOC5kklWA63FwlQh0", + "type": "rectangle", + "x": 2083.9231761846177, + "y": 499.17558026372507, + "width": 953.8699566295237, + "height": 464.33484971763187, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "dashed", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b2X", + "roundness": null, + "seed": 1850769902, + "version": 325, + "versionNonce": 1522041838, + "isDeleted": false, + "boundElements": [], + "updated": 1738921710658, + "link": null, + "locked": false + }, + { + "id": "66UYWeA69MojJiixYPSWG", + "type": "rectangle", + "x": 2148.9007372659676, + "y": 567.1898159389655, + "width": 498.59634048761507, + "height": 361.8899298092803, + "angle": 0, + "strokeColor": "transparent", + "backgroundColor": "#b2f2bb", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "dashed", + "roughness": 1, + "opacity": 50, + "groupIds": [], + "frameId": null, + "index": "b2Y", + "roundness": { + "type": 3 + }, + "seed": 1359352878, + "version": 785, + "versionNonce": 1102547310, + "isDeleted": false, + "boundElements": [ + { + "id": "G25zwUu4YJwZCyf4cuTcq", + "type": "arrow" + } + ], + "updated": 1738921697243, + "link": null, + "locked": false + }, + { + "id": "dKnITcq-wPs09tYKOLrYh", + "type": "text", + "x": 2180.628238684281, + "y": 182.42358366885435, + "width": 221.3440704345703, + "height": 45, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b2Z", + "roundness": null, + "seed": 1674534510, + "version": 170, + "versionNonce": 409039602, + "isDeleted": false, + "boundElements": [], + "updated": 1738919367265, + "link": null, + "locked": false, + "text": "Host Cluster", + "fontSize": 36, + "fontFamily": 5, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "Host Cluster", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "type": "line", + "version": 947, + "versionNonce": 2035958962, + "isDeleted": false, + "id": "c5A052zNTKF7if--9gNAP", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2094.0980173912217, + "y": 168.5896324972914, + "strokeColor": "#000000", + "backgroundColor": "#326ce5", + "width": 141.1345207909862, + "height": 138.14197943992207, + "seed": 1534419118, + "groupIds": [ + "fkYP5W_VlcVCmSoVFVy5D" + ], + "strokeSharpness": "sharp", + "boundElementIds": [], + "startBinding": null, + "endBinding": null, + "points": [ + [ + 0, + 0 + ], + [ + -58.25552560308792, + 27.865549500756803 + ], + [ + -70.26697418104422, + 87.4503947098219 + ], + [ + -30.0286214448907, + 138.14197943992207 + ], + [ + 37.53577680611333, + 137.84553742395653 + ], + [ + 70.86754660994197, + 83.59664850227031 + ], + [ + 57.65495317419008, + 24.901129341101825 + ], + [ + 0, + 0 + ] + ], + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "index": "b2a", + "frameId": null, + "roundness": null, + "boundElements": [], + "updated": 1738919367265, + "link": null, + "locked": false + }, + { + "type": "line", + "version": 3369, + "versionNonce": 1859313266, + "isDeleted": false, + "id": "O4rnGTYavEhVWVogHHjex", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0.010125045471368388, + "x": 2083.09315269225, + "y": 202.86181131542253, + "strokeColor": "#000000", + "backgroundColor": "#ffff", + "width": 106.04040672794991, + "height": 105.61610706708336, + "seed": 1805720302, + "groupIds": [ + "fkYP5W_VlcVCmSoVFVy5D" + ], + "strokeSharpness": "round", + "boundElementIds": [], + "startBinding": null, + "endBinding": null, + "points": [ + [ + 0, + 0 + ], + [ + 7.560549639916194, + -2.432481274079295 + ], + [ + 8.260640800764907, + -6.319351744325669 + ], + [ + 7.265162864319282, + -17.377969213774225 + ], + [ + 12.287975594132497, + -17.79248566628771 + ], + [ + 12.06183575356039, + -6.171187074095729 + ], + [ + 13.938548022945847, + -2.5765254766629058 + ], + [ + 22.108528016458962, + -0.8911077706957935 + ], + [ + 33.492223733543035, + 3.4474169310756086 + ], + [ + 41.56330060047886, + 9.037092947258257 + ], + [ + 44.656298311390664, + 8.353010214198859 + ], + [ + 52.01360647580834, + 2.5923135147513654 + ], + [ + 54.337930199393, + 4.707569334079753 + ], + [ + 47.01722555818147, + 10.603282362420547 + ], + [ + 45.80930929238161, + 13.74466228133801 + ], + [ + 50.80569021000849, + 23.1778031266833 + ], + [ + 53.8620843977143, + 33.99711161533315 + ], + [ + 54.200666987370354, + 44.62739724353235 + ], + [ + 56.52499071095499, + 46.61663782256035 + ], + [ + 65.97785057891947, + 47.66076409933526 + ], + [ + 65.4562503732332, + 51.46822457412627 + ], + [ + 56.00339050526867, + 49.686009032734695 + ], + [ + 53.05680688718108, + 50.38809394297988 + ], + [ + 48.582026175240465, + 59.20916076400885 + ], + [ + 42.19471137578334, + 66.88708933374122 + ], + [ + 33.15364114388698, + 74.11496347382923 + ], + [ + 34.288350363274766, + 77.18433468400364 + ], + [ + 40.19981936105316, + 85.66336013850295 + ], + [ + 36.25578973560041, + 87.82362140079564 + ], + [ + 31.982328401293195, + 78.46248926419358 + ], + [ + 28.331126961488835, + 75.84317248366355 + ], + [ + 17.862519324556295, + 78.6875164790157 + ], + [ + 3.5962961549951795, + 78.40848273263624 + ], + [ + -5.389868792092051, + 74.61902443503092 + ], + [ + -8.052775105332755, + 76.6262671912447 + ], + [ + -12.829534883723326, + 85.51934272101663 + ], + [ + -16.10555021066551, + 83.27807166138794 + ], + [ + -10.477758517734125, + 75.01507233311793 + ], + [ + -10.011063596856882, + 71.85569023701471 + ], + [ + -17.038940052419996, + 66.46403816987552 + ], + [ + -23.49031101748772, + 57.57096264010348 + ], + [ + -26.299631423552707, + 51.4412213083476 + ], + [ + -30.01488902896755, + 51.063175587446345 + ], + [ + -39.49520153933658, + 53.655489102197755 + ], + [ + -40.06255614903045, + 49.568994881027166 + ], + [ + -30.545640115455438, + 48.3628490095804 + ], + [ + -27.873582921413178, + 46.031567064022724 + ], + [ + -27.830878811006112, + 33.42604255016222 + ], + [ + -25.356073936463183, + 23.77287509476861 + ], + [ + -20.790801181040955, + 15.625889797251343 + ], + [ + -22.932107288595358, + 12.475508789740982 + ], + [ + -32.092138970911364, + 7.605919860989265 + ], + [ + -29.767815247326663, + 3.7624550318266357 + ], + [ + -21.577776929971183, + 10.306246438855302 + ], + [ + -17.286013834060906, + 10.693293248349423 + ], + [ + -9.965309192849324, + 4.806581308601501 + ], + [ + 0, + 0 + ] + ], + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "index": "b2b", + "frameId": null, + "roundness": { + "type": 2 + }, + "boundElements": [], + "updated": 1738919367265, + "link": null, + "locked": false + }, + { + "type": "line", + "version": 882, + "versionNonce": 1704083506, + "isDeleted": false, + "id": "2cCqOR32nC2OigmwnDz7_", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2070.9499013853474, + "y": 217.98507969921093, + "strokeColor": "#000000", + "backgroundColor": "#326ce5", + "width": 21.557705003492888, + "height": 21.557705003492885, + "seed": 1792773422, + "groupIds": [ + "fkYP5W_VlcVCmSoVFVy5D" + ], + "strokeSharpness": "round", + "boundElementIds": [], + "startBinding": null, + "endBinding": null, + "points": [ + [ + 0, + 0 + ], + [ + 6.4174670964155, + -5.81198099131309 + ], + [ + 13.02185071020231, + -9.844784128142559 + ], + [ + 20.747733428217128, + -10.437843412970434 + ], + [ + 21.557705003492888, + 0.2965296424139247 + ], + [ + 20.124678370312722, + 11.11986159052245 + ], + [ + 9.719658903308929, + 6.108510633726992 + ], + [ + 0, + 0 + ] + ], + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "index": "b2c", + "frameId": null, + "roundness": { + "type": 2 + }, + "boundElements": [], + "updated": 1738919367265, + "link": null, + "locked": false + }, + { + "type": "line", + "version": 1000, + "versionNonce": 427780594, + "isDeleted": false, + "id": "tRONc8o-pekH244MoDmB6", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0.9881310661508964, + "x": 2093.820341231093, + "y": 215.42313424716997, + "strokeColor": "#000000", + "backgroundColor": "#326ce5", + "width": 21.849656050086754, + "height": 22.28721404724548, + "seed": 1988999022, + "groupIds": [ + "fkYP5W_VlcVCmSoVFVy5D" + ], + "strokeSharpness": "round", + "boundElementIds": [], + "startBinding": null, + "endBinding": null, + "points": [ + [ + 0, + 0 + ], + [ + 6.307158811343217, + -5.7120802600132725 + ], + [ + 12.798021277385752, + -9.675564522063281 + ], + [ + 19.588707167072652, + -10.78719797872464 + ], + [ + 21.849656050086754, + -0.4228378175566051 + ], + [ + 20.936752849362975, + 11.500016068520841 + ], + [ + 9.552590044364505, + 6.003512926340452 + ], + [ + 0, + 0 + ] + ], + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "index": "b2d", + "frameId": null, + "roundness": { + "type": 2 + }, + "boundElements": [], + "updated": 1738919367265, + "link": null, + "locked": false + }, + { + "type": "line", + "version": 1006, + "versionNonce": 832658354, + "isDeleted": false, + "id": "SBBin5Fgnjwvq1yW2bRcE", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 1.880863085334429, + "x": 2110.573893583749, + "y": 231.8755228454246, + "strokeColor": "#000000", + "backgroundColor": "#326ce5", + "width": 21.479159973687498, + "height": 22.534979750262238, + "seed": 385915310, + "groupIds": [ + "fkYP5W_VlcVCmSoVFVy5D" + ], + "strokeSharpness": "round", + "boundElementIds": [], + "startBinding": null, + "endBinding": null, + "points": [ + [ + 0, + 0 + ], + [ + 6.394085194479206, + -5.7908051648456125 + ], + [ + 12.821883813152631, + -9.760046630725103 + ], + [ + 20.67213951224835, + -10.399813357273743 + ], + [ + 21.479159973687498, + 0.29544924310435966 + ], + [ + 19.380563342165882, + 12.135166392988497 + ], + [ + 9.574674364814067, + 6.794079156258463 + ], + [ + 0, + 0 + ] + ], + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "index": "b2e", + "frameId": null, + "roundness": { + "type": 2 + }, + "boundElements": [], + "updated": 1738919367265, + "link": null, + "locked": false + }, + { + "type": "line", + "version": 1185, + "versionNonce": 1545540978, + "isDeleted": false, + "id": "n2rZHByupWhmqnErLiFa2", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 2.8469082809423476, + "x": 2107.1785184582245, + "y": 254.75314723707572, + "strokeColor": "#000000", + "backgroundColor": "#326ce5", + "width": 20.573332264113013, + "height": 23.385981425370197, + "seed": 1667052526, + "groupIds": [ + "fkYP5W_VlcVCmSoVFVy5D" + ], + "strokeSharpness": "round", + "boundElementIds": [], + "startBinding": null, + "endBinding": null, + "points": [ + [ + 0, + 0 + ], + [ + 3.9968199804359084, + -4.5099335061239545 + ], + [ + 11.103261190280325, + -9.612187799981596 + ], + [ + 18.586782576556548, + -10.698015127009295 + ], + [ + 20.573332264113013, + 0.5226343615079706 + ], + [ + 19.547525553814435, + 12.6879662983609 + ], + [ + 9.342092374121995, + 7.560357671417819 + ], + [ + 0, + 0 + ] + ], + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "index": "b2f", + "frameId": null, + "roundness": { + "type": 2 + }, + "boundElements": [], + "updated": 1738919367265, + "link": null, + "locked": false + }, + { + "type": "line", + "version": 1317, + "versionNonce": 1782552370, + "isDeleted": false, + "id": "i16AtOAEZ457QsbiKNpaa", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 3.774871714878671, + "x": 2087.0168282199834, + "y": 266.5459141977001, + "strokeColor": "#000000", + "backgroundColor": "#326ce5", + "width": 21.060929668098346, + "height": 24.192747374364252, + "seed": 632063534, + "groupIds": [ + "fkYP5W_VlcVCmSoVFVy5D" + ], + "strokeSharpness": "round", + "boundElementIds": [], + "startBinding": null, + "endBinding": null, + "points": [ + [ + 0, + 0 + ], + [ + 5.323764530816631, + -5.225233883686096 + ], + [ + 11.946440312022089, + -10.13358813849016 + ], + [ + 19.14310255451752, + -12.037088588123884 + ], + [ + 20.457394955122687, + -0.0020215484438121066 + ], + [ + 21.060929668098346, + 12.155658786240366 + ], + [ + 10.400753487297417, + 6.523865227139614 + ], + [ + 0, + 0 + ] + ], + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "index": "b2g", + "frameId": null, + "roundness": { + "type": 2 + }, + "boundElements": [], + "updated": 1738919367265, + "link": null, + "locked": false + }, + { + "type": "line", + "version": 1380, + "versionNonce": 1818878194, + "isDeleted": false, + "id": "lmRbzPzlGzWuCbyLJ8rP8", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 4.759646000521123, + "x": 2064.859684680868, + "y": 257.49883352855807, + "strokeColor": "#000000", + "backgroundColor": "#326ce5", + "width": 20.851751550243478, + "height": 20.502820893402166, + "seed": 2128056430, + "groupIds": [ + "fkYP5W_VlcVCmSoVFVy5D" + ], + "strokeSharpness": "round", + "boundElementIds": [], + "startBinding": null, + "endBinding": null, + "points": [ + [ + 0, + 0 + ], + [ + 4.146788698896836, + -5.844864068211204 + ], + [ + 10.689172996507862, + -10.781555944738223 + ], + [ + 16.467244654531225, + -11.162985900365323 + ], + [ + 20.428485246628206, + -1.5789248026187297 + ], + [ + 20.851751550243478, + 9.339834993036844 + ], + [ + 9.574674364814067, + 6.794079156258462 + ], + [ + 0, + 0 + ] + ], + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "index": "b2h", + "frameId": null, + "roundness": { + "type": 2 + }, + "boundElements": [], + "updated": 1738919367265, + "link": null, + "locked": false + }, + { + "type": "line", + "version": 1508, + "versionNonce": 1311044274, + "isDeleted": false, + "id": "efomqrUWJrKqRk6eQORnG", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 5.645190933495279, + "x": 2058.8030921452337, + "y": 236.10781338308766, + "strokeColor": "#000000", + "backgroundColor": "#326ce5", + "width": 23.42043937693637, + "height": 22.639048645082866, + "seed": 178737838, + "groupIds": [ + "fkYP5W_VlcVCmSoVFVy5D" + ], + "strokeSharpness": "round", + "boundElementIds": [], + "startBinding": null, + "endBinding": null, + "points": [ + [ + 0, + 0 + ], + [ + 4.146788698896836, + -5.844864068211203 + ], + [ + 10.689172996507862, + -10.781555944738221 + ], + [ + 17.230354411946674, + -12.192224934711268 + ], + [ + 20.93869500462914, + -1.9981556001148353 + ], + [ + 23.42043937693637, + 10.446823710371596 + ], + [ + 11.462411876252354, + 6.399295000034613 + ], + [ + 0, + 0 + ] + ], + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "index": "b2i", + "frameId": null, + "roundness": { + "type": 2 + }, + "boundElements": [], + "updated": 1738919367265, + "link": null, + "locked": false + }, + { + "type": "ellipse", + "version": 327, + "versionNonce": 1914162290, + "isDeleted": false, + "id": "vt53LcFyavLLvGOUvpFOJ", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2092.281638616759, + "y": 235.7253176140423, + "strokeColor": "#000000", + "backgroundColor": "#326ce5", + "width": 9.43161874441803, + "height": 9.43161874441803, + "seed": 63229166, + "groupIds": [ + "fkYP5W_VlcVCmSoVFVy5D" + ], + "strokeSharpness": "sharp", + "boundElementIds": [], + "index": "b2j", + "frameId": null, + "roundness": null, + "boundElements": [], + "updated": 1738919367265, + "link": null, + "locked": false + }, + { + "id": "WfWZn1VEemvzMrCh94Lc5", + "type": "text", + "x": 2580.7228106820294, + "y": 263.0828960819141, + "width": 304.84912109375, + "height": 35, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b2k", + "roundness": null, + "seed": 1740177198, + "version": 407, + "versionNonce": 1309240882, + "isDeleted": false, + "boundElements": [], + "updated": 1738919367265, + "link": null, + "locked": false, + "text": "k3k-system namespace", + "fontSize": 28, + "fontFamily": 5, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "k3k-system namespace", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "oBIzx8_19aSsMwlniiYpj", + "type": "rectangle", + "x": 2543.7585521628766, + "y": 306.8757173271953, + "width": 379.992577576889, + "height": 165.59987816580406, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "dashed", + "roughness": 1, + "opacity": 100, + "groupIds": [ + "kKiS9zqr1Wb9n2MUwZG0x" + ], + "frameId": null, + "index": "b2l", + "roundness": null, + "seed": 451733870, + "version": 778, + "versionNonce": 115398642, + "isDeleted": false, + "boundElements": [ + { + "id": "G25zwUu4YJwZCyf4cuTcq", + "type": "arrow" + } + ], + "updated": 1738919367265, + "link": null, + "locked": false + }, + { + "type": "line", + "version": 1646, + "versionNonce": 914162546, + "isDeleted": false, + "id": "_X2ORAbE9bePRT9nupnR4", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2732.8114771725277, + "y": 326.25252704539264, + "strokeColor": "#000000", + "backgroundColor": "#326ce5", + "width": 95.91694595296573, + "height": 93.88317402088744, + "seed": 212437934, + "groupIds": [ + "hWUqe8r3kmhItOwenKgMi", + "5-5KcGVgoM_-GbPpc1Gta", + "UsEdZSDK_687Zg7bJO52u", + "CC-Pm0fRY5JIj2dagdkaS", + "L7DLqXj5pUE_jtU0UNz5h", + "kKiS9zqr1Wb9n2MUwZG0x" + ], + "strokeSharpness": "sharp", + "boundElements": [], + "updated": 1738919367265, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -39.59125003164969, + 18.937807635114627 + ], + [ + -47.754394368072326, + 59.432481408072505 + ], + [ + -20.407860841056557, + 93.88317402088744 + ], + [ + 25.509826051320665, + 93.68170798221598 + ], + [ + 48.162551584893414, + 56.813422905343806 + ], + [ + 39.18309281482855, + 16.92314724840031 + ], + [ + 0, + 0 + ] + ], + "index": "b2m", + "frameId": null, + "roundness": null + }, + { + "type": "text", + "version": 919, + "versionNonce": 1588577586, + "isDeleted": false, + "id": "Vj9taoIeJGh96SndiVqWf", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2716.1690965164225, + "y": 395.42670596467974, + "strokeColor": "#fff", + "backgroundColor": "transparent", + "width": 35.55351257324219, + "height": 23.221683381669717, + "seed": 1528292846, + "groupIds": [ + "5-5KcGVgoM_-GbPpc1Gta", + "UsEdZSDK_687Zg7bJO52u", + "CC-Pm0fRY5JIj2dagdkaS", + "L7DLqXj5pUE_jtU0UNz5h", + "kKiS9zqr1Wb9n2MUwZG0x" + ], + "strokeSharpness": "sharp", + "boundElements": [ + { + "id": "6FBmIzEo-ix3S0S9uqBu1", + "type": "arrow" + }, + { + "id": "xxatc34bfW1FUxMkQTYoZ", + "type": "arrow" + }, + { + "id": "kQZ0fcUBuPv2bQcRfNbjn", + "type": "arrow" + } + ], + "updated": 1738919367265, + "link": null, + "locked": false, + "fontSize": 18.577346705335774, + "fontFamily": 1, + "text": "Pod", + "baseline": 14, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "originalText": "Pod", + "index": "b2n", + "frameId": null, + "roundness": null, + "autoResize": true, + "lineHeight": 1.25 + }, + { + "type": "arrow", + "version": 2149, + "versionNonce": 1497215534, + "isDeleted": false, + "id": "kQZ0fcUBuPv2bQcRfNbjn", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2732.4283659890007, + "y": 359.81065730011005, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 0.9316120817336468, + "height": 21.616048664569576, + "seed": 2000746542, + "groupIds": [ + "J0Cn9sivuPZTnOcbQKHx1", + "leFeyqqxxgs3RIssM_444", + "CC-Pm0fRY5JIj2dagdkaS", + "L7DLqXj5pUE_jtU0UNz5h", + "kKiS9zqr1Wb9n2MUwZG0x" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919367330, + "link": null, + "locked": false, + "startBinding": { + "elementId": "4DSlWFl8ccYH--Va4M1AQ", + "focus": 0.06357849557371983, + "gap": 1.1610841690840772, + "fixedPoint": null + }, + "endBinding": { + "elementId": "Vj9taoIeJGh96SndiVqWf", + "focus": -0.1943889965203955, + "gap": 14, + "fixedPoint": null + }, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -0.9316120817336468, + 21.616048664569576 + ] + ], + "index": "b2o", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "arrow", + "version": 1370, + "versionNonce": 2137209966, + "isDeleted": false, + "id": "6FBmIzEo-ix3S0S9uqBu1", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2735.829632793383, + "y": 382.811145234233, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 15.336802800918715, + "height": 7.239641937092449, + "seed": 1225638510, + "groupIds": [ + "J0Cn9sivuPZTnOcbQKHx1", + "leFeyqqxxgs3RIssM_444", + "CC-Pm0fRY5JIj2dagdkaS", + "L7DLqXj5pUE_jtU0UNz5h", + "kKiS9zqr1Wb9n2MUwZG0x" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919367330, + "link": null, + "locked": false, + "startBinding": { + "elementId": "4DSlWFl8ccYH--Va4M1AQ", + "focus": 4.0323558854449555, + "gap": 14, + "fixedPoint": null + }, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 15.336802800918715, + -7.239641937092449 + ] + ], + "index": "b2p", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "arrow", + "version": 1447, + "versionNonce": 1423802030, + "isDeleted": false, + "id": "uTYewNOSXwgGQRWhjO2cd", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2751.2162958775384, + "y": 353.1150642186898, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 0.46506629105565866, + "height": 23.461362085416425, + "seed": 1397179566, + "groupIds": [ + "J0Cn9sivuPZTnOcbQKHx1", + "leFeyqqxxgs3RIssM_444", + "CC-Pm0fRY5JIj2dagdkaS", + "L7DLqXj5pUE_jtU0UNz5h", + "kKiS9zqr1Wb9n2MUwZG0x" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919367330, + "link": null, + "locked": false, + "startBinding": { + "elementId": "4DSlWFl8ccYH--Va4M1AQ", + "focus": -0.9764089313008107, + "gap": 1.6378775642061338, + "fixedPoint": null + }, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 0.46506629105565866, + 23.461362085416425 + ] + ], + "index": "b2q", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "arrow", + "version": 1229, + "versionNonce": 2119530734, + "isDeleted": false, + "id": "xxatc34bfW1FUxMkQTYoZ", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2731.8421881257163, + "y": 383.9799799997195, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 18.85333133897294, + "height": 11.663940739968485, + "seed": 1469480686, + "groupIds": [ + "J0Cn9sivuPZTnOcbQKHx1", + "leFeyqqxxgs3RIssM_444", + "CC-Pm0fRY5JIj2dagdkaS", + "L7DLqXj5pUE_jtU0UNz5h", + "kKiS9zqr1Wb9n2MUwZG0x" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919367330, + "link": null, + "locked": false, + "startBinding": { + "elementId": "4DSlWFl8ccYH--Va4M1AQ", + "focus": -4.2253406802931455, + "gap": 14, + "fixedPoint": null + }, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -18.85333133897294, + -11.663940739968485 + ] + ], + "index": "b2r", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "arrow", + "version": 1291, + "versionNonce": 592718638, + "isDeleted": false, + "id": "EW1xRu2u-oae2zyrxIRAo", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2717.199383547862, + "y": 374.2012345655917, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 1.40380467403088, + "height": 20.887541171656892, + "seed": 2055500078, + "groupIds": [ + "J0Cn9sivuPZTnOcbQKHx1", + "leFeyqqxxgs3RIssM_444", + "CC-Pm0fRY5JIj2dagdkaS", + "L7DLqXj5pUE_jtU0UNz5h", + "kKiS9zqr1Wb9n2MUwZG0x" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919367330, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": { + "elementId": "4DSlWFl8ccYH--Va4M1AQ", + "focus": 0.85893107643783, + "gap": 1.0000000000000728, + "fixedPoint": null + }, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 1.40380467403088, + -20.887541171656892 + ] + ], + "index": "b2s", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "diamond", + "version": 893, + "versionNonce": 26014066, + "isDeleted": false, + "id": "4DSlWFl8ccYH--Va4M1AQ", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2716.2566766738864, + "y": 343.06471035399306, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 35.337320777988985, + "height": 16.153605471047978, + "seed": 1736055662, + "groupIds": [ + "J0Cn9sivuPZTnOcbQKHx1", + "leFeyqqxxgs3RIssM_444", + "CC-Pm0fRY5JIj2dagdkaS", + "L7DLqXj5pUE_jtU0UNz5h", + "kKiS9zqr1Wb9n2MUwZG0x" + ], + "strokeSharpness": "sharp", + "boundElements": [ + { + "id": "kQZ0fcUBuPv2bQcRfNbjn", + "type": "arrow" + }, + { + "id": "uTYewNOSXwgGQRWhjO2cd", + "type": "arrow" + }, + { + "id": "EW1xRu2u-oae2zyrxIRAo", + "type": "arrow" + }, + { + "id": "6FBmIzEo-ix3S0S9uqBu1", + "type": "arrow" + }, + { + "id": "xxatc34bfW1FUxMkQTYoZ", + "type": "arrow" + } + ], + "updated": 1738919367265, + "link": null, + "locked": false, + "index": "b2t", + "frameId": null, + "roundness": null + }, + { + "type": "line", + "version": 565, + "versionNonce": 1329181682, + "isDeleted": false, + "id": "o0PgxsmNTe_smt9Ohf7Th", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2743.1022031919756, + "y": 358.8829839746113, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 8.182148235188777, + "height": 14.941314168605555, + "seed": 1958772142, + "groupIds": [ + "leFeyqqxxgs3RIssM_444", + "CC-Pm0fRY5JIj2dagdkaS", + "L7DLqXj5pUE_jtU0UNz5h", + "kKiS9zqr1Wb9n2MUwZG0x" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919367265, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -8.182148235188777, + 14.941314168605555 + ] + ], + "index": "b2u", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "line", + "version": 567, + "versionNonce": 226649522, + "isDeleted": false, + "id": "yr7zcTUAU5DL6ree-ali7", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2721.401723089954, + "y": 354.96978264473853, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 8.893639386074742, + "height": 13.874077442276572, + "seed": 1199609838, + "groupIds": [ + "leFeyqqxxgs3RIssM_444", + "CC-Pm0fRY5JIj2dagdkaS", + "L7DLqXj5pUE_jtU0UNz5h", + "kKiS9zqr1Wb9n2MUwZG0x" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919367265, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 8.893639386074742, + 13.874077442276572 + ] + ], + "index": "b2v", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "line", + "version": 599, + "versionNonce": 1800331122, + "isDeleted": false, + "id": "zMmxjIRJv1BEq-WDFREil", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2748.9720051867853, + "y": 362.4404397290414, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 8.182148235188777, + "height": 14.941314168605555, + "seed": 2009295406, + "groupIds": [ + "leFeyqqxxgs3RIssM_444", + "CC-Pm0fRY5JIj2dagdkaS", + "L7DLqXj5pUE_jtU0UNz5h", + "kKiS9zqr1Wb9n2MUwZG0x" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919367265, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -8.182148235188777, + 14.941314168605555 + ] + ], + "index": "b2w", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "line", + "version": 606, + "versionNonce": 1424367922, + "isDeleted": false, + "id": "8wXmtmCuqRlrNga4IqU60", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2719.4451224250174, + "y": 363.6855492430918, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 8.893639386074742, + "height": 13.874077442276572, + "seed": 879883374, + "groupIds": [ + "leFeyqqxxgs3RIssM_444", + "CC-Pm0fRY5JIj2dagdkaS", + "L7DLqXj5pUE_jtU0UNz5h", + "kKiS9zqr1Wb9n2MUwZG0x" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919367265, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 8.893639386074742, + 13.874077442276572 + ] + ], + "index": "b2x", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "id": "NJsEX-JJspcN7Xw-Mq-qR", + "type": "text", + "x": 2636.061179560235, + "y": 433.1184852700162, + "width": 193.90875244140625, + "height": 35, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "dashed", + "roughness": 1, + "opacity": 100, + "groupIds": [ + "L7DLqXj5pUE_jtU0UNz5h", + "kKiS9zqr1Wb9n2MUwZG0x" + ], + "frameId": null, + "index": "b2y", + "roundness": null, + "seed": 1733637806, + "version": 242, + "versionNonce": 363801330, + "isDeleted": false, + "boundElements": [], + "updated": 1738919367265, + "link": null, + "locked": false, + "text": "K3k Controller", + "fontSize": 28, + "fontFamily": 5, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "originalText": "K3k Controller", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "50kdAWFQXb7mK1cx1sI6l", + "type": "text", + "x": 2090.1488507411527, + "y": 415.1399149292504, + "width": 296.4451599121094, + "height": 70, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b2z", + "roundness": null, + "seed": 1494626542, + "version": 487, + "versionNonce": 1949367474, + "isDeleted": false, + "boundElements": [], + "updated": 1738919367265, + "link": null, + "locked": false, + "text": "k3k-my-virtual-cluster\nnamespace", + "fontSize": 28, + "fontFamily": 5, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "k3k-my-virtual-cluster\nnamespace", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "type": "line", + "version": 1778, + "versionNonce": 892193650, + "isDeleted": false, + "id": "3UgPNMyfHR6G2d3xroajT", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2305.590730474483, + "y": 608.3362721863366, + "strokeColor": "#000000", + "backgroundColor": "#326ce5", + "width": 98.80853147774154, + "height": 96.71344790337663, + "seed": 1430119214, + "groupIds": [ + "neIfNIyLHuAhtvokNVEMk", + "4ywHXafQPvBT-2HEhIcUd", + "rSwqEeid6o2CvgCRr6dR-", + "c0J9Sje9FXYCJk3IyTMN_", + "AK-lJgijWInrZFkk5Dapq" + ], + "strokeSharpness": "sharp", + "boundElements": [], + "updated": 1738919563156, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -40.78479809932311, + 19.508721250895707 + ], + [ + -49.19403482083305, + 61.224178393768454 + ], + [ + -21.023091803774815, + 96.71344790337663 + ], + [ + 26.278864754718487, + 96.50590831560112 + ], + [ + 49.6144966569085, + 58.52616375268705 + ], + [ + 40.3643362632476, + 17.43332537314085 + ], + [ + 0, + 0 + ] + ], + "index": "b30", + "frameId": null, + "roundness": null + }, + { + "type": "text", + "version": 1054, + "versionNonce": 1543998770, + "isDeleted": false, + "id": "Ls1ElIQpk_zeSJ-i5MVSc", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2288.4466358978093, + "y": 679.5958287462894, + "strokeColor": "#fff", + "backgroundColor": "transparent", + "width": 37.07870008172437, + "height": 23.921741988209273, + "seed": 1312116078, + "groupIds": [ + "4ywHXafQPvBT-2HEhIcUd", + "rSwqEeid6o2CvgCRr6dR-", + "c0J9Sje9FXYCJk3IyTMN_", + "AK-lJgijWInrZFkk5Dapq" + ], + "strokeSharpness": "sharp", + "boundElements": [ + { + "id": "ThRAAIn8gesZ_yw773oKZ", + "type": "arrow" + }, + { + "id": "iDhto2gMGtyfjyidqh26p", + "type": "arrow" + }, + { + "id": "a3Vda-92SJxrpCOTmy1gP", + "type": "arrow" + } + ], + "updated": 1738919563156, + "link": null, + "locked": false, + "fontSize": 19.13739359056742, + "fontFamily": 1, + "text": "Pod", + "baseline": 14, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "Pod", + "index": "b31", + "frameId": null, + "roundness": null, + "autoResize": true, + "lineHeight": 1.25 + }, + { + "type": "arrow", + "version": 2606, + "versionNonce": 1788516206, + "isDeleted": false, + "id": "iDhto2gMGtyfjyidqh26p", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2305.196069728554, + "y": 642.9060714711612, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 0.9596971712188458, + "height": 22.26770258036416, + "seed": 21327790, + "groupIds": [ + "BmqhFNrwx8ok8eU4q5dU_", + "QY8D8VpW-TwSO15fGnj0o", + "c0J9Sje9FXYCJk3IyTMN_", + "AK-lJgijWInrZFkk5Dapq" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919563462, + "link": null, + "locked": false, + "startBinding": { + "elementId": "_dc5x1PHE61VyvPtnUB2Z", + "focus": 0.06357849557370913, + "gap": 1.1960870994108346, + "fixedPoint": null + }, + "endBinding": { + "elementId": "Ls1ElIQpk_zeSJ-i5MVSc", + "focus": -0.2039727852852916, + "gap": 14.422054694764029, + "fixedPoint": null + }, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -0.9596971712188458, + 22.26770258036416 + ] + ], + "index": "b32", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "arrow", + "version": 1676, + "versionNonce": 913406382, + "isDeleted": false, + "id": "a3Vda-92SJxrpCOTmy1gP", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2285.8527069439488, + "y": 672.6925274919124, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 38.646324550459, + "height": 13.550471520399457, + "seed": 446122478, + "groupIds": [ + "BmqhFNrwx8ok8eU4q5dU_", + "QY8D8VpW-TwSO15fGnj0o", + "c0J9Sje9FXYCJk3IyTMN_", + "AK-lJgijWInrZFkk5Dapq" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919563462, + "link": null, + "locked": false, + "startBinding": { + "elementId": "Ls1ElIQpk_zeSJ-i5MVSc", + "focus": -1.4231994947854676, + "gap": 6.90330125437697, + "fixedPoint": null + }, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 38.646324550459, + -13.550471520399457 + ] + ], + "index": "b33", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "arrow", + "version": 1742, + "versionNonce": 565318638, + "isDeleted": false, + "id": "l06uo3rZudwQmk7d0XGBf", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2324.5503949038316, + "y": 636.0086279258667, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 0.4790865347354058, + "height": 24.168646229252495, + "seed": 1496570926, + "groupIds": [ + "BmqhFNrwx8ok8eU4q5dU_", + "QY8D8VpW-TwSO15fGnj0o", + "c0J9Sje9FXYCJk3IyTMN_", + "AK-lJgijWInrZFkk5Dapq" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919563462, + "link": null, + "locked": false, + "startBinding": { + "elementId": "_dc5x1PHE61VyvPtnUB2Z", + "focus": -0.9764089313008519, + "gap": 1.6872542724508284, + "fixedPoint": null + }, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 0.4790865347354058, + 24.168646229252495 + ] + ], + "index": "b34", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "arrow", + "version": 1453, + "versionNonce": 1635549106, + "isDeleted": false, + "id": "ThRAAIn8gesZ_yw773oKZ", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2304.5922204996155, + "y": 667.8040210361016, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 19.421698267798455, + "height": 12.01557080773649, + "seed": 855909998, + "groupIds": [ + "BmqhFNrwx8ok8eU4q5dU_", + "QY8D8VpW-TwSO15fGnj0o", + "c0J9Sje9FXYCJk3IyTMN_", + "AK-lJgijWInrZFkk5Dapq" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919563156, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -19.421698267798455, + -12.01557080773649 + ] + ], + "index": "b35", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "arrow", + "version": 1586, + "versionNonce": 107308590, + "isDeleted": false, + "id": "hWGTJhsY-uA3EOkODlcU4", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2289.5079827491477, + "y": 657.7304780720186, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 1.4461248421170367, + "height": 21.517232944054786, + "seed": 2026973358, + "groupIds": [ + "BmqhFNrwx8ok8eU4q5dU_", + "QY8D8VpW-TwSO15fGnj0o", + "c0J9Sje9FXYCJk3IyTMN_", + "AK-lJgijWInrZFkk5Dapq" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919563462, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": { + "elementId": "_dc5x1PHE61VyvPtnUB2Z", + "focus": 0.8589310764377756, + "gap": 1.0301467639114614, + "fixedPoint": null + }, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 1.4461248421170367, + -21.517232944054786 + ] + ], + "index": "b36", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "diamond", + "version": 1031, + "versionNonce": 815905586, + "isDeleted": false, + "id": "_dc5x1PHE61VyvPtnUB2Z", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2288.5368563136035, + "y": 625.6552884159819, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 36.4026266447552, + "height": 16.640584401506484, + "seed": 2051269358, + "groupIds": [ + "BmqhFNrwx8ok8eU4q5dU_", + "QY8D8VpW-TwSO15fGnj0o", + "c0J9Sje9FXYCJk3IyTMN_", + "AK-lJgijWInrZFkk5Dapq" + ], + "strokeSharpness": "sharp", + "boundElements": [ + { + "id": "iDhto2gMGtyfjyidqh26p", + "type": "arrow" + }, + { + "id": "l06uo3rZudwQmk7d0XGBf", + "type": "arrow" + }, + { + "id": "hWGTJhsY-uA3EOkODlcU4", + "type": "arrow" + } + ], + "updated": 1738919563156, + "link": null, + "locked": false, + "index": "b37", + "frameId": null, + "roundness": null + }, + { + "type": "line", + "version": 696, + "versionNonce": 272208434, + "isDeleted": false, + "id": "q4srDBqBt60h0sarrnHf-", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2316.1916885817195, + "y": 641.9504317969315, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 8.428813526325584, + "height": 15.391746439377117, + "seed": 702895406, + "groupIds": [ + "QY8D8VpW-TwSO15fGnj0o", + "c0J9Sje9FXYCJk3IyTMN_", + "AK-lJgijWInrZFkk5Dapq" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919563156, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -8.428813526325584, + 15.391746439377117 + ] + ], + "index": "b38", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "line", + "version": 699, + "versionNonce": 1466727410, + "isDeleted": false, + "id": "z3f4bDB_PjPBI0maPtQvo", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2293.837009229291, + "y": 637.9192601104284, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 9.161753832962576, + "height": 14.292335979421594, + "seed": 1092517742, + "groupIds": [ + "QY8D8VpW-TwSO15fGnj0o", + "c0J9Sje9FXYCJk3IyTMN_", + "AK-lJgijWInrZFkk5Dapq" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919563156, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 9.161753832962576, + 14.292335979421594 + ] + ], + "index": "b39", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "line", + "version": 730, + "versionNonce": 337391026, + "isDeleted": false, + "id": "1meJ8Ug57rkkXHTXtM3xa", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2322.238446111475, + "y": 645.6151333301167, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 8.428813526325584, + "height": 15.391746439377117, + "seed": 1681416622, + "groupIds": [ + "QY8D8VpW-TwSO15fGnj0o", + "c0J9Sje9FXYCJk3IyTMN_", + "AK-lJgijWInrZFkk5Dapq" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919563156, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -8.428813526325584, + 15.391746439377117 + ] + ], + "index": "b3A", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "line", + "version": 738, + "versionNonce": 191866738, + "isDeleted": false, + "id": "5olQqVGbVs9L-R0N61Xw5", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2291.82142338604, + "y": 646.8977788667315, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 9.161753832962576, + "height": 14.292335979421594, + "seed": 1180433390, + "groupIds": [ + "QY8D8VpW-TwSO15fGnj0o", + "c0J9Sje9FXYCJk3IyTMN_", + "AK-lJgijWInrZFkk5Dapq" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919563156, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 9.161753832962576, + 14.292335979421594 + ] + ], + "index": "b3B", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "id": "LW6f4nnd_cHlRNAJk3AHE", + "type": "text", + "x": 2231.061484145726, + "y": 713.584549753223, + "width": 149.47895449358873, + "height": 36.055136736909674, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "dashed", + "roughness": 1, + "opacity": 100, + "groupIds": [ + "AK-lJgijWInrZFkk5Dapq" + ], + "frameId": null, + "index": "b3C", + "roundness": null, + "seed": 1301433902, + "version": 438, + "versionNonce": 1169025330, + "isDeleted": false, + "boundElements": [], + "updated": 1738919563156, + "link": null, + "locked": false, + "text": "K3s server", + "fontSize": 28.844109389527734, + "fontFamily": 5, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "K3s server", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "9dTzghbze-oemSemmIo7n", + "type": "text", + "x": 3308.4233118158436, + "y": 102.91872893840844, + "width": 61.61216735839844, + "height": 35, + "angle": 0, + "strokeColor": "transparent", + "backgroundColor": "#a5d8ff", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "dashed", + "roughness": 1, + "opacity": 40, + "groupIds": [], + "frameId": null, + "index": "b3d", + "roundness": null, + "seed": 600222446, + "version": 69, + "versionNonce": 909064754, + "isDeleted": false, + "boundElements": [], + "updated": 1738919367265, + "link": null, + "locked": false, + "text": "ssss", + "fontSize": 28, + "fontFamily": 5, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "originalText": "ssss", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "FFf95uIgeGjQB03XArzrK", + "type": "text", + "x": 2322.879997766269, + "y": 893.142667859338, + "width": 156.99986267089844, + "height": 25, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b3e", + "roundness": null, + "seed": 667884846, + "version": 660, + "versionNonce": 527848622, + "isDeleted": false, + "boundElements": [], + "updated": 1738921693970, + "link": null, + "locked": false, + "text": "K3k components", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "K3k components", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "type": "line", + "version": 1050, + "versionNonce": 56611506, + "isDeleted": false, + "id": "grLmDWQsDiNk2BQYG6E4K", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2143.6320346496386, + "y": 527.5576991598662, + "strokeColor": "#000000", + "backgroundColor": "#326ce5", + "width": 74.56969262545775, + "height": 72.98855650463366, + "seed": 2128613230, + "groupIds": [ + "OLccbKYo1KlzaMmbc8eCy" + ], + "strokeSharpness": "sharp", + "boundElementIds": [], + "startBinding": null, + "endBinding": null, + "points": [ + [ + 0, + 0 + ], + [ + -30.779830573061282, + 14.723013543853138 + ], + [ + -37.12618739224919, + 46.20520207911358 + ], + [ + -15.86589204796974, + 72.98855650463366 + ], + [ + 19.832365059962157, + 72.83192870097564 + ], + [ + 37.443505233208555, + 44.16904063155936 + ], + [ + 30.462512732101867, + 13.156735507273018 + ], + [ + 0, + 0 + ] + ], + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "index": "b4B", + "frameId": null, + "roundness": null, + "boundElements": [], + "updated": 1738919367266, + "link": null, + "locked": false + }, + { + "type": "line", + "version": 3471, + "versionNonce": 2096540786, + "isDeleted": false, + "id": "ioRo_g1BI9qB8dhCbpoB1", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0.010125045471368388, + "x": 2137.817515470434, + "y": 545.6657128885385, + "strokeColor": "#000000", + "backgroundColor": "#ffff", + "width": 56.027402022303576, + "height": 55.80321948273368, + "seed": 323482030, + "groupIds": [ + "OLccbKYo1KlzaMmbc8eCy" + ], + "strokeSharpness": "round", + "boundElementIds": [], + "startBinding": null, + "endBinding": null, + "points": [ + [ + 0, + 0 + ], + [ + 3.9946843590662695, + -1.285223345136831 + ], + [ + 4.364583816560461, + -3.3388862946180877 + ], + [ + 3.8386141011418626, + -9.181806233252713 + ], + [ + 6.492462353704386, + -9.400819726754438 + ], + [ + 6.372979336315567, + -3.260602159347162 + ], + [ + 7.364557132379737, + -1.361330394290641 + ], + [ + 11.681239496538245, + -0.4708248002297829 + ], + [ + 17.69591744922602, + 1.82147372210106 + ], + [ + 21.960343457482153, + 4.7748292871787585 + ], + [ + 23.594556598968, + 4.413388026396299 + ], + [ + 27.48185649765045, + 1.369672146122987 + ], + [ + 28.709933828826234, + 2.487286570910849 + ], + [ + 24.84197373063479, + 5.6023395421280675 + ], + [ + 24.203760314433225, + 7.262115858089609 + ], + [ + 26.843643081448892, + 12.24620061203717 + ], + [ + 28.458516422443815, + 17.96267949967549 + ], + [ + 28.63740957698519, + 23.57928645999234 + ], + [ + 29.865486908160953, + 24.63031959989924 + ], + [ + 34.8599903849507, + 25.1819931031988 + ], + [ + 34.584398227954594, + 27.193699067816908 + ], + [ + 29.589894751164813, + 26.25204946735735 + ], + [ + 28.03304081164278, + 26.623002340265668 + ], + [ + 25.668750201623222, + 31.283692281934176 + ], + [ + 22.293955015951155, + 35.34039485361095 + ], + [ + 17.51702429468465, + 39.15930712214137 + ], + [ + 18.11655810990433, + 40.781036989599514 + ], + [ + 21.239935889193962, + 45.26100630087681 + ], + [ + 19.156072386293303, + 46.402399755979246 + ], + [ + 16.898150678974055, + 41.45636145053517 + ], + [ + 14.969005580001015, + 40.0724218862234 + ], + [ + 9.437822639587216, + 41.57525660210832 + ], + [ + 1.9001353982365563, + 41.427826614157595 + ], + [ + -2.8477856222934856, + 39.4256322616653 + ], + [ + -4.254756108010628, + 40.486177013698054 + ], + [ + -6.7786000720805735, + 45.1849134038699 + ], + [ + -8.509512216021257, + 44.00071769420113 + ], + [ + -5.536017890536574, + 39.63488772843409 + ], + [ + -5.289435434276864, + 37.9655998003467 + ], + [ + -9.002677128540677, + 35.11687196865337 + ], + [ + -12.411316965071922, + 30.41813557848146 + ], + [ + -13.895646652752923, + 27.17943164962812 + ], + [ + -15.858636402585077, + 26.979687794985175 + ], + [ + -20.867644729743052, + 28.34935994110819 + ], + [ + -21.167411637352878, + 26.190223988539294 + ], + [ + -16.139063509703984, + 25.5529459761071 + ], + [ + -14.72725807386408, + 24.321192205808988 + ], + [ + -14.704694973291298, + 17.660950026127566 + ], + [ + -13.397109573430448, + 12.560612235086246 + ], + [ + -10.985006678863819, + 8.256079325241366 + ], + [ + -12.116385007584832, + 6.591547203216893 + ], + [ + -16.956170080446924, + 4.018656123173355 + ], + [ + -15.728092749271116, + 1.9879269343035022 + ], + [ + -11.400812389419393, + 5.445397942051484 + ], + [ + -9.13322078185465, + 5.649897602757343 + ], + [ + -5.265260683663174, + 2.539600437603044 + ], + [ + 0, + 0 + ] + ], + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "index": "b4C", + "frameId": null, + "roundness": { + "type": 2 + }, + "boundElements": [], + "updated": 1738919367266, + "link": null, + "locked": false + }, + { + "type": "line", + "version": 985, + "versionNonce": 1510755890, + "isDeleted": false, + "id": "lcbmNJiapRtIItvbrbi5S", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2131.401519494719, + "y": 553.6562276722428, + "strokeColor": "#000000", + "backgroundColor": "#326ce5", + "width": 11.390207206651219, + "height": 11.390207206651217, + "seed": 217680878, + "groupIds": [ + "OLccbKYo1KlzaMmbc8eCy" + ], + "strokeSharpness": "round", + "boundElementIds": [], + "startBinding": null, + "endBinding": null, + "points": [ + [ + 0, + 0 + ], + [ + 3.390726422789228, + -3.0708123968413275 + ], + [ + 6.880211867601436, + -5.201580182404683 + ], + [ + 10.9622514445516, + -5.514928386164008 + ], + [ + 11.390207206651219, + 0.15667410187965508 + ], + [ + 10.633054704474981, + 5.8752788204872095 + ], + [ + 5.135469145195345, + 3.2274864987209697 + ], + [ + 0, + 0 + ] + ], + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "index": "b4D", + "frameId": null, + "roundness": { + "type": 2 + }, + "boundElements": [], + "updated": 1738919367266, + "link": null, + "locked": false + }, + { + "type": "line", + "version": 1103, + "versionNonce": 1334294514, + "isDeleted": false, + "id": "ewPkRFwB-NEpf58EmbyMr", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0.9881310661508964, + "x": 2143.485321954586, + "y": 552.3026007650113, + "strokeColor": "#000000", + "backgroundColor": "#326ce5", + "width": 11.544462166275355, + "height": 11.775649866995707, + "seed": 167632430, + "groupIds": [ + "OLccbKYo1KlzaMmbc8eCy" + ], + "strokeSharpness": "round", + "boundElementIds": [], + "startBinding": null, + "endBinding": null, + "points": [ + [ + 0, + 0 + ], + [ + 3.3324440488825404, + -3.0180289475169877 + ], + [ + 6.761949574917, + -5.112171482528766 + ], + [ + 10.349869501749856, + -5.699513011099051 + ], + [ + 11.544462166275355, + -0.22341016151754417 + ], + [ + 11.062121554685474, + 6.076136855896657 + ], + [ + 5.047196811899782, + 3.1720100162678397 + ], + [ + 0, + 0 + ] + ], + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "index": "b4E", + "frameId": null, + "roundness": { + "type": 2 + }, + "boundElements": [], + "updated": 1738919367266, + "link": null, + "locked": false + }, + { + "type": "line", + "version": 1109, + "versionNonce": 1567615410, + "isDeleted": false, + "id": "WdOyWGInNEV_k3dcYfHKr", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 1.880863085334429, + "x": 2152.3372119267938, + "y": 560.9953681606179, + "strokeColor": "#000000", + "backgroundColor": "#326ce5", + "width": 11.348707234163841, + "height": 11.906559103187837, + "seed": 2134763630, + "groupIds": [ + "OLccbKYo1KlzaMmbc8eCy" + ], + "strokeSharpness": "round", + "boundElementIds": [], + "startBinding": null, + "endBinding": null, + "points": [ + [ + 0, + 0 + ], + [ + 3.378372384736624, + -3.0596239585916343 + ], + [ + 6.774557560174097, + -5.156808363994443 + ], + [ + 10.922310719585418, + -5.4948348644094605 + ], + [ + 11.348707234163841, + 0.1561032631934463 + ], + [ + 10.239894840992186, + 6.411724238778376 + ], + [ + 5.058865261110764, + 3.5897127897257852 + ], + [ + 0, + 0 + ] + ], + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "index": "b4F", + "frameId": null, + "roundness": { + "type": 2 + }, + "boundElements": [], + "updated": 1738919367266, + "link": null, + "locked": false + }, + { + "type": "line", + "version": 1289, + "versionNonce": 1793844082, + "isDeleted": false, + "id": "MDvP7yymGBpVm9nqDMtMI", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 2.8469082809423476, + "x": 2150.5432349604253, + "y": 573.0829666398912, + "strokeColor": "#000000", + "backgroundColor": "#326ce5", + "width": 10.870105021919633, + "height": 12.35619348732643, + "seed": 1552067246, + "groupIds": [ + "OLccbKYo1KlzaMmbc8eCy" + ], + "strokeSharpness": "round", + "boundElementIds": [], + "startBinding": null, + "endBinding": null, + "points": [ + [ + 0, + 0 + ], + [ + 2.111755761453853, + -2.382863904791711 + ], + [ + 5.866507849809183, + -5.078685821765166 + ], + [ + 9.820493638708378, + -5.6523924497891525 + ], + [ + 10.870105021919633, + 0.2761385625198566 + ], + [ + 10.328110826230393, + 6.703801037537276 + ], + [ + 4.935978475801803, + 3.994582930784675 + ], + [ + 0, + 0 + ] + ], + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "index": "b4G", + "frameId": null, + "roundness": { + "type": 2 + }, + "boundElements": [], + "updated": 1738919367266, + "link": null, + "locked": false + }, + { + "type": "line", + "version": 1420, + "versionNonce": 1648534834, + "isDeleted": false, + "id": "RQSd9a3twPfAbRFm_CzJO", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 3.774871714878671, + "x": 2139.890624702855, + "y": 579.3137810609763, + "strokeColor": "#000000", + "backgroundColor": "#326ce5", + "width": 11.127731493008197, + "height": 12.782455527966839, + "seed": 812983534, + "groupIds": [ + "OLccbKYo1KlzaMmbc8eCy" + ], + "strokeSharpness": "round", + "boundElementIds": [], + "startBinding": null, + "endBinding": null, + "points": [ + [ + 0, + 0 + ], + [ + 2.8128588416808156, + -2.760799288642105 + ], + [ + 6.312009117564948, + -5.354172377141463 + ], + [ + 10.114430299459066, + -6.359903949021169 + ], + [ + 10.808848502630248, + -0.001068103290659764 + ], + [ + 11.127731493008197, + 6.42255157894567 + ], + [ + 5.495331590557679, + 3.446942831500251 + ], + [ + 0, + 0 + ] + ], + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "index": "b4H", + "frameId": null, + "roundness": { + "type": 2 + }, + "boundElements": [], + "updated": 1738919367266, + "link": null, + "locked": false + }, + { + "type": "line", + "version": 1482, + "versionNonce": 1289432818, + "isDeleted": false, + "id": "QdZAirTXkmGDdQ780ROpg", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 4.759646000521123, + "x": 2128.1836987579486, + "y": 574.5336746711672, + "strokeColor": "#000000", + "backgroundColor": "#326ce5", + "width": 11.01721035427482, + "height": 10.832849705424145, + "seed": 1285445422, + "groupIds": [ + "OLccbKYo1KlzaMmbc8eCy" + ], + "strokeSharpness": "round", + "boundElementIds": [], + "startBinding": null, + "endBinding": null, + "points": [ + [ + 0, + 0 + ], + [ + 2.190993081823027, + -3.088186466084833 + ], + [ + 5.647720630662613, + -5.69653199172979 + ], + [ + 8.700616726471578, + -5.898063937208797 + ], + [ + 10.7935737982968, + -0.8342391113819538 + ], + [ + 11.01721035427482, + 4.934785768215347 + ], + [ + 5.058865261110762, + 3.5897127897257852 + ], + [ + 0, + 0 + ] + ], + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "index": "b4I", + "frameId": null, + "roundness": { + "type": 2 + }, + "boundElements": [], + "updated": 1738919367266, + "link": null, + "locked": false + }, + { + "type": "line", + "version": 1610, + "versionNonce": 1866236082, + "isDeleted": false, + "id": "qiCkenVd8uCEvIM4Kdct2", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 5.645190933495279, + "x": 2124.983643653012, + "y": 563.231536907473, + "strokeColor": "#000000", + "backgroundColor": "#326ce5", + "width": 12.374399655756315, + "height": 11.961544839173278, + "seed": 1768374638, + "groupIds": [ + "OLccbKYo1KlzaMmbc8eCy" + ], + "strokeSharpness": "round", + "boundElementIds": [], + "startBinding": null, + "endBinding": null, + "points": [ + [ + 0, + 0 + ], + [ + 2.190993081823027, + -3.088186466084832 + ], + [ + 5.647720630662615, + -5.696531991729788 + ], + [ + 9.103812625894594, + -6.44187163215937 + ], + [ + 11.063147709877112, + -1.055743471429398 + ], + [ + 12.374399655756315, + 5.519673207013908 + ], + [ + 6.056268342912206, + 3.3811250323293445 + ], + [ + 0, + 0 + ] + ], + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "index": "b4J", + "frameId": null, + "roundness": { + "type": 2 + }, + "boundElements": [], + "updated": 1738919367266, + "link": null, + "locked": false + }, + { + "type": "ellipse", + "version": 429, + "versionNonce": 1695390322, + "isDeleted": false, + "id": "DzO2u1rTAyQsOUNxgo0Va", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2142.6723345979153, + "y": 563.0294418298944, + "strokeColor": "#000000", + "backgroundColor": "#326ce5", + "width": 4.983280538241474, + "height": 4.983280538241474, + "seed": 1243145134, + "groupIds": [ + "OLccbKYo1KlzaMmbc8eCy" + ], + "strokeSharpness": "sharp", + "boundElementIds": [], + "index": "b4K", + "frameId": null, + "roundness": null, + "boundElements": [], + "updated": 1738919367266, + "link": null, + "locked": false + }, + { + "type": "line", + "version": 1801, + "versionNonce": 1239004142, + "isDeleted": false, + "id": "wgPYi9YmysXvHpRinT5t1", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2750.5826343107997, + "y": 616.9378480124864, + "strokeColor": "#000000", + "backgroundColor": "#326ce5", + "width": 82.60981288607078, + "height": 80.85819832940717, + "seed": 1625046510, + "groupIds": [ + "lSnKmzYKD6NossqEl0WFe", + "byOy1CB3rogCwN3ADkG1k", + "5qoIdi2p_LLkQXm8rnCSS", + "wGJwLm1DhtoIzvVC1WaL_", + "Mp9r4WzFw98L-ja13Y0vX" + ], + "strokeSharpness": "sharp", + "boundElements": [], + "updated": 1738919608204, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -34.09851851042071, + 16.31045202352848 + ], + [ + -41.12914088370334, + 51.18705688235002 + ], + [ + -17.576555933206564, + 80.85819832940717 + ], + [ + 21.97069491650818, + 80.68468288234834 + ], + [ + 41.48067200236744, + 48.93135607058538 + ], + [ + 33.74698739175657, + 14.575297552940347 + ], + [ + 0, + 0 + ] + ], + "index": "b4L", + "frameId": null, + "roundness": null + }, + { + "type": "text", + "version": 1081, + "versionNonce": 144246318, + "isDeleted": false, + "id": "Az1fDy-Y_o8RnRGogW-GN", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2736.249150917222, + "y": 676.5150782953614, + "strokeColor": "#fff", + "backgroundColor": "transparent", + "width": 31, + "height": 20, + "seed": 1924812846, + "groupIds": [ + "byOy1CB3rogCwN3ADkG1k", + "5qoIdi2p_LLkQXm8rnCSS", + "wGJwLm1DhtoIzvVC1WaL_", + "Mp9r4WzFw98L-ja13Y0vX" + ], + "strokeSharpness": "sharp", + "boundElements": [ + { + "id": "juSispWUx7eXGlDBQBFR1", + "type": "arrow" + } + ], + "updated": 1738919608204, + "link": null, + "locked": false, + "fontSize": 16, + "fontFamily": 1, + "text": "Pod", + "baseline": 14, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "Pod", + "index": "b4M", + "frameId": null, + "roundness": null, + "autoResize": true, + "lineHeight": 1.25 + }, + { + "type": "arrow", + "version": 2632, + "versionNonce": 1899861938, + "isDeleted": false, + "id": "juSispWUx7eXGlDBQBFR1", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2750.317366049591, + "y": 645.8698298418846, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 0.537609843352584, + "height": 15.674677465420245, + "seed": 1000086126, + "groupIds": [ + "RdaAEQA3PAx6jIyEROk6O", + "WYHP1anz_Zc70s7ykVmSs", + "wGJwLm1DhtoIzvVC1WaL_", + "Mp9r4WzFw98L-ja13Y0vX" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919608399, + "link": null, + "locked": false, + "startBinding": { + "elementId": "FTvmE9Et6cEUI0rx-NVVm", + "focus": 0.06357849557363486, + "gap": 1, + "fixedPoint": null + }, + "endBinding": { + "focus": -0.17817963642461448, + "gap": 14.970570988056524, + "elementId": "Az1fDy-Y_o8RnRGogW-GN" + }, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -0.537609843352584, + 15.674677465420245 + ] + ], + "index": "b4N", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "arrow", + "version": 1653, + "versionNonce": 134302958, + "isDeleted": false, + "id": "aHzoSbSDTFP6-YH1k_IFF", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2751.541961739433, + "y": 666.4239495546747, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 14.8491375479096, + "height": 7.009442601365463, + "seed": 306879662, + "groupIds": [ + "RdaAEQA3PAx6jIyEROk6O", + "WYHP1anz_Zc70s7ykVmSs", + "wGJwLm1DhtoIzvVC1WaL_", + "Mp9r4WzFw98L-ja13Y0vX" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919608204, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 14.8491375479096, + -7.009442601365463 + ] + ], + "index": "b4O", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "arrow", + "version": 1780, + "versionNonce": 1423167858, + "isDeleted": false, + "id": "YZ5sOmrTV39twL5in44_s", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2766.434042154504, + "y": 640.0735843256443, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 0.40054485578189536, + "height": 20.206426639970267, + "seed": 208590574, + "groupIds": [ + "RdaAEQA3PAx6jIyEROk6O", + "WYHP1anz_Zc70s7ykVmSs", + "wGJwLm1DhtoIzvVC1WaL_", + "Mp9r4WzFw98L-ja13Y0vX" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919608399, + "link": null, + "locked": false, + "startBinding": { + "elementId": "FTvmE9Et6cEUI0rx-NVVm", + "focus": -0.9764089313008195, + "gap": 1.4106449883811916, + "fixedPoint": null + }, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 0.40054485578189536, + 20.206426639970267 + ] + ], + "index": "b4P", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "arrow", + "version": 1531, + "versionNonce": 436824430, + "isDeleted": false, + "id": "z_7CM2ASAQ80S-pfGbC83", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2751.541961739433, + "y": 667.7664018595533, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 18.03183682425391, + "height": 11.1557088967141, + "seed": 579979566, + "groupIds": [ + "RdaAEQA3PAx6jIyEROk6O", + "WYHP1anz_Zc70s7ykVmSs", + "wGJwLm1DhtoIzvVC1WaL_", + "Mp9r4WzFw98L-ja13Y0vX" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919608204, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -18.03183682425391, + -11.1557088967141 + ] + ], + "index": "b4Q", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "arrow", + "version": 1622, + "versionNonce": 1694290738, + "isDeleted": false, + "id": "ILdGexgSLZ_DMhqS6uqbI", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2737.1365000507926, + "y": 658.2343438195456, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 1.199099860023125, + "height": 17.841689914912763, + "seed": 1411150702, + "groupIds": [ + "RdaAEQA3PAx6jIyEROk6O", + "WYHP1anz_Zc70s7ykVmSs", + "wGJwLm1DhtoIzvVC1WaL_", + "Mp9r4WzFw98L-ja13Y0vX" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919608399, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": { + "elementId": "FTvmE9Et6cEUI0rx-NVVm", + "focus": 0.8589310764378262, + "gap": 1, + "fixedPoint": null + }, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 1.199099860023125, + -17.841689914912763 + ] + ], + "index": "b4R", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "diamond", + "version": 1063, + "versionNonce": 487876078, + "isDeleted": false, + "id": "FTvmE9Et6cEUI0rx-NVVm", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2736.324580554276, + "y": 631.4175763183779, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 30.434762370313667, + "height": 13.912518920828106, + "seed": 1264047534, + "groupIds": [ + "RdaAEQA3PAx6jIyEROk6O", + "WYHP1anz_Zc70s7ykVmSs", + "wGJwLm1DhtoIzvVC1WaL_", + "Mp9r4WzFw98L-ja13Y0vX" + ], + "strokeSharpness": "sharp", + "boundElements": [ + { + "id": "juSispWUx7eXGlDBQBFR1", + "type": "arrow" + }, + { + "id": "YZ5sOmrTV39twL5in44_s", + "type": "arrow" + }, + { + "id": "ILdGexgSLZ_DMhqS6uqbI", + "type": "arrow" + } + ], + "updated": 1738919608204, + "link": null, + "locked": false, + "index": "b4S", + "frameId": null, + "roundness": null + }, + { + "type": "line", + "version": 719, + "versionNonce": 2001927918, + "isDeleted": false, + "id": "URcOj0nfp_7SRH0AR7mZF", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2759.4456662024254, + "y": 645.0412859871648, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 7.0469897472182765, + "height": 12.86841606013769, + "seed": 23916526, + "groupIds": [ + "WYHP1anz_Zc70s7ykVmSs", + "wGJwLm1DhtoIzvVC1WaL_", + "Mp9r4WzFw98L-ja13Y0vX" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919608204, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -7.0469897472182765, + 12.86841606013769 + ] + ], + "index": "b4T", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "line", + "version": 722, + "versionNonce": 1857089838, + "isDeleted": false, + "id": "a-9SPs53gDPC8wJksAFvq", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2740.755823829369, + "y": 641.6709865428433, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 7.6597714643676795, + "height": 11.949243484413557, + "seed": 1650770478, + "groupIds": [ + "WYHP1anz_Zc70s7ykVmSs", + "wGJwLm1DhtoIzvVC1WaL_", + "Mp9r4WzFw98L-ja13Y0vX" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919608204, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 7.6597714643676795, + 11.949243484413557 + ] + ], + "index": "b4U", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "line", + "version": 770, + "versionNonce": 571906926, + "isDeleted": false, + "id": "wB3PkJYY9LAUH5b9MuVje", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2764.501115368908, + "y": 648.1051945729122, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 7.0469897472182765, + "height": 12.86841606013769, + "seed": 1898466414, + "groupIds": [ + "WYHP1anz_Zc70s7ykVmSs", + "wGJwLm1DhtoIzvVC1WaL_", + "Mp9r4WzFw98L-ja13Y0vX" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919608204, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -7.0469897472182765, + 12.86841606013769 + ] + ], + "index": "b4V", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "line", + "version": 761, + "versionNonce": 667745710, + "isDeleted": false, + "id": "bD5jAmWnWmbm4I77vPA3o", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2739.0706741072077, + "y": 649.1775625779236, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 7.6597714643676795, + "height": 11.949243484413557, + "seed": 1803587246, + "groupIds": [ + "WYHP1anz_Zc70s7ykVmSs", + "wGJwLm1DhtoIzvVC1WaL_", + "Mp9r4WzFw98L-ja13Y0vX" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919608204, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 7.6597714643676795, + 11.949243484413557 + ] + ], + "index": "b4W", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "id": "QyXUBtsd5wlcloWIYwOgN", + "type": "text", + "x": 2715.844291593765, + "y": 703.4611313786407, + "width": 69.82821655273438, + "height": 35, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "dashed", + "roughness": 1, + "opacity": 100, + "groupIds": [ + "MHlYBBISxCwM8T_MRIpvZ", + "Mp9r4WzFw98L-ja13Y0vX" + ], + "frameId": null, + "index": "b4X", + "roundness": null, + "seed": 1846970606, + "version": 556, + "versionNonce": 1694308334, + "isDeleted": false, + "boundElements": [], + "updated": 1738919608204, + "link": null, + "locked": false, + "text": "nginx", + "fontSize": 28, + "fontFamily": 5, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "nginx", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "type": "line", + "version": 1502, + "versionNonce": 635637102, + "isDeleted": false, + "id": "uMl3tG_II7Oc0jaErEhFs", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2833.891738249493, + "y": 786.3170239842252, + "strokeColor": "#000000", + "backgroundColor": "#326ce5", + "width": 82.60981288607078, + "height": 80.85819832940717, + "seed": 410204974, + "groupIds": [ + "lBC5lvHNLK6xaxlRkRrdU", + "SmmVT7w0SvRreTcC8HS9k", + "oGaKesNWCIfJsNDUiF-4b", + "qLL1p89y3D9D9MWgg19k6" + ], + "strokeSharpness": "sharp", + "boundElements": [], + "updated": 1738921705395, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -34.09851851042071, + 16.31045202352848 + ], + [ + -41.12914088370334, + 51.18705688235002 + ], + [ + -17.576555933206564, + 80.85819832940717 + ], + [ + 21.97069491650818, + 80.68468288234834 + ], + [ + 41.48067200236744, + 48.93135607058538 + ], + [ + 33.74698739175657, + 14.575297552940347 + ], + [ + 0, + 0 + ] + ], + "index": "b4Y", + "frameId": null, + "roundness": null + }, + { + "type": "text", + "version": 708, + "versionNonce": 490418094, + "isDeleted": false, + "id": "Wyem4OFUo3ZPZrJ-7oQf1", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2825.2035396883043, + "y": 846.2470845691246, + "strokeColor": "#fff", + "backgroundColor": "transparent", + "width": 23, + "height": 20, + "seed": 822060398, + "groupIds": [ + "SmmVT7w0SvRreTcC8HS9k", + "oGaKesNWCIfJsNDUiF-4b", + "qLL1p89y3D9D9MWgg19k6" + ], + "strokeSharpness": "sharp", + "boundElements": [], + "updated": 1738921705395, + "link": null, + "locked": false, + "fontSize": 16, + "fontFamily": 1, + "text": "RS", + "baseline": 14, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "RS", + "index": "b4Z", + "frameId": null, + "roundness": null, + "autoResize": true, + "lineHeight": 1.25 + }, + { + "type": "rectangle", + "version": 1056, + "versionNonce": 836045294, + "isDeleted": false, + "id": "1UPa0RrwZi3k5WZ5mL2hC", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "dashed", + "roughness": 0, + "opacity": 100, + "angle": 0, + "x": 2826.38540157104, + "y": 803.9952819062578, + "strokeColor": "#fff", + "backgroundColor": "transparent", + "width": 30.72840895114018, + "height": 20.68258294788275, + "seed": 1225050030, + "groupIds": [ + "Usk0tegyT-2r5UdHB_frr", + "oGaKesNWCIfJsNDUiF-4b", + "qLL1p89y3D9D9MWgg19k6" + ], + "strokeSharpness": "sharp", + "boundElements": [], + "updated": 1738921705395, + "link": null, + "locked": false, + "index": "b4a", + "frameId": null, + "roundness": null + }, + { + "type": "rectangle", + "version": 944, + "versionNonce": 1119460398, + "isDeleted": false, + "id": "kCJF6TgEGtpWHIa0xmflE", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "dashed", + "roughness": 0, + "opacity": 100, + "angle": 0, + "x": 2813.384920860942, + "y": 811.0864532026749, + "strokeColor": "#fff", + "backgroundColor": "transparent", + "width": 30.72840895114018, + "height": 20.68258294788275, + "seed": 1621860846, + "groupIds": [ + "Usk0tegyT-2r5UdHB_frr", + "oGaKesNWCIfJsNDUiF-4b", + "qLL1p89y3D9D9MWgg19k6" + ], + "strokeSharpness": "sharp", + "boundElements": [], + "updated": 1738921705395, + "link": null, + "locked": false, + "index": "b4b", + "frameId": null, + "roundness": null + }, + { + "type": "rectangle", + "version": 911, + "versionNonce": 1708254830, + "isDeleted": false, + "id": "h5ufiroQSo4-tglCO_6_j", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2805.111887681789, + "y": 819.6549518525121, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 30.72840895114018, + "height": 20.68258294788275, + "seed": 184366126, + "groupIds": [ + "Usk0tegyT-2r5UdHB_frr", + "oGaKesNWCIfJsNDUiF-4b", + "qLL1p89y3D9D9MWgg19k6" + ], + "strokeSharpness": "sharp", + "boundElements": [], + "updated": 1738921705395, + "link": null, + "locked": false, + "index": "b4c", + "frameId": null, + "roundness": null + }, + { + "id": "sUpp8OcMI05IGF9RhoSnS", + "type": "text", + "x": 2793.783377527087, + "y": 874.1799517839145, + "width": 80.56825256347656, + "height": 35, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "dashed", + "roughness": 1, + "opacity": 100, + "groupIds": [ + "TczFFSVDCQGBjOLwa-mSK", + "qLL1p89y3D9D9MWgg19k6" + ], + "frameId": null, + "index": "b4d", + "roundness": null, + "seed": 300056174, + "version": 682, + "versionNonce": 199682222, + "isDeleted": false, + "boundElements": [], + "updated": 1738921705395, + "link": null, + "locked": false, + "text": "myapp", + "fontSize": 28, + "fontFamily": 5, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "myapp", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "A_BTlibCQ3XD2lrN2dHB2", + "type": "text", + "x": 2202.073100171061, + "y": 529.5541201459421, + "width": 143.2998809814453, + "height": 25, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b4e", + "roundness": null, + "seed": 438599854, + "version": 557, + "versionNonce": 1904308210, + "isDeleted": false, + "boundElements": [], + "updated": 1738919367266, + "link": null, + "locked": false, + "text": "Virtual Cluster", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "Virtual Cluster", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "G25zwUu4YJwZCyf4cuTcq", + "type": "arrow", + "x": 2542.7585521628766, + "y": 455.14176182432016, + "width": 153.06261638520436, + "height": 111.04805411464531, + "angle": 0, + "strokeColor": "#000000", + "backgroundColor": "#b2f2bb", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b4h", + "roundness": { + "type": 2 + }, + "seed": 1913706350, + "version": 900, + "versionNonce": 1092627374, + "isDeleted": false, + "boundElements": [], + "updated": 1738921697243, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + -65.53566533447429, + 8.548130261018343 + ], + [ + -153.06261638520436, + 111.04805411464531 + ] + ], + "lastCommittedPoint": null, + "startBinding": { + "elementId": "oBIzx8_19aSsMwlniiYpj", + "focus": -0.3769545276366951, + "gap": 1, + "fixedPoint": null + }, + "endBinding": { + "elementId": "66UYWeA69MojJiixYPSWG", + "focus": -0.40580808552164727, + "gap": 1, + "fixedPoint": null + }, + "startArrowhead": null, + "endArrowhead": "arrow", + "elbowed": false, + "fixedSegments": null, + "startIsSpecial": null, + "endIsSpecial": null + }, + { + "type": "line", + "version": 1869, + "versionNonce": 1611479090, + "isDeleted": false, + "id": "4vgvR1hIkctMAVBb8qw02", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2535.7364924629173, + "y": 625.3990433606718, + "strokeColor": "#000000", + "backgroundColor": "#326ce5", + "width": 63.51032705773329, + "height": 62.16368784519552, + "seed": 1497964274, + "groupIds": [ + "u_E9kCxYC3xcNTrAlKlPB", + "d0KD5C-8cTGp6zK0bN4hp", + "hbvwlffffEWRlDxm7NZ9P", + "YLCW4u1bv5K40N6NotoDK", + "i1mIgH61J9jZLNRONA4_e" + ], + "strokeSharpness": "sharp", + "boundElements": [], + "updated": 1738919566053, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -26.214900955745236, + 12.539456346455745 + ], + [ + -31.62003517342468, + 39.35254917238771 + ], + [ + -13.512835544198586, + 62.16368784519552 + ], + [ + 16.89104443024821, + 62.0302893734247 + ], + [ + 31.89029188430862, + 37.61836903936719 + ], + [ + 25.944644244861255, + 11.20547162874769 + ], + [ + 0, + 0 + ] + ], + "index": "b4m", + "frameId": null, + "roundness": null + }, + { + "type": "text", + "version": 1147, + "versionNonce": 2044420594, + "isDeleted": false, + "id": "V-W26aKABrO6jU8tphHoc", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2524.7169272756887, + "y": 671.2019479826391, + "strokeColor": "#fff", + "backgroundColor": "transparent", + "width": 23.832763566538762, + "height": 15.375976494541138, + "seed": 409759922, + "groupIds": [ + "d0KD5C-8cTGp6zK0bN4hp", + "hbvwlffffEWRlDxm7NZ9P", + "YLCW4u1bv5K40N6NotoDK", + "i1mIgH61J9jZLNRONA4_e" + ], + "strokeSharpness": "sharp", + "boundElements": [ + { + "id": "fk7rryVrkqcjdobFRz3x2", + "type": "arrow" + }, + { + "id": "JTm6kRvL0HPrwC9bqXCAV", + "type": "arrow" + }, + { + "id": "3mhJM-nlANC9v2sIqdMHI", + "type": "arrow" + } + ], + "updated": 1738919566053, + "link": null, + "locked": false, + "fontSize": 12.30078119563291, + "fontFamily": 1, + "text": "Pod", + "baseline": 14, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "Pod", + "index": "b4n", + "frameId": null, + "roundness": null, + "autoResize": true, + "lineHeight": 1.25 + }, + { + "type": "arrow", + "version": 2901, + "versionNonce": 1165252526, + "isDeleted": false, + "id": "JTm6kRvL0HPrwC9bqXCAV", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2535.4720752912144, + "y": 647.8684827641441, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 0.40225524548577596, + "height": 9.333465218495007, + "seed": 1119849074, + "groupIds": [ + "ddKgtHbzp6XUHWyOu_RJE", + "KDzYCGjClW6mG2OyIbxee", + "YLCW4u1bv5K40N6NotoDK", + "i1mIgH61J9jZLNRONA4_e" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919566184, + "link": null, + "locked": false, + "startBinding": { + "elementId": "QqLXgAiP6GUhYVx4FmyUD", + "focus": 0.06357849557367726, + "gap": 1.0000000000000995, + "fixedPoint": null + }, + "endBinding": { + "elementId": "V-W26aKABrO6jU8tphHoc", + "focus": -0.20397278528526486, + "gap": 14, + "fixedPoint": null + }, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -0.40225524548577596, + 9.333465218495007 + ] + ], + "index": "b4o", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "arrow", + "version": 1874, + "versionNonce": 1219047918, + "isDeleted": false, + "id": "3mhJM-nlANC9v2sIqdMHI", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2523.049649422649, + "y": 666.7647712137252, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 24.84037233497258, + "height": 8.709722381016613, + "seed": 1862888498, + "groupIds": [ + "ddKgtHbzp6XUHWyOu_RJE", + "KDzYCGjClW6mG2OyIbxee", + "YLCW4u1bv5K40N6NotoDK", + "i1mIgH61J9jZLNRONA4_e" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919566184, + "link": null, + "locked": false, + "startBinding": { + "elementId": "V-W26aKABrO6jU8tphHoc", + "focus": -1.423199494785452, + "gap": 4.437176768913901, + "fixedPoint": null + }, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 24.84037233497258, + -8.709722381016613 + ] + ], + "index": "b4p", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "arrow", + "version": 1939, + "versionNonce": 1019790382, + "isDeleted": false, + "id": "73GqParxz74Ek3Kmymktx", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2547.923036183427, + "y": 643.1857702474226, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 0.3079384143747853, + "height": 15.534677052742838, + "seed": 1127290354, + "groupIds": [ + "ddKgtHbzp6XUHWyOu_RJE", + "KDzYCGjClW6mG2OyIbxee", + "YLCW4u1bv5K40N6NotoDK", + "i1mIgH61J9jZLNRONA4_e" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919566184, + "link": null, + "locked": false, + "startBinding": { + "elementId": "QqLXgAiP6GUhYVx4FmyUD", + "focus": -0.9764089313008901, + "gap": 1.0845022091747483, + "fixedPoint": null + }, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 0.3079384143747853, + 15.534677052742838 + ] + ], + "index": "b4q", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "arrow", + "version": 1546, + "versionNonce": 186238066, + "isDeleted": false, + "id": "fk7rryVrkqcjdobFRz3x2", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2535.094688621429, + "y": 663.6226271175717, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 12.483521317006476, + "height": 7.723147185489771, + "seed": 272467890, + "groupIds": [ + "ddKgtHbzp6XUHWyOu_RJE", + "KDzYCGjClW6mG2OyIbxee", + "YLCW4u1bv5K40N6NotoDK", + "i1mIgH61J9jZLNRONA4_e" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919566053, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -12.483521317006476, + -7.723147185489771 + ] + ], + "index": "b4r", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "arrow", + "version": 1783, + "versionNonce": 599527022, + "isDeleted": false, + "id": "GVWFSoKcnH6vvqHIKM9Kl", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2525.3991202467014, + "y": 657.147740802485, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 0.9052907672248693, + "height": 13.47003505725354, + "seed": 1851113842, + "groupIds": [ + "ddKgtHbzp6XUHWyOu_RJE", + "KDzYCGjClW6mG2OyIbxee", + "YLCW4u1bv5K40N6NotoDK", + "i1mIgH61J9jZLNRONA4_e" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919566184, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": { + "elementId": "QqLXgAiP6GUhYVx4FmyUD", + "focus": 0.8589310764378386, + "gap": 1, + "fixedPoint": null + }, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 0.9052907672248693, + -13.47003505725354 + ] + ], + "index": "b4s", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "diamond", + "version": 1127, + "versionNonce": 1371852786, + "isDeleted": false, + "id": "QqLXgAiP6GUhYVx4FmyUD", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2524.7749174920064, + "y": 636.5310414646084, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 23.398209541144404, + "height": 10.69592819532559, + "seed": 1489027890, + "groupIds": [ + "ddKgtHbzp6XUHWyOu_RJE", + "KDzYCGjClW6mG2OyIbxee", + "YLCW4u1bv5K40N6NotoDK", + "i1mIgH61J9jZLNRONA4_e" + ], + "strokeSharpness": "sharp", + "boundElements": [ + { + "id": "JTm6kRvL0HPrwC9bqXCAV", + "type": "arrow" + }, + { + "id": "73GqParxz74Ek3Kmymktx", + "type": "arrow" + }, + { + "id": "GVWFSoKcnH6vvqHIKM9Kl", + "type": "arrow" + } + ], + "updated": 1738919566053, + "link": null, + "locked": false, + "index": "b4t", + "frameId": null, + "roundness": null + }, + { + "type": "line", + "version": 787, + "versionNonce": 466372338, + "isDeleted": false, + "id": "pd7XJWWp6p_iCfKhMLGdf", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2542.5503809647166, + "y": 647.0049334463945, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 5.417717435525031, + "height": 9.89322314313264, + "seed": 1239780594, + "groupIds": [ + "KDzYCGjClW6mG2OyIbxee", + "YLCW4u1bv5K40N6NotoDK", + "i1mIgH61J9jZLNRONA4_e" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919566053, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -5.417717435525031, + 9.89322314313264 + ] + ], + "index": "b4u", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "line", + "version": 796, + "versionNonce": 1883936946, + "isDeleted": false, + "id": "b2VCI48vLwIZOe-F2_Lfo", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2528.1816521139776, + "y": 644.4138511946218, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 5.888823299483719, + "height": 9.186564347194585, + "seed": 1464540850, + "groupIds": [ + "KDzYCGjClW6mG2OyIbxee", + "YLCW4u1bv5K40N6NotoDK", + "i1mIgH61J9jZLNRONA4_e" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919566053, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 5.888823299483719, + 9.186564347194585 + ] + ], + "index": "b4v", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "line", + "version": 821, + "versionNonce": 1285075570, + "isDeleted": false, + "id": "mY6t2T_g3OhPyZNEj-3Ll", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2546.4370043423764, + "y": 649.360462766188, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 5.417717435525031, + "height": 9.89322314313264, + "seed": 1301837938, + "groupIds": [ + "KDzYCGjClW6mG2OyIbxee", + "YLCW4u1bv5K40N6NotoDK", + "i1mIgH61J9jZLNRONA4_e" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919566053, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -5.417717435525031, + 9.89322314313264 + ] + ], + "index": "b4w", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "line", + "version": 829, + "versionNonce": 863867954, + "isDeleted": false, + "id": "Zfuxs055qev1khDEqEVaX", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2526.886110988091, + "y": 650.1848980281158, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 5.888823299483719, + "height": 9.186564347194585, + "seed": 1284807218, + "groupIds": [ + "KDzYCGjClW6mG2OyIbxee", + "YLCW4u1bv5K40N6NotoDK", + "i1mIgH61J9jZLNRONA4_e" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919566053, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 5.888823299483719, + 9.186564347194585 + ] + ], + "index": "b4x", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "id": "jFtZEnv-aAk2jDWlaSdIH", + "type": "text", + "x": 2487.831956903941, + "y": 693.0485917404272, + "width": 101.448486328125, + "height": 23.174856381589525, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "dashed", + "roughness": 1, + "opacity": 100, + "groupIds": [ + "i1mIgH61J9jZLNRONA4_e" + ], + "frameId": null, + "index": "b4y", + "roundness": null, + "seed": 1663468530, + "version": 536, + "versionNonce": 920665586, + "isDeleted": false, + "boundElements": [], + "updated": 1738919566053, + "link": null, + "locked": false, + "text": "K3s worker", + "fontSize": 18.53988510527162, + "fontFamily": 5, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "K3s worker", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "type": "line", + "version": 1955, + "versionNonce": 1477141230, + "isDeleted": false, + "id": "zwzr08DPVomDX_BJh74bX", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2490.1657706456235, + "y": 743.5994666771028, + "strokeColor": "#000000", + "backgroundColor": "#326ce5", + "width": 61.79783398630826, + "height": 60.487505566487464, + "seed": 253626354, + "groupIds": [ + "HLS8EoAWjmhWv8LeiSRnb", + "xr9Y1swjFekdQhi4q0p3U", + "esX4YlKXPTZfFNzZUoRRy", + "YJ0zjWPTRNDKEaiTTMti_", + "ys1Y8J4XnnP4Dhj-5aIbR" + ], + "strokeSharpness": "sharp", + "boundElements": [], + "updated": 1738921689282, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -25.50804211349746, + 12.201342324570428 + ], + [ + -30.76743223999179, + 38.29144665689656 + ], + [ + -13.148475316235814, + 60.487505566487464 + ], + [ + 16.435594145294747, + 60.35770405239627 + ], + [ + 31.03040174631648, + 36.60402697371124 + ], + [ + 25.245072607172734, + 10.903327183658684 + ], + [ + 0, + 0 + ] + ], + "index": "b4z", + "frameId": null, + "roundness": null + }, + { + "type": "text", + "version": 1231, + "versionNonce": 1656542510, + "isDeleted": false, + "id": "lmNlZ0oWkzUVi9sq3Ga0G", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2479.443337120402, + "y": 788.1673413370141, + "strokeColor": "#fff", + "backgroundColor": "transparent", + "width": 23.190136699832387, + "height": 14.961378516020893, + "seed": 1975269810, + "groupIds": [ + "xr9Y1swjFekdQhi4q0p3U", + "esX4YlKXPTZfFNzZUoRRy", + "YJ0zjWPTRNDKEaiTTMti_", + "ys1Y8J4XnnP4Dhj-5aIbR" + ], + "strokeSharpness": "sharp", + "boundElements": [ + { + "id": "7Obg4eN-HoGOr4gRq7ZfU", + "type": "arrow" + }, + { + "id": "5mEZGI80sKeMjRBB264NU", + "type": "arrow" + }, + { + "id": "n9ASUwgCn04OX7yImQtEa", + "type": "arrow" + } + ], + "updated": 1738921689282, + "link": null, + "locked": false, + "fontSize": 11.969102812816717, + "fontFamily": 1, + "text": "Pod", + "baseline": 14, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "Pod", + "index": "b50", + "frameId": null, + "roundness": null, + "autoResize": true, + "lineHeight": 1.25 + }, + { + "type": "arrow", + "version": 3159, + "versionNonce": 1648266034, + "isDeleted": false, + "id": "5mEZGI80sKeMjRBB264NU", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2489.918937918803, + "y": 765.2204611923875, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 0.6002235391735575, + "height": 13.926892412400885, + "seed": 1429091186, + "groupIds": [ + "yl9g_CVTjR0gKra90uaNa", + "YFVm4GEUSfxAnHnouNHx5", + "YJ0zjWPTRNDKEaiTTMti_", + "ys1Y8J4XnnP4Dhj-5aIbR" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738921689823, + "link": null, + "locked": false, + "startBinding": { + "elementId": "-ZT-Jav43MM_H89vqZ-hg", + "focus": 0.06357849557371804, + "gap": 1, + "fixedPoint": null + }, + "endBinding": { + "elementId": "lmNlZ0oWkzUVi9sq3Ga0G", + "focus": -0.20397278528526486, + "gap": 14, + "fixedPoint": null + }, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -0.6002235391735575, + 13.926892412400885 + ] + ], + "index": "b51", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "arrow", + "version": 2046, + "versionNonce": 1886016754, + "isDeleted": false, + "id": "n9ASUwgCn04OX7yImQtEa", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2477.8210157634744, + "y": 783.8498086452997, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 24.170576295714447, + "height": 8.4748733427182, + "seed": 1874523442, + "groupIds": [ + "yl9g_CVTjR0gKra90uaNa", + "YFVm4GEUSfxAnHnouNHx5", + "YJ0zjWPTRNDKEaiTTMti_", + "ys1Y8J4XnnP4Dhj-5aIbR" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738921689823, + "link": null, + "locked": false, + "startBinding": { + "elementId": "lmNlZ0oWkzUVi9sq3Ga0G", + "focus": -1.4231994947854578, + "gap": 4.317532691714405, + "fixedPoint": null + }, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 24.170576295714447, + -8.4748733427182 + ] + ], + "index": "b52", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "arrow", + "version": 2112, + "versionNonce": 1643570866, + "isDeleted": false, + "id": "MQEESnGjbRRxQm9LK4YY8", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2502.023716283698, + "y": 760.9065920885029, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 0.29963515999955664, + "height": 15.115799870840258, + "seed": 650739442, + "groupIds": [ + "yl9g_CVTjR0gKra90uaNa", + "YFVm4GEUSfxAnHnouNHx5", + "YJ0zjWPTRNDKEaiTTMti_", + "ys1Y8J4XnnP4Dhj-5aIbR" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738921689823, + "link": null, + "locked": false, + "startBinding": { + "elementId": "-ZT-Jav43MM_H89vqZ-hg", + "focus": -0.9764089313008418, + "gap": 1.0552596811449924, + "fixedPoint": null + }, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 0.29963515999955664, + 15.115799870840258 + ] + ], + "index": "b53", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "arrow", + "version": 1630, + "versionNonce": 1257413294, + "isDeleted": false, + "id": "7Obg4eN-HoGOr4gRq7ZfU", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2489.541272409108, + "y": 780.792389352865, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 12.146915527794798, + "height": 7.514900170280352, + "seed": 383832242, + "groupIds": [ + "yl9g_CVTjR0gKra90uaNa", + "YFVm4GEUSfxAnHnouNHx5", + "YJ0zjWPTRNDKEaiTTMti_", + "ys1Y8J4XnnP4Dhj-5aIbR" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738921689282, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -12.146915527794798, + -7.514900170280352 + ] + ], + "index": "b54", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "arrow", + "version": 1956, + "versionNonce": 529219698, + "isDeleted": false, + "id": "j7kcBE12QEv3_YfKteG4U", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2480.1071354335636, + "y": 774.4920919348368, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 0.9044500670142694, + "height": 13.457526080336136, + "seed": 866642546, + "groupIds": [ + "yl9g_CVTjR0gKra90uaNa", + "YFVm4GEUSfxAnHnouNHx5", + "YJ0zjWPTRNDKEaiTTMti_", + "ys1Y8J4XnnP4Dhj-5aIbR" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738921689823, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": { + "elementId": "-ZT-Jav43MM_H89vqZ-hg", + "focus": 0.8589310764378043, + "gap": 1, + "fixedPoint": null + }, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 0.9044500670142694, + -13.457526080336136 + ] + ], + "index": "b55", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "diamond", + "version": 1208, + "versionNonce": 1943160622, + "isDeleted": false, + "id": "-ZT-Jav43MM_H89vqZ-hg", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2479.499763687967, + "y": 754.4313014767819, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 22.767299993370603, + "height": 10.407523084290592, + "seed": 1676004402, + "groupIds": [ + "yl9g_CVTjR0gKra90uaNa", + "YFVm4GEUSfxAnHnouNHx5", + "YJ0zjWPTRNDKEaiTTMti_", + "ys1Y8J4XnnP4Dhj-5aIbR" + ], + "strokeSharpness": "sharp", + "boundElements": [ + { + "id": "5mEZGI80sKeMjRBB264NU", + "type": "arrow" + }, + { + "id": "MQEESnGjbRRxQm9LK4YY8", + "type": "arrow" + }, + { + "id": "j7kcBE12QEv3_YfKteG4U", + "type": "arrow" + } + ], + "updated": 1738921689282, + "link": null, + "locked": false, + "index": "b56", + "frameId": null, + "roundness": null + }, + { + "type": "line", + "version": 873, + "versionNonce": 678838318, + "isDeleted": false, + "id": "Vko2G_nqg4tROOmIvon3T", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2496.7959293921317, + "y": 764.6227753341367, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 5.271634050332552, + "height": 9.626462178868115, + "seed": 495023602, + "groupIds": [ + "YFVm4GEUSfxAnHnouNHx5", + "YJ0zjWPTRNDKEaiTTMti_", + "ys1Y8J4XnnP4Dhj-5aIbR" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738921689282, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -5.271634050332552, + 9.626462178868115 + ] + ], + "index": "b57", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "line", + "version": 876, + "versionNonce": 878316142, + "isDeleted": false, + "id": "M6KVnJo04W0GMs9p8fGwl", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2482.8146390847287, + "y": 762.1015590491951, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 5.730037011231024, + "height": 8.938857737520383, + "seed": 25290674, + "groupIds": [ + "YFVm4GEUSfxAnHnouNHx5", + "YJ0zjWPTRNDKEaiTTMti_", + "ys1Y8J4XnnP4Dhj-5aIbR" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738921689282, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 5.730037011231024, + 8.938857737520383 + ] + ], + "index": "b58", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "line", + "version": 907, + "versionNonce": 499813550, + "isDeleted": false, + "id": "A4lGMcl8AyFWoYkdpNZSj", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2500.5777538195443, + "y": 766.9147901386292, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 5.271634050332552, + "height": 9.626462178868115, + "seed": 2014191986, + "groupIds": [ + "YFVm4GEUSfxAnHnouNHx5", + "YJ0zjWPTRNDKEaiTTMti_", + "ys1Y8J4XnnP4Dhj-5aIbR" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738921689282, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -5.271634050332552, + 9.626462178868115 + ] + ], + "index": "b59", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "line", + "version": 915, + "versionNonce": 40945390, + "isDeleted": false, + "id": "HJ1bgEOnXnhpqtcMYveWg", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2481.554030942258, + "y": 767.7169953202016, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 5.730037011231024, + "height": 8.938857737520383, + "seed": 1282220850, + "groupIds": [ + "YFVm4GEUSfxAnHnouNHx5", + "YJ0zjWPTRNDKEaiTTMti_", + "ys1Y8J4XnnP4Dhj-5aIbR" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738921689282, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 5.730037011231024, + 8.938857737520383 + ] + ], + "index": "b5A", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "id": "CwFEt3eFK-MqrCPMP1ACO", + "type": "text", + "x": 2443.552933445561, + "y": 809.4249119817777, + "width": 98.97918701171875, + "height": 22.549969330564494, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "dashed", + "roughness": 1, + "opacity": 100, + "groupIds": [ + "ys1Y8J4XnnP4Dhj-5aIbR" + ], + "frameId": null, + "index": "b5B", + "roundness": null, + "seed": 1225125106, + "version": 622, + "versionNonce": 1658173742, + "isDeleted": false, + "boundElements": [], + "updated": 1738921689282, + "link": null, + "locked": false, + "text": "K3s worker", + "fontSize": 18.039975464451594, + "fontFamily": 5, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "K3s worker", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "type": "line", + "version": 1977, + "versionNonce": 1769284014, + "isDeleted": false, + "id": "kaxDCp8o8XAlrsxCHhi6_", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2306.949365414953, + "y": 767.0938486158916, + "strokeColor": "#000000", + "backgroundColor": "#326ce5", + "width": 65.93348392166075, + "height": 64.53546537914208, + "seed": 1694772846, + "groupIds": [ + "11KIUVm-yVEa_jpih4kM0", + "IMHkCn-3Pb3geCpYXSQ1A", + "wOjbmzZcr0adaMUOlkCNc", + "-YDj0YsKJwjLjK204lZC8", + "Dxo0GMlq3T7B1AoYJMv3B" + ], + "strokeSharpness": "sharp", + "boundElements": [], + "updated": 1738921684150, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -27.21509761872806, + 13.017883574333377 + ], + [ + -32.826457952486436, + 40.853996323705815 + ], + [ + -14.028400834395919, + 64.53546537914208 + ], + [ + 17.535501042994873, + 64.39697725601086 + ], + [ + 33.10702596917432, + 39.05365072300008 + ], + [ + 26.934529602040133, + 11.633002343021317 + ], + [ + 0, + 0 + ] + ], + "index": "b5C", + "frameId": null, + "roundness": null + }, + { + "type": "text", + "version": 1253, + "versionNonce": 100711406, + "isDeleted": false, + "id": "B44WTASfE9i34AN24Njog", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2295.5093625405334, + "y": 814.644305610273, + "strokeColor": "#fff", + "backgroundColor": "transparent", + "width": 24.742072765499767, + "height": 15.962627590645011, + "seed": 2106601646, + "groupIds": [ + "IMHkCn-3Pb3geCpYXSQ1A", + "wOjbmzZcr0adaMUOlkCNc", + "-YDj0YsKJwjLjK204lZC8", + "Dxo0GMlq3T7B1AoYJMv3B" + ], + "strokeSharpness": "sharp", + "boundElements": [ + { + "id": "WcMq3NZk6zjCozTaDBFTn", + "type": "arrow" + }, + { + "id": "1Ys7q9weFt3OIA1yZT3Qu", + "type": "arrow" + }, + { + "id": "HZK0g3paDFbDbL72MIfp1", + "type": "arrow" + } + ], + "updated": 1738921684150, + "link": null, + "locked": false, + "fontSize": 12.770102072516009, + "fontFamily": 1, + "text": "Pod", + "baseline": 14, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "Pod", + "index": "b5D", + "frameId": null, + "roundness": null, + "autoResize": true, + "lineHeight": 1.25 + }, + { + "type": "arrow", + "version": 3212, + "versionNonce": 1217138610, + "isDeleted": false, + "id": "1Ys7q9weFt3OIA1yZT3Qu", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2306.6860140873196, + "y": 790.1617686753503, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 0.6403918473626462, + "height": 14.858911352057698, + "seed": 568453870, + "groupIds": [ + "PuD_ELRc78eNqmtqEmgoY", + "ANSooGwOy3C4w3AD0D7NK", + "-YDj0YsKJwjLjK204lZC8", + "Dxo0GMlq3T7B1AoYJMv3B" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738921684368, + "link": null, + "locked": false, + "startBinding": { + "elementId": "91RPjkE2WoheRIMAjZZLI", + "focus": 0.06357849557370736, + "gap": 1, + "fixedPoint": null + }, + "endBinding": { + "elementId": "B44WTASfE9i34AN24Njog", + "focus": -0.20397278528526486, + "gap": 14, + "fixedPoint": null + }, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -0.6403918473626462, + 14.858911352057698 + ] + ], + "index": "b5E", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "arrow", + "version": 2081, + "versionNonce": 731072882, + "isDeleted": false, + "id": "HZK0g3paDFbDbL72MIfp1", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2293.7784717923814, + "y": 810.0378339275684, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 25.78812558258672, + "height": 9.042030913316847, + "seed": 1082285358, + "groupIds": [ + "PuD_ELRc78eNqmtqEmgoY", + "ANSooGwOy3C4w3AD0D7NK", + "-YDj0YsKJwjLjK204lZC8", + "Dxo0GMlq3T7B1AoYJMv3B" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738921684368, + "link": null, + "locked": false, + "startBinding": { + "elementId": "B44WTASfE9i34AN24Njog", + "focus": -1.4231994947854656, + "gap": 4.60647168270458, + "fixedPoint": null + }, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 25.78812558258672, + -9.042030913316847 + ] + ], + "index": "b5F", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "arrow", + "version": 2147, + "versionNonce": 621628210, + "isDeleted": false, + "id": "3Ab6_fI9tmHJo86hhRPhg", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2319.600871424778, + "y": 785.5592057560067, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 0.31968741830938757, + "height": 16.12738316957678, + "seed": 249202542, + "groupIds": [ + "PuD_ELRc78eNqmtqEmgoY", + "ANSooGwOy3C4w3AD0D7NK", + "-YDj0YsKJwjLjK204lZC8", + "Dxo0GMlq3T7B1AoYJMv3B" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738921684368, + "link": null, + "locked": false, + "startBinding": { + "elementId": "91RPjkE2WoheRIMAjZZLI", + "focus": -0.9764089313008789, + "gap": 1.1258800306070933, + "fixedPoint": null + }, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 0.31968741830938757, + 16.12738316957678 + ] + ], + "index": "b5G", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "arrow", + "version": 1652, + "versionNonce": 524972398, + "isDeleted": false, + "id": "WcMq3NZk6zjCozTaDBFTn", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2306.2830743529476, + "y": 806.7758052648132, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 12.959814413998265, + "height": 8.017814178727415, + "seed": 758344110, + "groupIds": [ + "PuD_ELRc78eNqmtqEmgoY", + "ANSooGwOy3C4w3AD0D7NK", + "-YDj0YsKJwjLjK204lZC8", + "Dxo0GMlq3T7B1AoYJMv3B" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738921684150, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -12.959814413998265, + -8.017814178727415 + ] + ], + "index": "b5H", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "arrow", + "version": 1991, + "versionNonce": 1801524466, + "isDeleted": false, + "id": "OVDt2OLP97WXU0pPKOuC3", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2296.2175837286377, + "y": 800.0538777842279, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 0.9649778981677991, + "height": 14.358133970193206, + "seed": 1253442542, + "groupIds": [ + "PuD_ELRc78eNqmtqEmgoY", + "ANSooGwOy3C4w3AD0D7NK", + "-YDj0YsKJwjLjK204lZC8", + "Dxo0GMlq3T7B1AoYJMv3B" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738921684368, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": { + "elementId": "91RPjkE2WoheRIMAjZZLI", + "focus": 0.8589310764378086, + "gap": 1, + "fixedPoint": null + }, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 0.9649778981677991, + -14.358133970193206 + ] + ], + "index": "b5I", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "diamond", + "version": 1230, + "versionNonce": 2075356654, + "isDeleted": false, + "id": "91RPjkE2WoheRIMAjZZLI", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2295.569565300814, + "y": 778.6505741439252, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 24.290938876354677, + "height": 11.104017919049076, + "seed": 1231771182, + "groupIds": [ + "PuD_ELRc78eNqmtqEmgoY", + "ANSooGwOy3C4w3AD0D7NK", + "-YDj0YsKJwjLjK204lZC8", + "Dxo0GMlq3T7B1AoYJMv3B" + ], + "strokeSharpness": "sharp", + "boundElements": [ + { + "id": "1Ys7q9weFt3OIA1yZT3Qu", + "type": "arrow" + }, + { + "id": "3Ab6_fI9tmHJo86hhRPhg", + "type": "arrow" + }, + { + "id": "OVDt2OLP97WXU0pPKOuC3", + "type": "arrow" + } + ], + "updated": 1738921684150, + "link": null, + "locked": false, + "index": "b5J", + "frameId": null, + "roundness": null + }, + { + "type": "line", + "version": 895, + "versionNonce": 707659502, + "isDeleted": false, + "id": "lgcfMmRphrrFzfZtO9N1B", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2314.023229285454, + "y": 789.5240843362209, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 5.624423648496949, + "height": 10.270686662472665, + "seed": 1648124014, + "groupIds": [ + "ANSooGwOy3C4w3AD0D7NK", + "-YDj0YsKJwjLjK204lZC8", + "Dxo0GMlq3T7B1AoYJMv3B" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738921684150, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -5.624423648496949, + 10.270686662472665 + ] + ], + "index": "b5K", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "line", + "version": 898, + "versionNonce": 552270126, + "isDeleted": false, + "id": "MveeJC6-bVdz8qaH5FM_i", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2299.1062796090064, + "y": 786.8341425912878, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 6.113503965757543, + "height": 9.537066186581749, + "seed": 1223828142, + "groupIds": [ + "ANSooGwOy3C4w3AD0D7NK", + "-YDj0YsKJwjLjK204lZC8", + "Dxo0GMlq3T7B1AoYJMv3B" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738921684150, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 6.113503965757543, + 9.537066186581749 + ] + ], + "index": "b5L", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "line", + "version": 929, + "versionNonce": 265266030, + "isDeleted": false, + "id": "Thuo6tqAGc2p_Siu5hNo2", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2318.058141902854, + "y": 791.969485922524, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 5.624423648496949, + "height": 10.270686662472665, + "seed": 1345690862, + "groupIds": [ + "ANSooGwOy3C4w3AD0D7NK", + "-YDj0YsKJwjLjK204lZC8", + "Dxo0GMlq3T7B1AoYJMv3B" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738921684150, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -5.624423648496949, + 10.270686662472665 + ] + ], + "index": "b5M", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "line", + "version": 937, + "versionNonce": 153421230, + "isDeleted": false, + "id": "maNxYEnETvZB6yAuxV7pZ", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2297.76130873654, + "y": 792.82537647773, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 6.113503965757543, + "height": 9.537066186581749, + "seed": 227528494, + "groupIds": [ + "ANSooGwOy3C4w3AD0D7NK", + "-YDj0YsKJwjLjK204lZC8", + "Dxo0GMlq3T7B1AoYJMv3B" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738921684150, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 6.113503965757543, + 9.537066186581749 + ] + ], + "index": "b5N", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "id": "AmOWceVqM0IkFQo6Vl0Nd", + "type": "text", + "x": 2257.2170923913673, + "y": 837.3244806570332, + "width": 104.99879455566406, + "height": 24.059063957162763, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "dashed", + "roughness": 1, + "opacity": 100, + "groupIds": [ + "Dxo0GMlq3T7B1AoYJMv3B" + ], + "frameId": null, + "index": "b5O", + "roundness": null, + "seed": 2104080750, + "version": 644, + "versionNonce": 1846812654, + "isDeleted": false, + "boundElements": [], + "updated": 1738921684150, + "link": null, + "locked": false, + "text": "K3s worker", + "fontSize": 19.247251165730212, + "fontFamily": 5, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "K3s worker", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "ejBEEPTWSujQv328VAwd5", + "type": "line", + "x": 2362.2557925938218, + "y": 662.4250335894174, + "width": 133.07133066894949, + "height": 1.4785703407660549, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "dotted", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b5P", + "roundness": null, + "seed": 563548978, + "version": 25, + "versionNonce": 1130511342, + "isDeleted": false, + "boundElements": null, + "updated": 1738919585100, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 133.07133066894949, + -1.4785703407660549 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "OIRYambwuUjOuzB2M4Oxs", + "type": "line", + "x": 2345.9915188453947, + "y": 696.4321514270378, + "width": 119.41488705927986, + "height": 61.24124092125123, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "dotted", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b5Q", + "roundness": null, + "seed": 1038693298, + "version": 54, + "versionNonce": 228131506, + "isDeleted": false, + "boundElements": null, + "updated": 1738921686954, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 119.41488705927986, + 61.24124092125123 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "qyfSvMTYJ74zOykOYTKsN", + "type": "line", + "x": 2307.1599973748466, + "y": 761.6810286921035, + "width": 1.0898777301367772, + "height": 50.891248535888394, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "dotted", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b5R", + "roundness": null, + "seed": 392724594, + "version": 74, + "versionNonce": 1291416882, + "isDeleted": false, + "boundElements": null, + "updated": 1738921682016, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + -1.0898777301367772, + -50.891248535888394 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "rxFeBuUweL3-iSiMIuFfE", + "type": "text", + "x": 929.5664681776333, + "y": 1034.2321353358775, + "width": 225.1200714111328, + "height": 45, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b5f", + "roundness": null, + "seed": 889849970, + "version": 190, + "versionNonce": 2022248302, + "isDeleted": false, + "boundElements": [], + "updated": 1738919669727, + "link": null, + "locked": false, + "text": "Shared Mode", + "fontSize": 36, + "fontFamily": 5, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "Shared Mode", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "OlfG6MystTPzoNH9m-F19", + "type": "text", + "x": 2489.3464064773348, + "y": 1004.8413129498579, + "width": 220.83607482910156, + "height": 45, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b5g", + "roundness": null, + "seed": 1885506542, + "version": 291, + "versionNonce": 1019296626, + "isDeleted": false, + "boundElements": [], + "updated": 1738921734990, + "link": null, + "locked": false, + "text": "Virtual Mode", + "fontSize": 36, + "fontFamily": 5, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "Virtual Mode", + "autoResize": true, + "lineHeight": 1.25 + } + ], + "appState": { + "gridSize": 20, + "gridStep": 5, + "gridModeEnabled": false, + "viewBackgroundColor": "#ffffff" + }, + "files": {} +} \ No newline at end of file diff --git a/docs/images/architecture/shared-mode.png b/docs/images/architecture/shared-mode.png new file mode 100644 index 00000000..fa2d8ddf Binary files /dev/null and b/docs/images/architecture/shared-mode.png differ diff --git a/docs/images/architecture/virtual-mode.excalidraw b/docs/images/architecture/virtual-mode.excalidraw new file mode 100644 index 00000000..b7742282 --- /dev/null +++ b/docs/images/architecture/virtual-mode.excalidraw @@ -0,0 +1,14941 @@ +{ + "type": "excalidraw", + "version": 2, + "source": "https://excalidraw.com", + "elements": [ + { + "id": "qcw9KgbUejvqEmk0HAzgK", + "type": "rectangle", + "x": 400, + "y": 190.52142965923406, + "width": 1306.92124690794, + "height": 803.9927298696344, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "Zx", + "roundness": { + "type": 3 + }, + "seed": 186493999, + "version": 223, + "versionNonce": 814324270, + "isDeleted": false, + "boundElements": [], + "updated": 1738919329038, + "link": null, + "locked": false + }, + { + "id": "O6voKkj0_42RduueG1Ykr", + "type": "rectangle", + "x": 494.30229759276324, + "y": 512.3911479183313, + "width": 625.435254144063, + "height": 434.6996801852355, + "angle": 0, + "strokeColor": "#000000", + "backgroundColor": "#a5d8ff", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "dotted", + "roughness": 1, + "opacity": 20, + "groupIds": [], + "frameId": null, + "index": "Zy", + "roundness": { + "type": 3 + }, + "seed": 311664000, + "version": 396, + "versionNonce": 706144178, + "isDeleted": false, + "boundElements": [], + "updated": 1738919329038, + "link": null, + "locked": false + }, + { + "id": "_uoL8aE0gwLJc50iQ7DFB", + "type": "rectangle", + "x": 442.55233566594916, + "y": 452.51260803611444, + "width": 1230.1705235174013, + "height": 513.0639082458389, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "dashed", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "Zz", + "roundness": null, + "seed": 106290560, + "version": 204, + "versionNonce": 1425155182, + "isDeleted": false, + "boundElements": [], + "updated": 1738919329038, + "link": null, + "locked": false + }, + { + "id": "3ayqq52wsniI7ZScvRxFK", + "type": "rectangle", + "x": 508.348715830041, + "y": 526.4411250744192, + "width": 356.3354521246316, + "height": 408.08541405144564, + "angle": 0, + "strokeColor": "transparent", + "backgroundColor": "#b2f2bb", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "dashed", + "roughness": 1, + "opacity": 50, + "groupIds": [], + "frameId": null, + "index": "ZzV", + "roundness": { + "type": 3 + }, + "seed": 516648320, + "version": 592, + "versionNonce": 1225249262, + "isDeleted": false, + "boundElements": [ + { + "id": "HDocOXT_UZJKEfjrc2x90", + "type": "arrow" + } + ], + "updated": 1738919329040, + "link": null, + "locked": false + }, + { + "id": "dc-wZMyg9mSviX9Ze3OAf", + "type": "text", + "x": 539.257398165612, + "y": 135.76061144124364, + "width": 221.3440704345703, + "height": 45, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "aP", + "roundness": null, + "seed": 1602747776, + "version": 122, + "versionNonce": 1750034094, + "isDeleted": false, + "boundElements": [], + "updated": 1738919329038, + "link": null, + "locked": false, + "text": "Host Cluster", + "fontSize": 36, + "fontFamily": 5, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "Host Cluster", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "type": "line", + "version": 899, + "versionNonce": 331490098, + "isDeleted": false, + "id": "t_UrAIMxQd4KKD6i27I6h", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 452.7271768725529, + "y": 121.92666026968067, + "strokeColor": "#000000", + "backgroundColor": "#326ce5", + "width": 141.1345207909862, + "height": 138.14197943992207, + "seed": 537066112, + "groupIds": [ + "hCkivSuiPNqJt3KQ4XmQx" + ], + "strokeSharpness": "sharp", + "boundElementIds": [], + "startBinding": null, + "endBinding": null, + "points": [ + [ + 0, + 0 + ], + [ + -58.25552560308792, + 27.865549500756803 + ], + [ + -70.26697418104422, + 87.4503947098219 + ], + [ + -30.0286214448907, + 138.14197943992207 + ], + [ + 37.53577680611333, + 137.84553742395653 + ], + [ + 70.86754660994197, + 83.59664850227031 + ], + [ + 57.65495317419008, + 24.901129341101825 + ], + [ + 0, + 0 + ] + ], + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "index": "aQ", + "frameId": null, + "roundness": null, + "boundElements": [], + "updated": 1738919329038, + "link": null, + "locked": false + }, + { + "type": "line", + "version": 3321, + "versionNonce": 457859310, + "isDeleted": false, + "id": "1SExkZe77IKM91ZDl2HzB", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0.010125045471368388, + "x": 441.7223121735814, + "y": 156.1988390878119, + "strokeColor": "#000000", + "backgroundColor": "#ffff", + "width": 106.04040672794991, + "height": 105.61610706708336, + "seed": 1254075008, + "groupIds": [ + "hCkivSuiPNqJt3KQ4XmQx" + ], + "strokeSharpness": "round", + "boundElementIds": [], + "startBinding": null, + "endBinding": null, + "points": [ + [ + 0, + 0 + ], + [ + 7.560549639916194, + -2.432481274079295 + ], + [ + 8.260640800764907, + -6.319351744325669 + ], + [ + 7.265162864319282, + -17.377969213774225 + ], + [ + 12.287975594132497, + -17.79248566628771 + ], + [ + 12.06183575356039, + -6.171187074095729 + ], + [ + 13.938548022945847, + -2.5765254766629058 + ], + [ + 22.108528016458962, + -0.8911077706957935 + ], + [ + 33.492223733543035, + 3.4474169310756086 + ], + [ + 41.56330060047886, + 9.037092947258257 + ], + [ + 44.656298311390664, + 8.353010214198859 + ], + [ + 52.01360647580834, + 2.5923135147513654 + ], + [ + 54.337930199393, + 4.707569334079753 + ], + [ + 47.01722555818147, + 10.603282362420547 + ], + [ + 45.80930929238161, + 13.74466228133801 + ], + [ + 50.80569021000849, + 23.1778031266833 + ], + [ + 53.8620843977143, + 33.99711161533315 + ], + [ + 54.200666987370354, + 44.62739724353235 + ], + [ + 56.52499071095499, + 46.61663782256035 + ], + [ + 65.97785057891947, + 47.66076409933526 + ], + [ + 65.4562503732332, + 51.46822457412627 + ], + [ + 56.00339050526867, + 49.686009032734695 + ], + [ + 53.05680688718108, + 50.38809394297988 + ], + [ + 48.582026175240465, + 59.20916076400885 + ], + [ + 42.19471137578334, + 66.88708933374122 + ], + [ + 33.15364114388698, + 74.11496347382923 + ], + [ + 34.288350363274766, + 77.18433468400364 + ], + [ + 40.19981936105316, + 85.66336013850295 + ], + [ + 36.25578973560041, + 87.82362140079564 + ], + [ + 31.982328401293195, + 78.46248926419358 + ], + [ + 28.331126961488835, + 75.84317248366355 + ], + [ + 17.862519324556295, + 78.6875164790157 + ], + [ + 3.5962961549951795, + 78.40848273263624 + ], + [ + -5.389868792092051, + 74.61902443503092 + ], + [ + -8.052775105332755, + 76.6262671912447 + ], + [ + -12.829534883723326, + 85.51934272101663 + ], + [ + -16.10555021066551, + 83.27807166138794 + ], + [ + -10.477758517734125, + 75.01507233311793 + ], + [ + -10.011063596856882, + 71.85569023701471 + ], + [ + -17.038940052419996, + 66.46403816987552 + ], + [ + -23.49031101748772, + 57.57096264010348 + ], + [ + -26.299631423552707, + 51.4412213083476 + ], + [ + -30.01488902896755, + 51.063175587446345 + ], + [ + -39.49520153933658, + 53.655489102197755 + ], + [ + -40.06255614903045, + 49.568994881027166 + ], + [ + -30.545640115455438, + 48.3628490095804 + ], + [ + -27.873582921413178, + 46.031567064022724 + ], + [ + -27.830878811006112, + 33.42604255016222 + ], + [ + -25.356073936463183, + 23.77287509476861 + ], + [ + -20.790801181040955, + 15.625889797251343 + ], + [ + -22.932107288595358, + 12.475508789740982 + ], + [ + -32.092138970911364, + 7.605919860989265 + ], + [ + -29.767815247326663, + 3.7624550318266357 + ], + [ + -21.577776929971183, + 10.306246438855302 + ], + [ + -17.286013834060906, + 10.693293248349423 + ], + [ + -9.965309192849324, + 4.806581308601501 + ], + [ + 0, + 0 + ] + ], + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "index": "aR", + "frameId": null, + "roundness": { + "type": 2 + }, + "boundElements": [], + "updated": 1738919329038, + "link": null, + "locked": false + }, + { + "type": "line", + "version": 834, + "versionNonce": 1572531442, + "isDeleted": false, + "id": "4Ek5WEFr3KxFMY1ZHz40L", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 429.57906086667884, + "y": 171.32210747160022, + "strokeColor": "#000000", + "backgroundColor": "#326ce5", + "width": 21.557705003492888, + "height": 21.557705003492885, + "seed": 1516657280, + "groupIds": [ + "hCkivSuiPNqJt3KQ4XmQx" + ], + "strokeSharpness": "round", + "boundElementIds": [], + "startBinding": null, + "endBinding": null, + "points": [ + [ + 0, + 0 + ], + [ + 6.4174670964155, + -5.81198099131309 + ], + [ + 13.02185071020231, + -9.844784128142559 + ], + [ + 20.747733428217128, + -10.437843412970434 + ], + [ + 21.557705003492888, + 0.2965296424139247 + ], + [ + 20.124678370312722, + 11.11986159052245 + ], + [ + 9.719658903308929, + 6.108510633726992 + ], + [ + 0, + 0 + ] + ], + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "index": "aS", + "frameId": null, + "roundness": { + "type": 2 + }, + "boundElements": [], + "updated": 1738919329038, + "link": null, + "locked": false + }, + { + "type": "line", + "version": 952, + "versionNonce": 560730926, + "isDeleted": false, + "id": "WqusEwi9_yt3NQ2km1e8J", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0.9881310661508964, + "x": 452.4495007124243, + "y": 168.7601620195593, + "strokeColor": "#000000", + "backgroundColor": "#326ce5", + "width": 21.849656050086754, + "height": 22.28721404724548, + "seed": 565643904, + "groupIds": [ + "hCkivSuiPNqJt3KQ4XmQx" + ], + "strokeSharpness": "round", + "boundElementIds": [], + "startBinding": null, + "endBinding": null, + "points": [ + [ + 0, + 0 + ], + [ + 6.307158811343217, + -5.7120802600132725 + ], + [ + 12.798021277385752, + -9.675564522063281 + ], + [ + 19.588707167072652, + -10.78719797872464 + ], + [ + 21.849656050086754, + -0.4228378175566051 + ], + [ + 20.936752849362975, + 11.500016068520841 + ], + [ + 9.552590044364505, + 6.003512926340452 + ], + [ + 0, + 0 + ] + ], + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "index": "aT", + "frameId": null, + "roundness": { + "type": 2 + }, + "boundElements": [], + "updated": 1738919329038, + "link": null, + "locked": false + }, + { + "type": "line", + "version": 958, + "versionNonce": 158629554, + "isDeleted": false, + "id": "72AvcltpSQ-v7ejxCttLL", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 1.880863085334429, + "x": 469.20305306508027, + "y": 185.21255061781395, + "strokeColor": "#000000", + "backgroundColor": "#326ce5", + "width": 21.479159973687498, + "height": 22.534979750262238, + "seed": 460438144, + "groupIds": [ + "hCkivSuiPNqJt3KQ4XmQx" + ], + "strokeSharpness": "round", + "boundElementIds": [], + "startBinding": null, + "endBinding": null, + "points": [ + [ + 0, + 0 + ], + [ + 6.394085194479206, + -5.7908051648456125 + ], + [ + 12.821883813152631, + -9.760046630725103 + ], + [ + 20.67213951224835, + -10.399813357273743 + ], + [ + 21.479159973687498, + 0.29544924310435966 + ], + [ + 19.380563342165882, + 12.135166392988497 + ], + [ + 9.574674364814067, + 6.794079156258463 + ], + [ + 0, + 0 + ] + ], + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "index": "aU", + "frameId": null, + "roundness": { + "type": 2 + }, + "boundElements": [], + "updated": 1738919329038, + "link": null, + "locked": false + }, + { + "type": "line", + "version": 1137, + "versionNonce": 1427996014, + "isDeleted": false, + "id": "QBdlPEdSOSPFAsGUAaEX_", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 2.8469082809423476, + "x": 465.80767793955584, + "y": 208.09017500946504, + "strokeColor": "#000000", + "backgroundColor": "#326ce5", + "width": 20.573332264113013, + "height": 23.385981425370197, + "seed": 1784048256, + "groupIds": [ + "hCkivSuiPNqJt3KQ4XmQx" + ], + "strokeSharpness": "round", + "boundElementIds": [], + "startBinding": null, + "endBinding": null, + "points": [ + [ + 0, + 0 + ], + [ + 3.9968199804359084, + -4.5099335061239545 + ], + [ + 11.103261190280325, + -9.612187799981596 + ], + [ + 18.586782576556548, + -10.698015127009295 + ], + [ + 20.573332264113013, + 0.5226343615079706 + ], + [ + 19.547525553814435, + 12.6879662983609 + ], + [ + 9.342092374121995, + 7.560357671417819 + ], + [ + 0, + 0 + ] + ], + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "index": "aV", + "frameId": null, + "roundness": { + "type": 2 + }, + "boundElements": [], + "updated": 1738919329038, + "link": null, + "locked": false + }, + { + "type": "line", + "version": 1269, + "versionNonce": 865458290, + "isDeleted": false, + "id": "OaTtN_WCR4YecnAxkG2RA", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 3.774871714878671, + "x": 445.6459877013146, + "y": 219.88294197008946, + "strokeColor": "#000000", + "backgroundColor": "#326ce5", + "width": 21.060929668098346, + "height": 24.192747374364252, + "seed": 1495603840, + "groupIds": [ + "hCkivSuiPNqJt3KQ4XmQx" + ], + "strokeSharpness": "round", + "boundElementIds": [], + "startBinding": null, + "endBinding": null, + "points": [ + [ + 0, + 0 + ], + [ + 5.323764530816631, + -5.225233883686096 + ], + [ + 11.946440312022089, + -10.13358813849016 + ], + [ + 19.14310255451752, + -12.037088588123884 + ], + [ + 20.457394955122687, + -0.0020215484438121066 + ], + [ + 21.060929668098346, + 12.155658786240366 + ], + [ + 10.400753487297417, + 6.523865227139614 + ], + [ + 0, + 0 + ] + ], + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "index": "aW", + "frameId": null, + "roundness": { + "type": 2 + }, + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false + }, + { + "type": "line", + "version": 1332, + "versionNonce": 1537712046, + "isDeleted": false, + "id": "Z81_nMrMWCWVAT7gScq8w", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 4.759646000521123, + "x": 423.4888441621996, + "y": 210.8358613009474, + "strokeColor": "#000000", + "backgroundColor": "#326ce5", + "width": 20.851751550243478, + "height": 20.502820893402166, + "seed": 1520290432, + "groupIds": [ + "hCkivSuiPNqJt3KQ4XmQx" + ], + "strokeSharpness": "round", + "boundElementIds": [], + "startBinding": null, + "endBinding": null, + "points": [ + [ + 0, + 0 + ], + [ + 4.146788698896836, + -5.844864068211204 + ], + [ + 10.689172996507862, + -10.781555944738223 + ], + [ + 16.467244654531225, + -11.162985900365323 + ], + [ + 20.428485246628206, + -1.5789248026187297 + ], + [ + 20.851751550243478, + 9.339834993036844 + ], + [ + 9.574674364814067, + 6.794079156258462 + ], + [ + 0, + 0 + ] + ], + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "index": "aX", + "frameId": null, + "roundness": { + "type": 2 + }, + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false + }, + { + "type": "line", + "version": 1460, + "versionNonce": 1273362994, + "isDeleted": false, + "id": "79Hkv14365pGeHuCfBvmy", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 5.645190933495279, + "x": 417.43225162656506, + "y": 189.44484115547692, + "strokeColor": "#000000", + "backgroundColor": "#326ce5", + "width": 23.42043937693637, + "height": 22.639048645082866, + "seed": 159414912, + "groupIds": [ + "hCkivSuiPNqJt3KQ4XmQx" + ], + "strokeSharpness": "round", + "boundElementIds": [], + "startBinding": null, + "endBinding": null, + "points": [ + [ + 0, + 0 + ], + [ + 4.146788698896836, + -5.844864068211203 + ], + [ + 10.689172996507862, + -10.781555944738221 + ], + [ + 17.230354411946674, + -12.192224934711268 + ], + [ + 20.93869500462914, + -1.9981556001148353 + ], + [ + 23.42043937693637, + 10.446823710371596 + ], + [ + 11.462411876252354, + 6.399295000034613 + ], + [ + 0, + 0 + ] + ], + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "index": "aY", + "frameId": null, + "roundness": { + "type": 2 + }, + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false + }, + { + "type": "ellipse", + "version": 279, + "versionNonce": 1228110318, + "isDeleted": false, + "id": "iT-d-TSdB3DXQUXAhBtQS", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 450.9107980980906, + "y": 189.06234538643167, + "strokeColor": "#000000", + "backgroundColor": "#326ce5", + "width": 9.43161874441803, + "height": 9.43161874441803, + "seed": 680340096, + "groupIds": [ + "hCkivSuiPNqJt3KQ4XmQx" + ], + "strokeSharpness": "sharp", + "boundElementIds": [], + "index": "aZ", + "frameId": null, + "roundness": null, + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false + }, + { + "id": "nivHBVnDpVwN-TndKXAZW", + "type": "text", + "x": 939.3519701633606, + "y": 216.41992385430342, + "width": 304.84912109375, + "height": 35, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "ab", + "roundness": null, + "seed": 310254208, + "version": 359, + "versionNonce": 827057138, + "isDeleted": false, + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "text": "k3k-system namespace", + "fontSize": 28, + "fontFamily": 5, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "k3k-system namespace", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "xTu4L6YTvS5ibAOYadtTp", + "type": "rectangle", + "x": 902.387711644208, + "y": 260.2127450995846, + "width": 379.992577576889, + "height": 165.59987816580406, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "dashed", + "roughness": 1, + "opacity": 100, + "groupIds": [ + "ovaQoLIrsCZ-Ba_FUm33z" + ], + "frameId": null, + "index": "ab8", + "roundness": null, + "seed": 520604288, + "version": 730, + "versionNonce": 1856512562, + "isDeleted": false, + "boundElements": [ + { + "id": "HDocOXT_UZJKEfjrc2x90", + "type": "arrow" + } + ], + "updated": 1738919329040, + "link": null, + "locked": false + }, + { + "type": "line", + "version": 1598, + "versionNonce": 1305384370, + "isDeleted": false, + "id": "T3kwjMO3VSha1Nlz_xrMt", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 1091.4406366538587, + "y": 279.58955481778196, + "strokeColor": "#000000", + "backgroundColor": "#326ce5", + "width": 95.91694595296573, + "height": 93.88317402088744, + "seed": 1623731584, + "groupIds": [ + "_Rq0bT9FyqdmO8d_HyTVH", + "Biy2lkjCIp76BFuvPmb9J", + "0bAlRVbHZhSVeWM6lTxlD", + "wU2M2qdT2o2AStg-OmW1J", + "oKvzaLD7vxd3CNXD5Ngtw", + "ovaQoLIrsCZ-Ba_FUm33z" + ], + "strokeSharpness": "sharp", + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -39.59125003164969, + 18.937807635114627 + ], + [ + -47.754394368072326, + 59.432481408072505 + ], + [ + -20.407860841056557, + 93.88317402088744 + ], + [ + 25.509826051320665, + 93.68170798221598 + ], + [ + 48.162551584893414, + 56.813422905343806 + ], + [ + 39.18309281482855, + 16.92314724840031 + ], + [ + 0, + 0 + ] + ], + "index": "abG", + "frameId": null, + "roundness": null + }, + { + "type": "text", + "version": 871, + "versionNonce": 944086062, + "isDeleted": false, + "id": "l7JM8oP0_K51jxS8Mvn4k", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 1074.7982559977536, + "y": 348.763733737069, + "strokeColor": "#fff", + "backgroundColor": "transparent", + "width": 35.55351257324219, + "height": 23.221683381669717, + "seed": 1114013056, + "groupIds": [ + "Biy2lkjCIp76BFuvPmb9J", + "0bAlRVbHZhSVeWM6lTxlD", + "wU2M2qdT2o2AStg-OmW1J", + "oKvzaLD7vxd3CNXD5Ngtw", + "ovaQoLIrsCZ-Ba_FUm33z" + ], + "strokeSharpness": "sharp", + "boundElements": [ + { + "id": "WPJZGiua10MRJDFXeNjI4", + "type": "arrow" + }, + { + "id": "Hh4dA7_bK3xVrSpR2ljFD", + "type": "arrow" + }, + { + "id": "g8qTzFw3Bndj169_MuKfP", + "type": "arrow" + } + ], + "updated": 1738919329040, + "link": null, + "locked": false, + "fontSize": 18.577346705335774, + "fontFamily": 1, + "text": "Pod", + "baseline": 14, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "originalText": "Pod", + "index": "abO", + "frameId": null, + "roundness": null, + "autoResize": true, + "lineHeight": 1.25 + }, + { + "type": "arrow", + "version": 2001, + "versionNonce": 1806610606, + "isDeleted": false, + "id": "g8qTzFw3Bndj169_MuKfP", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 1091.0575254703322, + "y": 313.1476850724994, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 0.9316120817336468, + "height": 21.616048664569576, + "seed": 2075839872, + "groupIds": [ + "wwu1HtQZrT7QzYflY5v5Y", + "YVqeULGBaW3udJwfCtbWA", + "wU2M2qdT2o2AStg-OmW1J", + "oKvzaLD7vxd3CNXD5Ngtw", + "ovaQoLIrsCZ-Ba_FUm33z" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329043, + "link": null, + "locked": false, + "startBinding": { + "elementId": "1wFQh0a4E1oLFHUP0JRdl", + "focus": 0.06357849557367089, + "gap": 1.1610841690837006, + "fixedPoint": null + }, + "endBinding": { + "elementId": "l7JM8oP0_K51jxS8Mvn4k", + "focus": -0.1943889965203955, + "gap": 14, + "fixedPoint": null + }, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -0.9316120817336468, + 21.616048664569576 + ] + ], + "index": "abV", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "arrow", + "version": 1271, + "versionNonce": 1948695986, + "isDeleted": false, + "id": "WPJZGiua10MRJDFXeNjI4", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 1094.4587922747146, + "y": 336.1481730066223, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 15.336802800918715, + "height": 7.239641937092449, + "seed": 637869440, + "groupIds": [ + "wwu1HtQZrT7QzYflY5v5Y", + "YVqeULGBaW3udJwfCtbWA", + "wU2M2qdT2o2AStg-OmW1J", + "oKvzaLD7vxd3CNXD5Ngtw", + "ovaQoLIrsCZ-Ba_FUm33z" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329042, + "link": null, + "locked": false, + "startBinding": { + "elementId": "l7JM8oP0_K51jxS8Mvn4k", + "focus": -1.166727627308337, + "gap": 12.615560730446674, + "fixedPoint": null + }, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 15.336802800918715, + -7.239641937092449 + ] + ], + "index": "abd", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "arrow", + "version": 1348, + "versionNonce": 1884584242, + "isDeleted": false, + "id": "ag_WDSSlo272BtALRfB7B", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 1109.8454553588697, + "y": 306.4520919910791, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 0.46506629105565866, + "height": 23.461362085416425, + "seed": 847605120, + "groupIds": [ + "wwu1HtQZrT7QzYflY5v5Y", + "YVqeULGBaW3udJwfCtbWA", + "wU2M2qdT2o2AStg-OmW1J", + "oKvzaLD7vxd3CNXD5Ngtw", + "ovaQoLIrsCZ-Ba_FUm33z" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329043, + "link": null, + "locked": false, + "startBinding": { + "elementId": "1wFQh0a4E1oLFHUP0JRdl", + "focus": -0.9764089313008506, + "gap": 1.6378775642064625, + "fixedPoint": null + }, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 0.46506629105565866, + 23.461362085416425 + ] + ], + "index": "abl", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "arrow", + "version": 1130, + "versionNonce": 1425190510, + "isDeleted": false, + "id": "Hh4dA7_bK3xVrSpR2ljFD", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 1090.4713476070474, + "y": 337.3170077721088, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 18.85333133897294, + "height": 11.663940739968485, + "seed": 1786494336, + "groupIds": [ + "wwu1HtQZrT7QzYflY5v5Y", + "YVqeULGBaW3udJwfCtbWA", + "wU2M2qdT2o2AStg-OmW1J", + "oKvzaLD7vxd3CNXD5Ngtw", + "ovaQoLIrsCZ-Ba_FUm33z" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329042, + "link": null, + "locked": false, + "startBinding": { + "elementId": "l7JM8oP0_K51jxS8Mvn4k", + "focus": 0.9622870809937719, + "gap": 11.446725964960166, + "fixedPoint": null + }, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -18.85333133897294, + -11.663940739968485 + ] + ], + "index": "abt", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "arrow", + "version": 1192, + "versionNonce": 1211132654, + "isDeleted": false, + "id": "xvYvsoLR-aVt10Wc37SzT", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 1075.8285430291933, + "y": 327.53826233798105, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 1.40380467403088, + "height": 20.887541171656892, + "seed": 1864895872, + "groupIds": [ + "wwu1HtQZrT7QzYflY5v5Y", + "YVqeULGBaW3udJwfCtbWA", + "wU2M2qdT2o2AStg-OmW1J", + "oKvzaLD7vxd3CNXD5Ngtw", + "ovaQoLIrsCZ-Ba_FUm33z" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329043, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": { + "elementId": "1wFQh0a4E1oLFHUP0JRdl", + "focus": 0.8589310764378145, + "gap": 1, + "fixedPoint": null + }, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 1.40380467403088, + -20.887541171656892 + ] + ], + "index": "ac", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "diamond", + "version": 843, + "versionNonce": 242411694, + "isDeleted": false, + "id": "1wFQh0a4E1oLFHUP0JRdl", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 1074.8858361552175, + "y": 296.4017381263824, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 35.337320777988985, + "height": 16.153605471047978, + "seed": 969563520, + "groupIds": [ + "wwu1HtQZrT7QzYflY5v5Y", + "YVqeULGBaW3udJwfCtbWA", + "wU2M2qdT2o2AStg-OmW1J", + "oKvzaLD7vxd3CNXD5Ngtw", + "ovaQoLIrsCZ-Ba_FUm33z" + ], + "strokeSharpness": "sharp", + "boundElements": [ + { + "id": "g8qTzFw3Bndj169_MuKfP", + "type": "arrow" + }, + { + "id": "ag_WDSSlo272BtALRfB7B", + "type": "arrow" + }, + { + "id": "xvYvsoLR-aVt10Wc37SzT", + "type": "arrow" + } + ], + "updated": 1738919329040, + "link": null, + "locked": false, + "index": "acG", + "frameId": null, + "roundness": null + }, + { + "type": "line", + "version": 517, + "versionNonce": 1424305330, + "isDeleted": false, + "id": "NbJ7aDWMIzgONlP45-vlI", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 1101.731362673307, + "y": 312.2200117470007, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 8.182148235188777, + "height": 14.941314168605555, + "seed": 463646080, + "groupIds": [ + "YVqeULGBaW3udJwfCtbWA", + "wU2M2qdT2o2AStg-OmW1J", + "oKvzaLD7vxd3CNXD5Ngtw", + "ovaQoLIrsCZ-Ba_FUm33z" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -8.182148235188777, + 14.941314168605555 + ] + ], + "index": "acV", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "line", + "version": 519, + "versionNonce": 953593710, + "isDeleted": false, + "id": "cxnHWBdWQZLLXn1jJ8ndE", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 1080.0308825712852, + "y": 308.30681041712785, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 8.893639386074742, + "height": 13.874077442276572, + "seed": 1039203712, + "groupIds": [ + "YVqeULGBaW3udJwfCtbWA", + "wU2M2qdT2o2AStg-OmW1J", + "oKvzaLD7vxd3CNXD5Ngtw", + "ovaQoLIrsCZ-Ba_FUm33z" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 8.893639386074742, + 13.874077442276572 + ] + ], + "index": "acl", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "line", + "version": 551, + "versionNonce": 1757464178, + "isDeleted": false, + "id": "CxCT9MaUQROA-T9GBhUUC", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 1107.6011646681166, + "y": 315.77746750143075, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 8.182148235188777, + "height": 14.941314168605555, + "seed": 569724288, + "groupIds": [ + "YVqeULGBaW3udJwfCtbWA", + "wU2M2qdT2o2AStg-OmW1J", + "oKvzaLD7vxd3CNXD5Ngtw", + "ovaQoLIrsCZ-Ba_FUm33z" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -8.182148235188777, + 14.941314168605555 + ] + ], + "index": "ad", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "line", + "version": 558, + "versionNonce": 359305646, + "isDeleted": false, + "id": "-U0Qm5pxn-YRpWYPH_R0s", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 1078.0742819063487, + "y": 317.02257701548115, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 8.893639386074742, + "height": 13.874077442276572, + "seed": 552574336, + "groupIds": [ + "YVqeULGBaW3udJwfCtbWA", + "wU2M2qdT2o2AStg-OmW1J", + "oKvzaLD7vxd3CNXD5Ngtw", + "ovaQoLIrsCZ-Ba_FUm33z" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 8.893639386074742, + 13.874077442276572 + ] + ], + "index": "adV", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "id": "DFdxTfi9wJhaB7h8V-qDe", + "type": "text", + "x": 994.6903390415662, + "y": 386.4555130424055, + "width": 193.90875244140625, + "height": 35, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "dashed", + "roughness": 1, + "opacity": 100, + "groupIds": [ + "oKvzaLD7vxd3CNXD5Ngtw", + "ovaQoLIrsCZ-Ba_FUm33z" + ], + "frameId": null, + "index": "ae", + "roundness": null, + "seed": 905714304, + "version": 194, + "versionNonce": 964896818, + "isDeleted": false, + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "text": "K3k Controller", + "fontSize": 28, + "fontFamily": 5, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "originalText": "K3k Controller", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "KItJ2RwOqq1eKPHLbX-7a", + "type": "text", + "x": 448.7780102224841, + "y": 368.47694270163964, + "width": 296.4451599121094, + "height": 70, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b06", + "roundness": null, + "seed": 456805760, + "version": 439, + "versionNonce": 1908943854, + "isDeleted": false, + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "text": "k3k-my-virtual-cluster\nnamespace", + "fontSize": 28, + "fontFamily": 5, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "k3k-my-virtual-cluster\nnamespace", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "type": "line", + "version": 1664, + "versionNonce": 252924402, + "isDeleted": false, + "id": "gLMCSJslDWNXBQmX584Ke", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 608.810294103606, + "y": 571.7227597450657, + "strokeColor": "#000000", + "backgroundColor": "#326ce5", + "width": 95.91694595296573, + "height": 93.88317402088744, + "seed": 1906957696, + "groupIds": [ + "TZH2DmgQ6UX0wWzOp6cjW", + "OHPPW2PytZWveQN4gTwBU", + "8HuPTiUFICUpB-yA5wd3f", + "F7sbb28uZp5auYrRhD91V", + "QSv-mgxeSjGXAseRULooA" + ], + "strokeSharpness": "sharp", + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -39.59125003164969, + 18.937807635114627 + ], + [ + -47.754394368072326, + 59.432481408072505 + ], + [ + -20.407860841056557, + 93.88317402088744 + ], + [ + 25.509826051320665, + 93.68170798221598 + ], + [ + 48.162551584893414, + 56.813422905343806 + ], + [ + 39.18309281482855, + 16.92314724840031 + ], + [ + 0, + 0 + ] + ], + "index": "b08", + "frameId": null, + "roundness": null + }, + { + "type": "text", + "version": 940, + "versionNonce": 1024999278, + "isDeleted": false, + "id": "4tcJljIkG_OoBn1bQz1R4", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 592.1679134475008, + "y": 640.8969386643527, + "strokeColor": "#fff", + "backgroundColor": "transparent", + "width": 35.99360924158806, + "height": 23.221683381669717, + "seed": 731000192, + "groupIds": [ + "OHPPW2PytZWveQN4gTwBU", + "8HuPTiUFICUpB-yA5wd3f", + "F7sbb28uZp5auYrRhD91V", + "QSv-mgxeSjGXAseRULooA" + ], + "strokeSharpness": "sharp", + "boundElements": [ + { + "id": "RA5KCrFamreS7cNpTiRdY", + "type": "arrow" + }, + { + "id": "MtF--zcpFSKCtT6PbzmSC", + "type": "arrow" + }, + { + "id": "7cprIOD6hU68JV5bShmzH", + "type": "arrow" + } + ], + "updated": 1738919329040, + "link": null, + "locked": false, + "fontSize": 18.577346705335774, + "fontFamily": 1, + "text": "Pod", + "baseline": 14, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "Pod", + "index": "b09", + "frameId": null, + "roundness": null, + "autoResize": true, + "lineHeight": 1.25 + }, + { + "type": "arrow", + "version": 2232, + "versionNonce": 1401489262, + "isDeleted": false, + "id": "MtF--zcpFSKCtT6PbzmSC", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 608.4271829200793, + "y": 605.2808899997832, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 0.9316120817335332, + "height": 21.616048664569462, + "seed": 602963328, + "groupIds": [ + "sELBEUwAws-Nsueayzx-o", + "6eoEQTdvSBimRXnZNDu-E", + "F7sbb28uZp5auYrRhD91V", + "QSv-mgxeSjGXAseRULooA" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329044, + "link": null, + "locked": false, + "startBinding": { + "elementId": "pgq6x1ZSuWtyo0alD46vz", + "focus": 0.0635784955736886, + "gap": 1.1610841690838987, + "fixedPoint": null + }, + "endBinding": { + "elementId": "4tcJljIkG_OoBn1bQz1R4", + "focus": -0.20397278528525298, + "gap": 14, + "fixedPoint": null + }, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -0.9316120817335332, + 21.616048664569462 + ] + ], + "index": "b0A", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "arrow", + "version": 1430, + "versionNonce": 434721970, + "isDeleted": false, + "id": "7cprIOD6hU68JV5bShmzH", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 589.6498946129703, + "y": 634.1956592969706, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 37.51535791241045, + "height": 13.153923300156952, + "seed": 470076800, + "groupIds": [ + "sELBEUwAws-Nsueayzx-o", + "6eoEQTdvSBimRXnZNDu-E", + "F7sbb28uZp5auYrRhD91V", + "QSv-mgxeSjGXAseRULooA" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329044, + "link": null, + "locked": false, + "startBinding": { + "elementId": "4tcJljIkG_OoBn1bQz1R4", + "focus": -1.4231994947854592, + "gap": 6.701279367382085, + "fixedPoint": null + }, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 37.51535791241045, + -13.153923300156952 + ] + ], + "index": "b0B", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "arrow", + "version": 1496, + "versionNonce": 1258286706, + "isDeleted": false, + "id": "XD0yZfZ-WZ4C7irCKDsOE", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 627.2151128086172, + "y": 598.5852969183628, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 0.46506629105565866, + "height": 23.461362085416425, + "seed": 755965312, + "groupIds": [ + "sELBEUwAws-Nsueayzx-o", + "6eoEQTdvSBimRXnZNDu-E", + "F7sbb28uZp5auYrRhD91V", + "QSv-mgxeSjGXAseRULooA" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329044, + "link": null, + "locked": false, + "startBinding": { + "elementId": "pgq6x1ZSuWtyo0alD46vz", + "focus": -0.9764089313008564, + "gap": 1.6378775642064882, + "fixedPoint": null + }, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 0.46506629105565866, + 23.461362085416425 + ] + ], + "index": "b0C", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "arrow", + "version": 1278, + "versionNonce": 1636991730, + "isDeleted": false, + "id": "RA5KCrFamreS7cNpTiRdY", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 607.8410050567952, + "y": 629.4502126993926, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 18.85333133897328, + "height": 11.663940739968542, + "seed": 1213164928, + "groupIds": [ + "sELBEUwAws-Nsueayzx-o", + "6eoEQTdvSBimRXnZNDu-E", + "F7sbb28uZp5auYrRhD91V", + "QSv-mgxeSjGXAseRULooA" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329044, + "link": null, + "locked": false, + "startBinding": { + "elementId": "4tcJljIkG_OoBn1bQz1R4", + "focus": 0.9505420481460304, + "gap": 11.446725964960024, + "fixedPoint": null + }, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -18.85333133897328, + -11.663940739968542 + ] + ], + "index": "b0D", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "arrow", + "version": 1340, + "versionNonce": 1477568942, + "isDeleted": false, + "id": "CwyO9NB1p4s6MncefAaIW", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 593.1982004789407, + "y": 619.6714672652648, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 1.40380467403088, + "height": 20.887541171656835, + "seed": 923123072, + "groupIds": [ + "sELBEUwAws-Nsueayzx-o", + "6eoEQTdvSBimRXnZNDu-E", + "F7sbb28uZp5auYrRhD91V", + "QSv-mgxeSjGXAseRULooA" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329044, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": { + "elementId": "pgq6x1ZSuWtyo0alD46vz", + "focus": 0.8589310764377989, + "gap": 1, + "fixedPoint": null + }, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 1.40380467403088, + -20.887541171656835 + ] + ], + "index": "b0E", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "diamond", + "version": 915, + "versionNonce": 1592114158, + "isDeleted": false, + "id": "pgq6x1ZSuWtyo0alD46vz", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 592.2554936049647, + "y": 588.5349430536661, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 35.337320777988985, + "height": 16.153605471047978, + "seed": 443682176, + "groupIds": [ + "sELBEUwAws-Nsueayzx-o", + "6eoEQTdvSBimRXnZNDu-E", + "F7sbb28uZp5auYrRhD91V", + "QSv-mgxeSjGXAseRULooA" + ], + "strokeSharpness": "sharp", + "boundElements": [ + { + "id": "MtF--zcpFSKCtT6PbzmSC", + "type": "arrow" + }, + { + "id": "XD0yZfZ-WZ4C7irCKDsOE", + "type": "arrow" + }, + { + "id": "CwyO9NB1p4s6MncefAaIW", + "type": "arrow" + } + ], + "updated": 1738919329040, + "link": null, + "locked": false, + "index": "b0F", + "frameId": null, + "roundness": null + }, + { + "type": "line", + "version": 582, + "versionNonce": 617203954, + "isDeleted": false, + "id": "UoWfsKKLr-YfuK0u6lWLD", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 619.1010201230544, + "y": 604.3532166742845, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 8.182148235188777, + "height": 14.941314168605555, + "seed": 1809079680, + "groupIds": [ + "6eoEQTdvSBimRXnZNDu-E", + "F7sbb28uZp5auYrRhD91V", + "QSv-mgxeSjGXAseRULooA" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -8.182148235188777, + 14.941314168605555 + ] + ], + "index": "b0G", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "line", + "version": 585, + "versionNonce": 1011414830, + "isDeleted": false, + "id": "ZYJsh037xvX6c2j5AWrMU", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 597.4005400210327, + "y": 600.4400153444116, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 8.893639386074742, + "height": 13.874077442276572, + "seed": 2087497088, + "groupIds": [ + "6eoEQTdvSBimRXnZNDu-E", + "F7sbb28uZp5auYrRhD91V", + "QSv-mgxeSjGXAseRULooA" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 8.893639386074742, + 13.874077442276572 + ] + ], + "index": "b0H", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "line", + "version": 616, + "versionNonce": 1112005298, + "isDeleted": false, + "id": "Tpz4y9Q0FIvkNN7aAIKYd", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 624.970822117864, + "y": 607.9106724287145, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 8.182148235188777, + "height": 14.941314168605555, + "seed": 1970994560, + "groupIds": [ + "6eoEQTdvSBimRXnZNDu-E", + "F7sbb28uZp5auYrRhD91V", + "QSv-mgxeSjGXAseRULooA" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -8.182148235188777, + 14.941314168605555 + ] + ], + "index": "b0I", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "line", + "version": 624, + "versionNonce": 1253957998, + "isDeleted": false, + "id": "JsyY6_NE4ChFWdYJZTbBm", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 595.4439393560962, + "y": 609.155781942765, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 8.893639386074742, + "height": 13.874077442276572, + "seed": 1480543616, + "groupIds": [ + "6eoEQTdvSBimRXnZNDu-E", + "F7sbb28uZp5auYrRhD91V", + "QSv-mgxeSjGXAseRULooA" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 8.893639386074742, + 13.874077442276572 + ] + ], + "index": "b0J", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "id": "SggIf7xRieQejcq3d6lyz", + "type": "text", + "x": 536.4621113594775, + "y": 673.8909956255865, + "width": 145.10452270507812, + "height": 35, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "dashed", + "roughness": 1, + "opacity": 100, + "groupIds": [ + "QSv-mgxeSjGXAseRULooA" + ], + "frameId": null, + "index": "b0K", + "roundness": null, + "seed": 320182912, + "version": 324, + "versionNonce": 832418930, + "isDeleted": false, + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "text": "K3s server", + "fontSize": 28, + "fontFamily": 5, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "K3s server", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "type": "line", + "version": 1869, + "versionNonce": 127632302, + "isDeleted": false, + "id": "UFW9z9Q0lzQhITugQ8fhX", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 689.0347988996142, + "y": 726.2139650643975, + "strokeColor": "#000000", + "backgroundColor": "#326ce5", + "width": 95.91694595296573, + "height": 93.88317402088744, + "seed": 171380096, + "groupIds": [ + "N68E50vjvJGvxVapxdYT8", + "FRTSXCrtyhjZpilI88dJj", + "WeV3uUNV3TUKxHFExYr75", + "lyos0lLkzzxSbeM0uOMtt", + "slXBQXX7H8-YJ8hcrk4Xy" + ], + "strokeSharpness": "sharp", + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -39.59125003164969, + 18.937807635114627 + ], + [ + -47.754394368072326, + 59.432481408072505 + ], + [ + -20.407860841056557, + 93.88317402088744 + ], + [ + 25.509826051320665, + 93.68170798221598 + ], + [ + 48.162551584893414, + 56.813422905343806 + ], + [ + 39.18309281482855, + 16.92314724840031 + ], + [ + 0, + 0 + ] + ], + "index": "b0L", + "frameId": null, + "roundness": null + }, + { + "type": "text", + "version": 1145, + "versionNonce": 1100798638, + "isDeleted": false, + "id": "uG5N0x1SLPkvwP7NY66Fq", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 672.392418243509, + "y": 795.3881439836845, + "strokeColor": "#fff", + "backgroundColor": "transparent", + "width": 35.99360924158806, + "height": 23.221683381669717, + "seed": 452550016, + "groupIds": [ + "FRTSXCrtyhjZpilI88dJj", + "WeV3uUNV3TUKxHFExYr75", + "lyos0lLkzzxSbeM0uOMtt", + "slXBQXX7H8-YJ8hcrk4Xy" + ], + "strokeSharpness": "sharp", + "boundElements": [ + { + "id": "kkKQFNlKGYNS-a1GL6q1z", + "type": "arrow" + }, + { + "id": "Y6IsRVFiXsKxtO8jejV4s", + "type": "arrow" + }, + { + "id": "rwc1LZ8GuLfrmS-T8-1SH", + "type": "arrow" + } + ], + "updated": 1738919329040, + "link": null, + "locked": false, + "fontSize": 18.577346705335774, + "fontFamily": 1, + "text": "Pod", + "baseline": 14, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "Pod", + "index": "b0M", + "frameId": null, + "roundness": null, + "autoResize": true, + "lineHeight": 1.25 + }, + { + "type": "arrow", + "version": 2909, + "versionNonce": 782882350, + "isDeleted": false, + "id": "Y6IsRVFiXsKxtO8jejV4s", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 688.6516877160877, + "y": 759.7720953191148, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 0.9316120817337605, + "height": 21.61604866456969, + "seed": 2129767808, + "groupIds": [ + "whFSfBRLBI_x8Jx3gu4mq", + "nryh5yEFmV4ypiYfTH1Wb", + "lyos0lLkzzxSbeM0uOMtt", + "slXBQXX7H8-YJ8hcrk4Xy" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329044, + "link": null, + "locked": false, + "startBinding": { + "elementId": "LVbU5G0inKV2aKqFhLKU3", + "focus": 0.06357849557367079, + "gap": 1.1610841690838027, + "fixedPoint": null + }, + "endBinding": { + "elementId": "uG5N0x1SLPkvwP7NY66Fq", + "focus": -0.2039727852852656, + "gap": 14, + "fixedPoint": null + }, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -0.9316120817337605, + 21.61604866456969 + ] + ], + "index": "b0N", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "arrow", + "version": 1871, + "versionNonce": 2041084402, + "isDeleted": false, + "id": "rwc1LZ8GuLfrmS-T8-1SH", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 669.8743994089785, + "y": 788.6868646163024, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 37.51535791241045, + "height": 13.153923300156952, + "seed": 1600126336, + "groupIds": [ + "whFSfBRLBI_x8Jx3gu4mq", + "nryh5yEFmV4ypiYfTH1Wb", + "lyos0lLkzzxSbeM0uOMtt", + "slXBQXX7H8-YJ8hcrk4Xy" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329044, + "link": null, + "locked": false, + "startBinding": { + "elementId": "uG5N0x1SLPkvwP7NY66Fq", + "focus": -1.4231994947854567, + "gap": 6.701279367382085, + "fixedPoint": null + }, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 37.51535791241045, + -13.153923300156952 + ] + ], + "index": "b0O", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "arrow", + "version": 1937, + "versionNonce": 1244162994, + "isDeleted": false, + "id": "lSrlt2Jxp6_ZRULZ22Isg", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 707.4396176046254, + "y": 753.0765022376944, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 0.46506629105577235, + "height": 23.461362085416425, + "seed": 1032080768, + "groupIds": [ + "whFSfBRLBI_x8Jx3gu4mq", + "nryh5yEFmV4ypiYfTH1Wb", + "lyos0lLkzzxSbeM0uOMtt", + "slXBQXX7H8-YJ8hcrk4Xy" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329045, + "link": null, + "locked": false, + "startBinding": { + "elementId": "LVbU5G0inKV2aKqFhLKU3", + "focus": -0.9764089313008558, + "gap": 1.6378775642064882, + "fixedPoint": null + }, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 0.46506629105577235, + 23.461362085416425 + ] + ], + "index": "b0P", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "arrow", + "version": 1719, + "versionNonce": 1503481906, + "isDeleted": false, + "id": "kkKQFNlKGYNS-a1GL6q1z", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 688.0655098528034, + "y": 783.9414180187244, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 18.85333133897328, + "height": 11.663940739968542, + "seed": 1922997632, + "groupIds": [ + "whFSfBRLBI_x8Jx3gu4mq", + "nryh5yEFmV4ypiYfTH1Wb", + "lyos0lLkzzxSbeM0uOMtt", + "slXBQXX7H8-YJ8hcrk4Xy" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329044, + "link": null, + "locked": false, + "startBinding": { + "elementId": "uG5N0x1SLPkvwP7NY66Fq", + "focus": 0.9505420481460304, + "gap": 11.446725964960024, + "fixedPoint": null + }, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -18.85333133897328, + -11.663940739968542 + ] + ], + "index": "b0Q", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "arrow", + "version": 1781, + "versionNonce": 464183406, + "isDeleted": false, + "id": "9Xw377a8Upcw33OreNQRb", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 673.422705274949, + "y": 774.1626725845966, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 1.4038046740309937, + "height": 20.887541171657062, + "seed": 804187520, + "groupIds": [ + "whFSfBRLBI_x8Jx3gu4mq", + "nryh5yEFmV4ypiYfTH1Wb", + "lyos0lLkzzxSbeM0uOMtt", + "slXBQXX7H8-YJ8hcrk4Xy" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329045, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": { + "elementId": "LVbU5G0inKV2aKqFhLKU3", + "focus": 0.8589310764377914, + "gap": 1, + "fixedPoint": null + }, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 1.4038046740309937, + -20.887541171657062 + ] + ], + "index": "b0R", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "diamond", + "version": 1120, + "versionNonce": 1961658158, + "isDeleted": false, + "id": "LVbU5G0inKV2aKqFhLKU3", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 672.4799984009729, + "y": 743.0261483729977, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 35.337320777988985, + "height": 16.153605471047978, + "seed": 2125806976, + "groupIds": [ + "whFSfBRLBI_x8Jx3gu4mq", + "nryh5yEFmV4ypiYfTH1Wb", + "lyos0lLkzzxSbeM0uOMtt", + "slXBQXX7H8-YJ8hcrk4Xy" + ], + "strokeSharpness": "sharp", + "boundElements": [ + { + "id": "Y6IsRVFiXsKxtO8jejV4s", + "type": "arrow" + }, + { + "id": "lSrlt2Jxp6_ZRULZ22Isg", + "type": "arrow" + }, + { + "id": "9Xw377a8Upcw33OreNQRb", + "type": "arrow" + } + ], + "updated": 1738919329040, + "link": null, + "locked": false, + "index": "b0S", + "frameId": null, + "roundness": null + }, + { + "type": "line", + "version": 787, + "versionNonce": 696073390, + "isDeleted": false, + "id": "bk_yVVDCFENJmuO_9glVy", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 699.3255249190626, + "y": 758.8444219936163, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 8.182148235188777, + "height": 14.941314168605555, + "seed": 1076989312, + "groupIds": [ + "nryh5yEFmV4ypiYfTH1Wb", + "lyos0lLkzzxSbeM0uOMtt", + "slXBQXX7H8-YJ8hcrk4Xy" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -8.182148235188777, + 14.941314168605555 + ] + ], + "index": "b0T", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "line", + "version": 790, + "versionNonce": 629452082, + "isDeleted": false, + "id": "zagGAslLWeutfep-xo3Y0", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 677.6250448170409, + "y": 754.9312206637431, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 8.893639386074742, + "height": 13.874077442276572, + "seed": 765713792, + "groupIds": [ + "nryh5yEFmV4ypiYfTH1Wb", + "lyos0lLkzzxSbeM0uOMtt", + "slXBQXX7H8-YJ8hcrk4Xy" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 8.893639386074742, + 13.874077442276572 + ] + ], + "index": "b0U", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "line", + "version": 821, + "versionNonce": 1682798318, + "isDeleted": false, + "id": "cfszKNppHg6jfqQvlEs22", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 705.1953269138722, + "y": 762.4018777480463, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 8.182148235188777, + "height": 14.941314168605555, + "seed": 1481387392, + "groupIds": [ + "nryh5yEFmV4ypiYfTH1Wb", + "lyos0lLkzzxSbeM0uOMtt", + "slXBQXX7H8-YJ8hcrk4Xy" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -8.182148235188777, + 14.941314168605555 + ] + ], + "index": "b0V", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "line", + "version": 829, + "versionNonce": 1788622578, + "isDeleted": false, + "id": "dwUi-vmSFQEbBHnqnjcnY", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 675.6684441521044, + "y": 763.6469872620966, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 8.893639386074742, + "height": 13.874077442276572, + "seed": 694844800, + "groupIds": [ + "nryh5yEFmV4ypiYfTH1Wb", + "lyos0lLkzzxSbeM0uOMtt", + "slXBQXX7H8-YJ8hcrk4Xy" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 8.893639386074742, + 13.874077442276572 + ] + ], + "index": "b0W", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "id": "2m6Sj3RYwN_UL_kMY-oKG", + "type": "text", + "x": 588.8284847467943, + "y": 828.382200944918, + "width": 200.82078552246094, + "height": 35, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "dashed", + "roughness": 1, + "opacity": 100, + "groupIds": [ + "slXBQXX7H8-YJ8hcrk4Xy" + ], + "frameId": null, + "index": "b0X", + "roundness": null, + "seed": 1648283008, + "version": 527, + "versionNonce": 1167878446, + "isDeleted": false, + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "text": "Virtual Kubelet", + "fontSize": 28, + "fontFamily": 5, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "Virtual Kubelet", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "type": "line", + "version": 1922, + "versionNonce": 1067223218, + "isDeleted": false, + "id": "GOa98MhHSLck8Krzg90bI", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 770.9791789490306, + "y": 556.178375876295, + "strokeColor": "#000000", + "backgroundColor": "#326ce5", + "width": 95.91694595296573, + "height": 93.88317402088744, + "seed": 907524736, + "groupIds": [ + "PnHs9M9rbz1n3q7dgIGv6", + "I2SkvWzFil5Fh18WrPOxB", + "bEwZK8PYaIalE9L-YrS_i", + "ARXHVTHbyN-lkzqibjkc8", + "tHDXT26d4aWVipUbiN67Z" + ], + "strokeSharpness": "sharp", + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -39.59125003164969, + 18.937807635114627 + ], + [ + -47.754394368072326, + 59.432481408072505 + ], + [ + -20.407860841056557, + 93.88317402088744 + ], + [ + 25.509826051320665, + 93.68170798221598 + ], + [ + 48.162551584893414, + 56.813422905343806 + ], + [ + 39.18309281482855, + 16.92314724840031 + ], + [ + 0, + 0 + ] + ], + "index": "b0Y", + "frameId": null, + "roundness": null + }, + { + "type": "text", + "version": 1198, + "versionNonce": 1603825134, + "isDeleted": false, + "id": "FCkDjPJwl37UVEdk4okID", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 754.3367982929252, + "y": 625.352554795582, + "strokeColor": "#fff", + "backgroundColor": "transparent", + "width": 35.99360924158806, + "height": 23.221683381669717, + "seed": 1077701248, + "groupIds": [ + "I2SkvWzFil5Fh18WrPOxB", + "bEwZK8PYaIalE9L-YrS_i", + "ARXHVTHbyN-lkzqibjkc8", + "tHDXT26d4aWVipUbiN67Z" + ], + "strokeSharpness": "sharp", + "boundElements": [ + { + "id": "A_9iIoiRCoU8WmgZLG2TT", + "type": "arrow" + }, + { + "id": "7_6_hi2ys8I5QdxnD-b9d", + "type": "arrow" + }, + { + "id": "1tv2TCpeJuPq7-EUCF77k", + "type": "arrow" + } + ], + "updated": 1738919329040, + "link": null, + "locked": false, + "fontSize": 18.577346705335774, + "fontFamily": 1, + "text": "Pod", + "baseline": 14, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "Pod", + "index": "b0Z", + "frameId": null, + "roundness": null, + "autoResize": true, + "lineHeight": 1.25 + }, + { + "type": "arrow", + "version": 3084, + "versionNonce": 1610882286, + "isDeleted": false, + "id": "7_6_hi2ys8I5QdxnD-b9d", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 770.5960677655041, + "y": 589.7365061310123, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 0.9316120817337605, + "height": 21.61604866456969, + "seed": 38476416, + "groupIds": [ + "cfBuDBseWpaVEEPKmnXfu", + "XZEASvIoSkI1SeUaIkKfK", + "ARXHVTHbyN-lkzqibjkc8", + "tHDXT26d4aWVipUbiN67Z" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329045, + "link": null, + "locked": false, + "startBinding": { + "elementId": "HORfkDk99tXucXUr6IBH6", + "focus": 0.06357849557366692, + "gap": 1.1610841690837566, + "fixedPoint": null + }, + "endBinding": { + "elementId": "FCkDjPJwl37UVEdk4okID", + "focus": -0.20397278528524673, + "gap": 14, + "fixedPoint": null + }, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -0.9316120817337605, + 21.61604866456969 + ] + ], + "index": "b0a", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "arrow", + "version": 1985, + "versionNonce": 943892274, + "isDeleted": false, + "id": "1tv2TCpeJuPq7-EUCF77k", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 751.8187794583947, + "y": 618.6512754281999, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 37.51535791241034, + "height": 13.153923300156952, + "seed": 1862519424, + "groupIds": [ + "cfBuDBseWpaVEEPKmnXfu", + "XZEASvIoSkI1SeUaIkKfK", + "ARXHVTHbyN-lkzqibjkc8", + "tHDXT26d4aWVipUbiN67Z" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329045, + "link": null, + "locked": false, + "startBinding": { + "elementId": "FCkDjPJwl37UVEdk4okID", + "focus": -1.423199494785459, + "gap": 6.701279367382085, + "fixedPoint": null + }, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 37.51535791241034, + -13.153923300156952 + ] + ], + "index": "b0b", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "arrow", + "version": 2051, + "versionNonce": 663417074, + "isDeleted": false, + "id": "4byfUQ-ubaNJN9DdhX_DH", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 789.3839976540418, + "y": 583.040913049592, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 0.46506629105577235, + "height": 23.461362085416425, + "seed": 556169856, + "groupIds": [ + "cfBuDBseWpaVEEPKmnXfu", + "XZEASvIoSkI1SeUaIkKfK", + "ARXHVTHbyN-lkzqibjkc8", + "tHDXT26d4aWVipUbiN67Z" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329045, + "link": null, + "locked": false, + "startBinding": { + "elementId": "HORfkDk99tXucXUr6IBH6", + "focus": -0.9764089313008687, + "gap": 1.6378775642065824, + "fixedPoint": null + }, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 0.46506629105577235, + 23.461362085416425 + ] + ], + "index": "b0c", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "arrow", + "version": 1833, + "versionNonce": 1900291442, + "isDeleted": false, + "id": "A_9iIoiRCoU8WmgZLG2TT", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 770.0098899022197, + "y": 613.905828830622, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 18.853331338973167, + "height": 11.663940739968542, + "seed": 1534274176, + "groupIds": [ + "cfBuDBseWpaVEEPKmnXfu", + "XZEASvIoSkI1SeUaIkKfK", + "ARXHVTHbyN-lkzqibjkc8", + "tHDXT26d4aWVipUbiN67Z" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329045, + "link": null, + "locked": false, + "startBinding": { + "elementId": "FCkDjPJwl37UVEdk4okID", + "focus": 0.9505420481460367, + "gap": 11.446725964960024, + "fixedPoint": null + }, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -18.853331338973167, + -11.663940739968542 + ] + ], + "index": "b0d", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "arrow", + "version": 1895, + "versionNonce": 529420078, + "isDeleted": false, + "id": "Z8s9PCPew98bDBtNEN5M-", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 755.3670853243651, + "y": 604.1270833964942, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 1.40380467403088, + "height": 20.887541171657062, + "seed": 145349248, + "groupIds": [ + "cfBuDBseWpaVEEPKmnXfu", + "XZEASvIoSkI1SeUaIkKfK", + "ARXHVTHbyN-lkzqibjkc8", + "tHDXT26d4aWVipUbiN67Z" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329045, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": { + "elementId": "HORfkDk99tXucXUr6IBH6", + "focus": 0.8589310764377985, + "gap": 1.0000000000000115, + "fixedPoint": null + }, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 1.40380467403088, + -20.887541171657062 + ] + ], + "index": "b0e", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "diamond", + "version": 1173, + "versionNonce": 2097957486, + "isDeleted": false, + "id": "HORfkDk99tXucXUr6IBH6", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 754.4243784503891, + "y": 572.9905591848952, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 35.337320777988985, + "height": 16.153605471047978, + "seed": 998935168, + "groupIds": [ + "cfBuDBseWpaVEEPKmnXfu", + "XZEASvIoSkI1SeUaIkKfK", + "ARXHVTHbyN-lkzqibjkc8", + "tHDXT26d4aWVipUbiN67Z" + ], + "strokeSharpness": "sharp", + "boundElements": [ + { + "id": "7_6_hi2ys8I5QdxnD-b9d", + "type": "arrow" + }, + { + "id": "4byfUQ-ubaNJN9DdhX_DH", + "type": "arrow" + }, + { + "id": "Z8s9PCPew98bDBtNEN5M-", + "type": "arrow" + } + ], + "updated": 1738919329040, + "link": null, + "locked": false, + "index": "b0f", + "frameId": null, + "roundness": null + }, + { + "type": "line", + "version": 840, + "versionNonce": 1923194802, + "isDeleted": false, + "id": "kOKE7km6SbmY4hRSk29sk", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 781.269904968479, + "y": 588.8088328055138, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 8.182148235188777, + "height": 14.941314168605555, + "seed": 785726080, + "groupIds": [ + "XZEASvIoSkI1SeUaIkKfK", + "ARXHVTHbyN-lkzqibjkc8", + "tHDXT26d4aWVipUbiN67Z" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -8.182148235188777, + 14.941314168605555 + ] + ], + "index": "b0g", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "line", + "version": 843, + "versionNonce": 965667950, + "isDeleted": false, + "id": "ZDMoKTanPRI67o814OsR2", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 759.5694248664572, + "y": 584.8956314756407, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 8.893639386074742, + "height": 13.874077442276572, + "seed": 1162472064, + "groupIds": [ + "XZEASvIoSkI1SeUaIkKfK", + "ARXHVTHbyN-lkzqibjkc8", + "tHDXT26d4aWVipUbiN67Z" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 8.893639386074742, + 13.874077442276572 + ] + ], + "index": "b0h", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "line", + "version": 874, + "versionNonce": 477550962, + "isDeleted": false, + "id": "v9VeSHa2_pV5tEUPmgH4L", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 787.1397069632886, + "y": 592.3662885599439, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 8.182148235188777, + "height": 14.941314168605555, + "seed": 162044544, + "groupIds": [ + "XZEASvIoSkI1SeUaIkKfK", + "ARXHVTHbyN-lkzqibjkc8", + "tHDXT26d4aWVipUbiN67Z" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -8.182148235188777, + 14.941314168605555 + ] + ], + "index": "b0i", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "line", + "version": 882, + "versionNonce": 773009070, + "isDeleted": false, + "id": "32Kh9XYoRvHtqfxD6bSpy", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 757.6128242015205, + "y": 593.6113980739941, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 8.893639386074742, + "height": 13.874077442276572, + "seed": 783370880, + "groupIds": [ + "XZEASvIoSkI1SeUaIkKfK", + "ARXHVTHbyN-lkzqibjkc8", + "tHDXT26d4aWVipUbiN67Z" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 8.893639386074742, + 13.874077442276572 + ] + ], + "index": "b0j", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "id": "od-jblVhF0PGotpkoscP6", + "type": "text", + "x": 711.7030558362494, + "y": 658.3466117568156, + "width": 118.96040344238281, + "height": 35, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "dashed", + "roughness": 1, + "opacity": 100, + "groupIds": [ + "tHDXT26d4aWVipUbiN67Z" + ], + "frameId": null, + "index": "b0k", + "roundness": null, + "seed": 254016128, + "version": 599, + "versionNonce": 1392433970, + "isDeleted": false, + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "text": "CoreDNS", + "fontSize": 28, + "fontFamily": 5, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "CoreDNS", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "qJqsVwTGUlht5ywVSLVPl", + "type": "text", + "x": 1667.0524712971746, + "y": 56.255756710797755, + "width": 61.61216735839844, + "height": 35, + "angle": 0, + "strokeColor": "transparent", + "backgroundColor": "#a5d8ff", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "dashed", + "roughness": 1, + "opacity": 40, + "groupIds": [], + "frameId": null, + "index": "b0t", + "roundness": null, + "seed": 1592822400, + "version": 39, + "versionNonce": 2080384878, + "isDeleted": false, + "boundElements": [], + "updated": 1738921737580, + "link": null, + "locked": false, + "text": "ssss", + "fontSize": 28, + "fontFamily": 5, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "originalText": "ssss", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "Luydn8IC_eyUVpVZ6NARZ", + "type": "text", + "x": 603.350956930011, + "y": 896.6336874220343, + "width": 156.99986267089844, + "height": 25, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b0u", + "roundness": null, + "seed": 113106304, + "version": 557, + "versionNonce": 77636850, + "isDeleted": false, + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "text": "K3k components", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "K3k components", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "type": "line", + "version": 1798, + "versionNonce": 249420590, + "isDeleted": false, + "id": "d5dNTKF5EQdaoMPUDwzOh", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 1311.775930477088, + "y": 776.1712413038391, + "strokeColor": "#000000", + "backgroundColor": "#326ce5", + "width": 82.60981288607078, + "height": 80.85819832940717, + "seed": 688934272, + "groupIds": [ + "9FzQImcFJRwrhJvgmMdeI", + "SIHo5FyEEv5IaCMBdeRSL", + "kTVRIYgNDXUBNVNbEiwHM", + "YZiZX0h3rP31Fwb7cN425" + ], + "strokeSharpness": "sharp", + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -34.09851851042071, + 16.31045202352848 + ], + [ + -41.12914088370334, + 51.18705688235002 + ], + [ + -17.576555933206564, + 80.85819832940717 + ], + [ + 21.97069491650818, + 80.68468288234834 + ], + [ + 41.48067200236744, + 48.93135607058538 + ], + [ + 33.74698739175657, + 14.575297552940347 + ], + [ + 0, + 0 + ] + ], + "index": "b0v", + "frameId": null, + "roundness": null + }, + { + "type": "text", + "version": 1068, + "versionNonce": 1939015406, + "isDeleted": false, + "id": "swHaD7JOQP6h-vBlIIl_k", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 1297.4424470835097, + "y": 835.7484715867138, + "strokeColor": "#fff", + "backgroundColor": "transparent", + "width": 31, + "height": 20, + "seed": 212508032, + "groupIds": [ + "SIHo5FyEEv5IaCMBdeRSL", + "kTVRIYgNDXUBNVNbEiwHM", + "YZiZX0h3rP31Fwb7cN425" + ], + "strokeSharpness": "sharp", + "boundElements": [ + { + "id": "KvxWKeiR__8HxNqQJ7l4Q", + "type": "arrow" + }, + { + "id": "1H6g0Q9BbGqVJtvqdNr1k", + "type": "arrow" + }, + { + "id": "U69lETgPIEty62YQQivfp", + "type": "arrow" + } + ], + "updated": 1738919329040, + "link": null, + "locked": false, + "fontSize": 16, + "fontFamily": 1, + "text": "Pod", + "baseline": 14, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "Pod", + "index": "b0w", + "frameId": null, + "roundness": null, + "autoResize": true, + "lineHeight": 1.25 + }, + { + "type": "arrow", + "version": 2573, + "versionNonce": 728423342, + "isDeleted": false, + "id": "U69lETgPIEty62YQQivfp", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 1311.4985710818632, + "y": 805.0976959624079, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 0.5635072862773995, + "height": 15.6802046362493, + "seed": 679144832, + "groupIds": [ + "HN0kGKY7kBdau1SC3y3ct", + "zI6MNUE7PIQPujH5R_96A", + "YZiZX0h3rP31Fwb7cN425" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329045, + "link": null, + "locked": false, + "startBinding": { + "elementId": "q6OjAVj6UylAZoNq_0w7V", + "focus": 0.06357849557368235, + "gap": 1.0000000000001572, + "fixedPoint": null + }, + "endBinding": { + "focus": -0.17817963642461448, + "gap": 14.970570988056524, + "elementId": "swHaD7JOQP6h-vBlIIl_k" + }, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -0.5635072862773995, + 15.6802046362493 + ] + ], + "index": "b0x", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "arrow", + "version": 1665, + "versionNonce": 581173938, + "isDeleted": false, + "id": "KvxWKeiR__8HxNqQJ7l4Q", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 1314.3753592706425, + "y": 824.8831432441485, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 13.209036182988534, + "height": 6.235242999486586, + "seed": 96550272, + "groupIds": [ + "HN0kGKY7kBdau1SC3y3ct", + "zI6MNUE7PIQPujH5R_96A", + "YZiZX0h3rP31Fwb7cN425" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329045, + "link": null, + "locked": false, + "startBinding": { + "elementId": "swHaD7JOQP6h-vBlIIl_k", + "focus": -1.1658662773845616, + "gap": 10.865328342565249, + "fixedPoint": null + }, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 13.209036182988534, + -6.235242999486586 + ] + ], + "index": "b0y", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "arrow", + "version": 1742, + "versionNonce": 973372978, + "isDeleted": false, + "id": "c_-iIRIxUSl_iBC9K7ZPs", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 1327.6273383207927, + "y": 799.3069776169966, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 0.4005448557814406, + "height": 20.20642663997038, + "seed": 96308608, + "groupIds": [ + "HN0kGKY7kBdau1SC3y3ct", + "zI6MNUE7PIQPujH5R_96A", + "YZiZX0h3rP31Fwb7cN425" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329045, + "link": null, + "locked": false, + "startBinding": { + "elementId": "q6OjAVj6UylAZoNq_0w7V", + "focus": -0.976408931300852, + "gap": 1.4106449883812182, + "fixedPoint": null + }, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 0.4005448557814406, + 20.20642663997038 + ] + ], + "index": "b0z", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "arrow", + "version": 1524, + "versionNonce": 1268267374, + "isDeleted": false, + "id": "1H6g0Q9BbGqVJtvqdNr1k", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 1310.9411167119706, + "y": 825.889818553837, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 16.237695630503037, + "height": 10.045732299645078, + "seed": 1638915456, + "groupIds": [ + "HN0kGKY7kBdau1SC3y3ct", + "zI6MNUE7PIQPujH5R_96A", + "YZiZX0h3rP31Fwb7cN425" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329045, + "link": null, + "locked": false, + "startBinding": { + "elementId": "swHaD7JOQP6h-vBlIIl_k", + "focus": 0.95054204814603, + "gap": 9.85865303287676, + "fixedPoint": null + }, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -16.237695630503037, + -10.045732299645078 + ] + ], + "index": "b10", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "arrow", + "version": 1586, + "versionNonce": 892286446, + "isDeleted": false, + "id": "lyUAkOpVhTAhmp3k-1LhA", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 1298.329796217081, + "y": 817.4677371108984, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 1.199099860023125, + "height": 17.841689914912763, + "seed": 718810496, + "groupIds": [ + "HN0kGKY7kBdau1SC3y3ct", + "zI6MNUE7PIQPujH5R_96A", + "YZiZX0h3rP31Fwb7cN425" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329046, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": { + "elementId": "q6OjAVj6UylAZoNq_0w7V", + "focus": 0.858931076437822, + "gap": 1, + "fixedPoint": null + }, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 1.199099860023125, + -17.841689914912763 + ] + ], + "index": "b11", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "diamond", + "version": 1044, + "versionNonce": 66364270, + "isDeleted": false, + "id": "q6OjAVj6UylAZoNq_0w7V", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 1297.5178767205643, + "y": 790.6509696097304, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 30.434762370313667, + "height": 13.912518920828106, + "seed": 1249279360, + "groupIds": [ + "HN0kGKY7kBdau1SC3y3ct", + "zI6MNUE7PIQPujH5R_96A", + "YZiZX0h3rP31Fwb7cN425" + ], + "strokeSharpness": "sharp", + "boundElements": [ + { + "id": "U69lETgPIEty62YQQivfp", + "type": "arrow" + }, + { + "id": "c_-iIRIxUSl_iBC9K7ZPs", + "type": "arrow" + }, + { + "id": "lyUAkOpVhTAhmp3k-1LhA", + "type": "arrow" + } + ], + "updated": 1738919329040, + "link": null, + "locked": false, + "index": "b12", + "frameId": null, + "roundness": null + }, + { + "type": "line", + "version": 716, + "versionNonce": 655873070, + "isDeleted": false, + "id": "He3v5Yf0TTROVJ0JfFrvf", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 1320.6389623687137, + "y": 804.2746792785175, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 7.0469897472182765, + "height": 12.86841606013769, + "seed": 30068096, + "groupIds": [ + "zI6MNUE7PIQPujH5R_96A", + "YZiZX0h3rP31Fwb7cN425" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -7.0469897472182765, + 12.86841606013769 + ] + ], + "index": "b13", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "line", + "version": 719, + "versionNonce": 1445023154, + "isDeleted": false, + "id": "Mu4ZRgh2tx5vzntaHntxD", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 1301.949119995657, + "y": 800.9043798341958, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 7.6597714643676795, + "height": 11.949243484413557, + "seed": 1779768704, + "groupIds": [ + "zI6MNUE7PIQPujH5R_96A", + "YZiZX0h3rP31Fwb7cN425" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 7.6597714643676795, + 11.949243484413557 + ] + ], + "index": "b14", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "line", + "version": 750, + "versionNonce": 296296046, + "isDeleted": false, + "id": "askepW7rr2Tvf5jnrMuia", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 1325.6944115351962, + "y": 807.3385878642647, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 7.0469897472182765, + "height": 12.86841606013769, + "seed": 1955949952, + "groupIds": [ + "zI6MNUE7PIQPujH5R_96A", + "YZiZX0h3rP31Fwb7cN425" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -7.0469897472182765, + 12.86841606013769 + ] + ], + "index": "b15", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "line", + "version": 758, + "versionNonce": 265340786, + "isDeleted": false, + "id": "rRC1FosO4yneFDkDSUXxb", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 1300.263970273496, + "y": 808.4109558692761, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 7.6597714643676795, + "height": 11.949243484413557, + "seed": 1787542912, + "groupIds": [ + "zI6MNUE7PIQPujH5R_96A", + "YZiZX0h3rP31Fwb7cN425" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 7.6597714643676795, + 11.949243484413557 + ] + ], + "index": "b16", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "line", + "version": 1854, + "versionNonce": 672604334, + "isDeleted": false, + "id": "e_TURQ0-nxA6BjbpO2DiA", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 1302.9045084324907, + "y": 550.570349768956, + "strokeColor": "#000000", + "backgroundColor": "#326ce5", + "width": 82.60981288607078, + "height": 80.85819832940717, + "seed": 1601309312, + "groupIds": [ + "SuJGTd2GOD_nzD5Fv_mLl", + "-8i0GTZc-bcFBXHR7nlYU", + "mA86f5VpDdvxDPwT096SQ", + "4zVPD4JsH9f-eLVTZ1tDV" + ], + "strokeSharpness": "sharp", + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -34.09851851042071, + 16.31045202352848 + ], + [ + -41.12914088370334, + 51.18705688235002 + ], + [ + -17.576555933206564, + 80.85819832940717 + ], + [ + 21.97069491650818, + 80.68468288234834 + ], + [ + 41.48067200236744, + 48.93135607058538 + ], + [ + 33.74698739175657, + 14.575297552940347 + ], + [ + 0, + 0 + ] + ], + "index": "b1K", + "frameId": null, + "roundness": null + }, + { + "type": "text", + "version": 1124, + "versionNonce": 1559830510, + "isDeleted": false, + "id": "b8_pTGVAM-OSvlSnQJUpa", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 1288.571025038912, + "y": 610.1475800518306, + "strokeColor": "#fff", + "backgroundColor": "transparent", + "width": 31, + "height": 20, + "seed": 1775024768, + "groupIds": [ + "-8i0GTZc-bcFBXHR7nlYU", + "mA86f5VpDdvxDPwT096SQ", + "4zVPD4JsH9f-eLVTZ1tDV" + ], + "strokeSharpness": "sharp", + "boundElements": [ + { + "id": "g35BvKY6r9FEeVh6UE6zR", + "type": "arrow" + }, + { + "id": "p-KWVivArPkOjb-vbZ98a", + "type": "arrow" + }, + { + "id": "xtVEVWz89_U1Xksj6XsR6", + "type": "arrow" + } + ], + "updated": 1738919329040, + "link": null, + "locked": false, + "fontSize": 16, + "fontFamily": 1, + "text": "Pod", + "baseline": 14, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "Pod", + "index": "b1L", + "frameId": null, + "roundness": null, + "autoResize": true, + "lineHeight": 1.25 + }, + { + "type": "arrow", + "version": 2776, + "versionNonce": 1636897390, + "isDeleted": false, + "id": "xtVEVWz89_U1Xksj6XsR6", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 1302.627149037266, + "y": 579.4968044275248, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 0.5635072862773995, + "height": 15.680204636249186, + "seed": 894528128, + "groupIds": [ + "TuEDP67etXtMt88E0bjwb", + "jGQPjcBEVYoNAL9msjrUC", + "4zVPD4JsH9f-eLVTZ1tDV" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329046, + "link": null, + "locked": false, + "startBinding": { + "elementId": "jL9XpwHIHXx4kkot5bkxz", + "focus": 0.06357849557365149, + "gap": 1.000000000000278, + "fixedPoint": null + }, + "endBinding": { + "focus": -0.17817963642461448, + "gap": 14.970570988056524, + "elementId": "b8_pTGVAM-OSvlSnQJUpa" + }, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -0.5635072862773995, + 15.680204636249186 + ] + ], + "index": "b1M", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "arrow", + "version": 1798, + "versionNonce": 1626990578, + "isDeleted": false, + "id": "g35BvKY6r9FEeVh6UE6zR", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 1305.5039372260449, + "y": 599.2822517092654, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 13.209036182988534, + "height": 6.235242999486586, + "seed": 213916288, + "groupIds": [ + "TuEDP67etXtMt88E0bjwb", + "jGQPjcBEVYoNAL9msjrUC", + "4zVPD4JsH9f-eLVTZ1tDV" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329046, + "link": null, + "locked": false, + "startBinding": { + "elementId": "b8_pTGVAM-OSvlSnQJUpa", + "focus": -1.165866277384555, + "gap": 10.865328342565135, + "fixedPoint": null + }, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 13.209036182988534, + -6.235242999486586 + ] + ], + "index": "b1N", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "arrow", + "version": 1875, + "versionNonce": 160568178, + "isDeleted": false, + "id": "SWUPlpirpspc4BzegMM6G", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 1318.755916276195, + "y": 573.7060860821134, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 0.4005448557814406, + "height": 20.20642663997038, + "seed": 1658374784, + "groupIds": [ + "TuEDP67etXtMt88E0bjwb", + "jGQPjcBEVYoNAL9msjrUC", + "4zVPD4JsH9f-eLVTZ1tDV" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329046, + "link": null, + "locked": false, + "startBinding": { + "elementId": "jL9XpwHIHXx4kkot5bkxz", + "focus": -0.9764089313008518, + "gap": 1.4106449883814243, + "fixedPoint": null + }, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 0.4005448557814406, + 20.20642663997038 + ] + ], + "index": "b1O", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "arrow", + "version": 1657, + "versionNonce": 837699630, + "isDeleted": false, + "id": "p-KWVivArPkOjb-vbZ98a", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 1302.069694667373, + "y": 600.2889270189539, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 16.237695630503037, + "height": 10.045732299645078, + "seed": 1381726848, + "groupIds": [ + "TuEDP67etXtMt88E0bjwb", + "jGQPjcBEVYoNAL9msjrUC", + "4zVPD4JsH9f-eLVTZ1tDV" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329046, + "link": null, + "locked": false, + "startBinding": { + "elementId": "b8_pTGVAM-OSvlSnQJUpa", + "focus": 0.9505420481460244, + "gap": 9.858653032876646, + "fixedPoint": null + }, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -16.237695630503037, + -10.045732299645078 + ] + ], + "index": "b1P", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "arrow", + "version": 1719, + "versionNonce": 518034606, + "isDeleted": false, + "id": "1yzaWWAYh9ZXzJ5zXEzP9", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 1289.4583741724837, + "y": 591.8668455760153, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 1.199099860023125, + "height": 17.841689914912877, + "seed": 503851648, + "groupIds": [ + "TuEDP67etXtMt88E0bjwb", + "jGQPjcBEVYoNAL9msjrUC", + "4zVPD4JsH9f-eLVTZ1tDV" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329046, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": { + "elementId": "jL9XpwHIHXx4kkot5bkxz", + "focus": 0.8589310764377905, + "gap": 1, + "fixedPoint": null + }, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 1.199099860023125, + -17.841689914912877 + ] + ], + "index": "b1Q", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "diamond", + "version": 1100, + "versionNonce": 459832430, + "isDeleted": false, + "id": "jL9XpwHIHXx4kkot5bkxz", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 1288.6464546759667, + "y": 565.0500780748471, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 30.434762370313667, + "height": 13.912518920828106, + "seed": 815716992, + "groupIds": [ + "TuEDP67etXtMt88E0bjwb", + "jGQPjcBEVYoNAL9msjrUC", + "4zVPD4JsH9f-eLVTZ1tDV" + ], + "strokeSharpness": "sharp", + "boundElements": [ + { + "id": "xtVEVWz89_U1Xksj6XsR6", + "type": "arrow" + }, + { + "id": "SWUPlpirpspc4BzegMM6G", + "type": "arrow" + }, + { + "id": "1yzaWWAYh9ZXzJ5zXEzP9", + "type": "arrow" + } + ], + "updated": 1738919329040, + "link": null, + "locked": false, + "index": "b1R", + "frameId": null, + "roundness": null + }, + { + "type": "line", + "version": 772, + "versionNonce": 616716718, + "isDeleted": false, + "id": "NK1ZPdBmwOZ9Lq135Ju8y", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 1311.767540324116, + "y": 578.6737877436344, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 7.0469897472182765, + "height": 12.86841606013769, + "seed": 484412032, + "groupIds": [ + "jGQPjcBEVYoNAL9msjrUC", + "4zVPD4JsH9f-eLVTZ1tDV" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -7.0469897472182765, + 12.86841606013769 + ] + ], + "index": "b1S", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "line", + "version": 775, + "versionNonce": 1114366002, + "isDeleted": false, + "id": "RMDHXxyyNjeZHGxtN9c-W", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 1293.0776979510592, + "y": 575.3034882993124, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 7.6597714643676795, + "height": 11.949243484413557, + "seed": 495598208, + "groupIds": [ + "jGQPjcBEVYoNAL9msjrUC", + "4zVPD4JsH9f-eLVTZ1tDV" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 7.6597714643676795, + 11.949243484413557 + ] + ], + "index": "b1T", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "line", + "version": 806, + "versionNonce": 1390867438, + "isDeleted": false, + "id": "pSuWq58ekjitbKX2BAKiK", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 1316.822989490599, + "y": 581.7376963293814, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 7.0469897472182765, + "height": 12.86841606013769, + "seed": 358541952, + "groupIds": [ + "jGQPjcBEVYoNAL9msjrUC", + "4zVPD4JsH9f-eLVTZ1tDV" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -7.0469897472182765, + 12.86841606013769 + ] + ], + "index": "b1U", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "line", + "version": 814, + "versionNonce": 1780812274, + "isDeleted": false, + "id": "ihb4Sm2HtA46fTdXcn5EV", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 1291.3925482288982, + "y": 582.8100643343928, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 7.6597714643676795, + "height": 11.949243484413557, + "seed": 253598336, + "groupIds": [ + "jGQPjcBEVYoNAL9msjrUC", + "4zVPD4JsH9f-eLVTZ1tDV" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 7.6597714643676795, + 11.949243484413557 + ] + ], + "index": "b1V", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "line", + "version": 2401, + "versionNonce": 2113816110, + "isDeleted": false, + "id": "I6_VBFCb-mk4OBkz40Lal", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 1447.8044018275687, + "y": 717.2578607855476, + "strokeColor": "#000000", + "backgroundColor": "#326ce5", + "width": 82.60981288607078, + "height": 80.85819832940717, + "seed": 1717108096, + "groupIds": [ + "LKayq5OOtg5deFdndGC1g", + "a5NGitwtPgeqB_J7C82h2", + "BtRw-EGdQq0KapZX4V07H", + "7gAYv3oK3NrFeO3On4aNw", + "0mwfZjVlGOuXKMas6xKrQ", + "KBJIbAfkUZojwJrpsH6xv" + ], + "strokeSharpness": "sharp", + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -34.09851851042071, + 16.31045202352848 + ], + [ + -41.12914088370334, + 51.18705688235002 + ], + [ + -17.576555933206564, + 80.85819832940717 + ], + [ + 21.97069491650818, + 80.68468288234834 + ], + [ + 41.48067200236744, + 48.93135607058538 + ], + [ + 33.74698739175657, + 14.575297552940347 + ], + [ + 0, + 0 + ] + ], + "index": "b1W", + "frameId": null, + "roundness": null + }, + { + "type": "text", + "version": 1676, + "versionNonce": 479394738, + "isDeleted": false, + "id": "Ihes0fO5WkUac6-hUGTVZ", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 1434.6676749348044, + "y": 776.6412761544407, + "strokeColor": "#fff", + "backgroundColor": "transparent", + "width": 31, + "height": 20, + "seed": 2103266688, + "groupIds": [ + "a5NGitwtPgeqB_J7C82h2", + "BtRw-EGdQq0KapZX4V07H", + "7gAYv3oK3NrFeO3On4aNw", + "0mwfZjVlGOuXKMas6xKrQ", + "KBJIbAfkUZojwJrpsH6xv" + ], + "strokeSharpness": "sharp", + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "fontSize": 16, + "fontFamily": 1, + "text": "PVC", + "baseline": 14, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "PVC", + "index": "b1X", + "frameId": null, + "roundness": null, + "autoResize": true, + "lineHeight": 1.25 + }, + { + "type": "line", + "version": 1905, + "versionNonce": 1727090798, + "isDeleted": false, + "id": "2MukC2yut_VNkv0ofl66-", + "fillStyle": "hachure", + "strokeWidth": 1, + "strokeStyle": "dashed", + "roughness": 0, + "opacity": 100, + "angle": 6.247353822903583, + "x": 1424.7597748329567, + "y": 746.336473039732, + "strokeColor": "#fff", + "backgroundColor": "transparent", + "width": 47.66610072953717, + "height": 23.333636826274624, + "seed": 1331142016, + "groupIds": [ + "8OwcBseaB78gwqk49BJ77", + "KBJIbAfkUZojwJrpsH6xv" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -5.002910168624836e-13, + 13.493948071006393 + ], + [ + 13.135367779511398, + 17.133714739595867 + ], + [ + 31.029721508204602, + 17.49841603881237 + ], + [ + 44.738363614954324, + 14.952753267871929 + ], + [ + 47.66610072953667, + 2.5529090945147126 + ], + [ + 45.11047245698392, + -2.119535953870144 + ], + [ + 31.72856276095118, + -5.766548946034074 + ], + [ + 16.451132110193736, + -5.835220787462256 + ], + [ + 2.952767301829226, + -3.832986803559301 + ], + [ + 0.03207061641023756, + -0.1672376958776418 + ] + ], + "index": "b1Y", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "line", + "version": 1512, + "versionNonce": 937211250, + "isDeleted": false, + "id": "R6m8vFEoa0HlyAGovOXan", + "fillStyle": "hachure", + "strokeWidth": 1, + "strokeStyle": "dashed", + "roughness": 0, + "opacity": 100, + "angle": 6.247353822903583, + "x": 1425.3072615963406, + "y": 744.8667546785982, + "strokeColor": "#fff", + "backgroundColor": "transparent", + "width": 44.65081727334564, + "height": 4.784016136429898, + "seed": 227011968, + "groupIds": [ + "8OwcBseaB78gwqk49BJ77", + "KBJIbAfkUZojwJrpsH6xv" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 12.757376363813364, + 4.670110990324417 + ], + [ + 32.12125120174369, + 4.784016136429898 + ], + [ + 44.65081727334564, + 2.961533798742323 + ] + ], + "index": "b1Z", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "line", + "version": 2264, + "versionNonce": 1233719982, + "isDeleted": false, + "id": "-PF_H-FZSvBZhA9FBF4Hc", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 1583.8328731780518, + "y": 771.9038972442459, + "strokeColor": "#000000", + "backgroundColor": "#326ce5", + "width": 82.60981288607078, + "height": 80.85819832940717, + "seed": 1155156608, + "groupIds": [ + "aPv2FvGKv_jSBRPK_PZlS", + "V27uFnaiH6Fuzq5xib7Vw", + "kGEzcdTSA4me5YFwqR4Tv", + "2iZLUIZ3iB6j0rI7zLmCT", + "zNxYv1Gl_X-qsIsSe-6-T", + "yUmnPhKym6LrjFYx0hlNz", + "3LswK9GIlxmFJzPygOkm9" + ], + "strokeSharpness": "sharp", + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -34.09851851042071, + 16.31045202352848 + ], + [ + -41.12914088370334, + 51.18705688235002 + ], + [ + -17.576555933206564, + 80.85819832940717 + ], + [ + 21.97069491650818, + 80.68468288234834 + ], + [ + 41.48067200236744, + 48.93135607058538 + ], + [ + 33.74698739175657, + 14.575297552940347 + ], + [ + 0, + 0 + ] + ], + "index": "b1a", + "frameId": null, + "roundness": null + }, + { + "type": "text", + "version": 1552, + "versionNonce": 1028208434, + "isDeleted": false, + "id": "NKA6BgAIrONLHZMSajS5w", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 1574.1697659128752, + "y": 831.287312613139, + "strokeColor": "#fff", + "backgroundColor": "transparent", + "width": 21, + "height": 20, + "seed": 2016213632, + "groupIds": [ + "V27uFnaiH6Fuzq5xib7Vw", + "kGEzcdTSA4me5YFwqR4Tv", + "2iZLUIZ3iB6j0rI7zLmCT", + "zNxYv1Gl_X-qsIsSe-6-T", + "yUmnPhKym6LrjFYx0hlNz", + "3LswK9GIlxmFJzPygOkm9" + ], + "strokeSharpness": "sharp", + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "fontSize": 16, + "fontFamily": 1, + "text": "PV", + "baseline": 14, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "PV", + "index": "b1b", + "frameId": null, + "roundness": null, + "autoResize": true, + "lineHeight": 1.25 + }, + { + "type": "line", + "version": 1466, + "versionNonce": 7245038, + "isDeleted": false, + "id": "4Q7YtMJMtOsovbMRogbjD", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "angle": 6.247353822903583, + "x": 1561.4313474596277, + "y": 797.8987984203634, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 47.66610072953717, + "height": 23.333636826274624, + "seed": 229223040, + "groupIds": [ + "0YuSvJjzOAWkZhDE3DvzF", + "3LswK9GIlxmFJzPygOkm9" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -5.002910168624836e-13, + 13.493948071006393 + ], + [ + 13.135367779511398, + 17.133714739595867 + ], + [ + 31.029721508204602, + 17.49841603881237 + ], + [ + 44.738363614954324, + 14.952753267871929 + ], + [ + 47.66610072953667, + 2.5529090945147126 + ], + [ + 45.11047245698392, + -2.119535953870144 + ], + [ + 31.72856276095118, + -5.766548946034074 + ], + [ + 16.451132110193736, + -5.835220787462256 + ], + [ + 2.952767301829226, + -3.832986803559301 + ], + [ + 0.03207061641023756, + -0.1672376958776418 + ] + ], + "index": "b1c", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "line", + "version": 1072, + "versionNonce": 1832878322, + "isDeleted": false, + "id": "2t5bjTimkak4lO1PEKRV0", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "angle": 6.247353822903583, + "x": 1561.978834223011, + "y": 796.4290800592294, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 44.65081727334564, + "height": 4.784016136429898, + "seed": 806378112, + "groupIds": [ + "0YuSvJjzOAWkZhDE3DvzF", + "3LswK9GIlxmFJzPygOkm9" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 12.757376363813364, + 4.670110990324417 + ], + [ + 32.12125120174369, + 4.784016136429898 + ], + [ + 44.65081727334564, + 2.961533798742323 + ] + ], + "index": "b1d", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "line", + "version": 1002, + "versionNonce": 690667310, + "isDeleted": false, + "id": "ftz-P6kZRM2LUpvmdBYPu", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 502.2611941309701, + "y": 480.89472693225554, + "strokeColor": "#000000", + "backgroundColor": "#326ce5", + "width": 74.56969262545775, + "height": 72.98855650463366, + "seed": 620939904, + "groupIds": [ + "9aYXPCQ4RXUUuzutj4hgm" + ], + "strokeSharpness": "sharp", + "boundElementIds": [], + "startBinding": null, + "endBinding": null, + "points": [ + [ + 0, + 0 + ], + [ + -30.779830573061282, + 14.723013543853138 + ], + [ + -37.12618739224919, + 46.20520207911358 + ], + [ + -15.86589204796974, + 72.98855650463366 + ], + [ + 19.832365059962157, + 72.83192870097564 + ], + [ + 37.443505233208555, + 44.16904063155936 + ], + [ + 30.462512732101867, + 13.156735507273018 + ], + [ + 0, + 0 + ] + ], + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "index": "b1e", + "frameId": null, + "roundness": null, + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false + }, + { + "type": "line", + "version": 3423, + "versionNonce": 1665569458, + "isDeleted": false, + "id": "UGZxyockcDob4-6c6kCzu", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0.010125045471368388, + "x": 496.4466749517654, + "y": 499.0027406609278, + "strokeColor": "#000000", + "backgroundColor": "#ffff", + "width": 56.027402022303576, + "height": 55.80321948273368, + "seed": 1061517952, + "groupIds": [ + "9aYXPCQ4RXUUuzutj4hgm" + ], + "strokeSharpness": "round", + "boundElementIds": [], + "startBinding": null, + "endBinding": null, + "points": [ + [ + 0, + 0 + ], + [ + 3.9946843590662695, + -1.285223345136831 + ], + [ + 4.364583816560461, + -3.3388862946180877 + ], + [ + 3.8386141011418626, + -9.181806233252713 + ], + [ + 6.492462353704386, + -9.400819726754438 + ], + [ + 6.372979336315567, + -3.260602159347162 + ], + [ + 7.364557132379737, + -1.361330394290641 + ], + [ + 11.681239496538245, + -0.4708248002297829 + ], + [ + 17.69591744922602, + 1.82147372210106 + ], + [ + 21.960343457482153, + 4.7748292871787585 + ], + [ + 23.594556598968, + 4.413388026396299 + ], + [ + 27.48185649765045, + 1.369672146122987 + ], + [ + 28.709933828826234, + 2.487286570910849 + ], + [ + 24.84197373063479, + 5.6023395421280675 + ], + [ + 24.203760314433225, + 7.262115858089609 + ], + [ + 26.843643081448892, + 12.24620061203717 + ], + [ + 28.458516422443815, + 17.96267949967549 + ], + [ + 28.63740957698519, + 23.57928645999234 + ], + [ + 29.865486908160953, + 24.63031959989924 + ], + [ + 34.8599903849507, + 25.1819931031988 + ], + [ + 34.584398227954594, + 27.193699067816908 + ], + [ + 29.589894751164813, + 26.25204946735735 + ], + [ + 28.03304081164278, + 26.623002340265668 + ], + [ + 25.668750201623222, + 31.283692281934176 + ], + [ + 22.293955015951155, + 35.34039485361095 + ], + [ + 17.51702429468465, + 39.15930712214137 + ], + [ + 18.11655810990433, + 40.781036989599514 + ], + [ + 21.239935889193962, + 45.26100630087681 + ], + [ + 19.156072386293303, + 46.402399755979246 + ], + [ + 16.898150678974055, + 41.45636145053517 + ], + [ + 14.969005580001015, + 40.0724218862234 + ], + [ + 9.437822639587216, + 41.57525660210832 + ], + [ + 1.9001353982365563, + 41.427826614157595 + ], + [ + -2.8477856222934856, + 39.4256322616653 + ], + [ + -4.254756108010628, + 40.486177013698054 + ], + [ + -6.7786000720805735, + 45.1849134038699 + ], + [ + -8.509512216021257, + 44.00071769420113 + ], + [ + -5.536017890536574, + 39.63488772843409 + ], + [ + -5.289435434276864, + 37.9655998003467 + ], + [ + -9.002677128540677, + 35.11687196865337 + ], + [ + -12.411316965071922, + 30.41813557848146 + ], + [ + -13.895646652752923, + 27.17943164962812 + ], + [ + -15.858636402585077, + 26.979687794985175 + ], + [ + -20.867644729743052, + 28.34935994110819 + ], + [ + -21.167411637352878, + 26.190223988539294 + ], + [ + -16.139063509703984, + 25.5529459761071 + ], + [ + -14.72725807386408, + 24.321192205808988 + ], + [ + -14.704694973291298, + 17.660950026127566 + ], + [ + -13.397109573430448, + 12.560612235086246 + ], + [ + -10.985006678863819, + 8.256079325241366 + ], + [ + -12.116385007584832, + 6.591547203216893 + ], + [ + -16.956170080446924, + 4.018656123173355 + ], + [ + -15.728092749271116, + 1.9879269343035022 + ], + [ + -11.400812389419393, + 5.445397942051484 + ], + [ + -9.13322078185465, + 5.649897602757343 + ], + [ + -5.265260683663174, + 2.539600437603044 + ], + [ + 0, + 0 + ] + ], + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "index": "b1f", + "frameId": null, + "roundness": { + "type": 2 + }, + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false + }, + { + "type": "line", + "version": 937, + "versionNonce": 1210493294, + "isDeleted": false, + "id": "JsTr__NZRirbj-6QCe2gh", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 490.0306789760506, + "y": 506.99325544463215, + "strokeColor": "#000000", + "backgroundColor": "#326ce5", + "width": 11.390207206651219, + "height": 11.390207206651217, + "seed": 1571957376, + "groupIds": [ + "9aYXPCQ4RXUUuzutj4hgm" + ], + "strokeSharpness": "round", + "boundElementIds": [], + "startBinding": null, + "endBinding": null, + "points": [ + [ + 0, + 0 + ], + [ + 3.390726422789228, + -3.0708123968413275 + ], + [ + 6.880211867601436, + -5.201580182404683 + ], + [ + 10.9622514445516, + -5.514928386164008 + ], + [ + 11.390207206651219, + 0.15667410187965508 + ], + [ + 10.633054704474981, + 5.8752788204872095 + ], + [ + 5.135469145195345, + 3.2274864987209697 + ], + [ + 0, + 0 + ] + ], + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "index": "b1g", + "frameId": null, + "roundness": { + "type": 2 + }, + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false + }, + { + "type": "line", + "version": 1055, + "versionNonce": 839216242, + "isDeleted": false, + "id": "JjDVVBKen1UDfiow4SW72", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0.9881310661508964, + "x": 502.1144814359175, + "y": 505.63962853740077, + "strokeColor": "#000000", + "backgroundColor": "#326ce5", + "width": 11.544462166275355, + "height": 11.775649866995707, + "seed": 1795742336, + "groupIds": [ + "9aYXPCQ4RXUUuzutj4hgm" + ], + "strokeSharpness": "round", + "boundElementIds": [], + "startBinding": null, + "endBinding": null, + "points": [ + [ + 0, + 0 + ], + [ + 3.3324440488825404, + -3.0180289475169877 + ], + [ + 6.761949574917, + -5.112171482528766 + ], + [ + 10.349869501749856, + -5.699513011099051 + ], + [ + 11.544462166275355, + -0.22341016151754417 + ], + [ + 11.062121554685474, + 6.076136855896657 + ], + [ + 5.047196811899782, + 3.1720100162678397 + ], + [ + 0, + 0 + ] + ], + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "index": "b1h", + "frameId": null, + "roundness": { + "type": 2 + }, + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false + }, + { + "type": "line", + "version": 1061, + "versionNonce": 1823165358, + "isDeleted": false, + "id": "SUxJghmdrQyxxXmkznLSc", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 1.880863085334429, + "x": 510.96637140812527, + "y": 514.3323959330073, + "strokeColor": "#000000", + "backgroundColor": "#326ce5", + "width": 11.348707234163841, + "height": 11.906559103187837, + "seed": 2047445632, + "groupIds": [ + "9aYXPCQ4RXUUuzutj4hgm" + ], + "strokeSharpness": "round", + "boundElementIds": [], + "startBinding": null, + "endBinding": null, + "points": [ + [ + 0, + 0 + ], + [ + 3.378372384736624, + -3.0596239585916343 + ], + [ + 6.774557560174097, + -5.156808363994443 + ], + [ + 10.922310719585418, + -5.4948348644094605 + ], + [ + 11.348707234163841, + 0.1561032631934463 + ], + [ + 10.239894840992186, + 6.411724238778376 + ], + [ + 5.058865261110764, + 3.5897127897257852 + ], + [ + 0, + 0 + ] + ], + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "index": "b1i", + "frameId": null, + "roundness": { + "type": 2 + }, + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false + }, + { + "type": "line", + "version": 1241, + "versionNonce": 2135100978, + "isDeleted": false, + "id": "tI1eKs0-yihefVQXVKk86", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 2.8469082809423476, + "x": 509.17239444175675, + "y": 526.4199944122806, + "strokeColor": "#000000", + "backgroundColor": "#326ce5", + "width": 10.870105021919633, + "height": 12.35619348732643, + "seed": 1165245056, + "groupIds": [ + "9aYXPCQ4RXUUuzutj4hgm" + ], + "strokeSharpness": "round", + "boundElementIds": [], + "startBinding": null, + "endBinding": null, + "points": [ + [ + 0, + 0 + ], + [ + 2.111755761453853, + -2.382863904791711 + ], + [ + 5.866507849809183, + -5.078685821765166 + ], + [ + 9.820493638708378, + -5.6523924497891525 + ], + [ + 10.870105021919633, + 0.2761385625198566 + ], + [ + 10.328110826230393, + 6.703801037537276 + ], + [ + 4.935978475801803, + 3.994582930784675 + ], + [ + 0, + 0 + ] + ], + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "index": "b1j", + "frameId": null, + "roundness": { + "type": 2 + }, + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false + }, + { + "type": "line", + "version": 1372, + "versionNonce": 1424074222, + "isDeleted": false, + "id": "jCSieWZbedOsnz2dtjF8z", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 3.774871714878671, + "x": 498.51978418418634, + "y": 532.6508088333658, + "strokeColor": "#000000", + "backgroundColor": "#326ce5", + "width": 11.127731493008197, + "height": 12.782455527966839, + "seed": 805890688, + "groupIds": [ + "9aYXPCQ4RXUUuzutj4hgm" + ], + "strokeSharpness": "round", + "boundElementIds": [], + "startBinding": null, + "endBinding": null, + "points": [ + [ + 0, + 0 + ], + [ + 2.8128588416808156, + -2.760799288642105 + ], + [ + 6.312009117564948, + -5.354172377141463 + ], + [ + 10.114430299459066, + -6.359903949021169 + ], + [ + 10.808848502630248, + -0.001068103290659764 + ], + [ + 11.127731493008197, + 6.42255157894567 + ], + [ + 5.495331590557679, + 3.446942831500251 + ], + [ + 0, + 0 + ] + ], + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "index": "b1k", + "frameId": null, + "roundness": { + "type": 2 + }, + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false + }, + { + "type": "line", + "version": 1434, + "versionNonce": 535197682, + "isDeleted": false, + "id": "4KLbrMmhZhj2Z4Fdtl8aa", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 4.759646000521123, + "x": 486.81285823927976, + "y": 527.8707024435566, + "strokeColor": "#000000", + "backgroundColor": "#326ce5", + "width": 11.01721035427482, + "height": 10.832849705424145, + "seed": 1149737600, + "groupIds": [ + "9aYXPCQ4RXUUuzutj4hgm" + ], + "strokeSharpness": "round", + "boundElementIds": [], + "startBinding": null, + "endBinding": null, + "points": [ + [ + 0, + 0 + ], + [ + 2.190993081823027, + -3.088186466084833 + ], + [ + 5.647720630662613, + -5.69653199172979 + ], + [ + 8.700616726471578, + -5.898063937208797 + ], + [ + 10.7935737982968, + -0.8342391113819538 + ], + [ + 11.01721035427482, + 4.934785768215347 + ], + [ + 5.058865261110762, + 3.5897127897257852 + ], + [ + 0, + 0 + ] + ], + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "index": "b1l", + "frameId": null, + "roundness": { + "type": 2 + }, + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false + }, + { + "type": "line", + "version": 1562, + "versionNonce": 299022382, + "isDeleted": false, + "id": "E-tqA7z15V1Vuu1MvwBdU", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 5.645190933495279, + "x": 483.61280313434366, + "y": 516.5685646798623, + "strokeColor": "#000000", + "backgroundColor": "#326ce5", + "width": 12.374399655756315, + "height": 11.961544839173278, + "seed": 900745856, + "groupIds": [ + "9aYXPCQ4RXUUuzutj4hgm" + ], + "strokeSharpness": "round", + "boundElementIds": [], + "startBinding": null, + "endBinding": null, + "points": [ + [ + 0, + 0 + ], + [ + 2.190993081823027, + -3.088186466084832 + ], + [ + 5.647720630662615, + -5.696531991729788 + ], + [ + 9.103812625894594, + -6.44187163215937 + ], + [ + 11.063147709877112, + -1.055743471429398 + ], + [ + 12.374399655756315, + 5.519673207013908 + ], + [ + 6.056268342912206, + 3.3811250323293445 + ], + [ + 0, + 0 + ] + ], + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "index": "b1m", + "frameId": null, + "roundness": { + "type": 2 + }, + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false + }, + { + "type": "ellipse", + "version": 381, + "versionNonce": 871803314, + "isDeleted": false, + "id": "32vpzSS7h7F2nIXYmr4PW", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 501.3014940792468, + "y": 516.3664696022839, + "strokeColor": "#000000", + "backgroundColor": "#326ce5", + "width": 4.983280538241474, + "height": 4.983280538241474, + "seed": 1581447808, + "groupIds": [ + "9aYXPCQ4RXUUuzutj4hgm" + ], + "strokeSharpness": "sharp", + "boundElementIds": [], + "index": "b1n", + "frameId": null, + "roundness": null, + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false + }, + { + "type": "line", + "version": 1711, + "versionNonce": 728203886, + "isDeleted": false, + "id": "POuT11BZD_5S44lslbM11", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 990.9261665308427, + "y": 568.7963054441099, + "strokeColor": "#000000", + "backgroundColor": "#326ce5", + "width": 82.60981288607078, + "height": 80.85819832940717, + "seed": 1628085632, + "groupIds": [ + "qHsuUyPedtwT7JRHG4iTW", + "-I5URh3qXEs1DE2GqgHCZ", + "BayJ6lzSJiMd24YEh39rv", + "xTevi4wi8_V9r0RvZOcgq", + "6R1vL2JmCGMvNj3Zqcwrf" + ], + "strokeSharpness": "sharp", + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -34.09851851042071, + 16.31045202352848 + ], + [ + -41.12914088370334, + 51.18705688235002 + ], + [ + -17.576555933206564, + 80.85819832940717 + ], + [ + 21.97069491650818, + 80.68468288234834 + ], + [ + 41.48067200236744, + 48.93135607058538 + ], + [ + 33.74698739175657, + 14.575297552940347 + ], + [ + 0, + 0 + ] + ], + "index": "b2B8", + "frameId": null, + "roundness": null + }, + { + "type": "text", + "version": 981, + "versionNonce": 1242216686, + "isDeleted": false, + "id": "R0-AC_1bOzdk7-Ed7Msay", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 976.5926831372649, + "y": 628.3735357269846, + "strokeColor": "#fff", + "backgroundColor": "transparent", + "width": 31, + "height": 20, + "seed": 1893395840, + "groupIds": [ + "-I5URh3qXEs1DE2GqgHCZ", + "BayJ6lzSJiMd24YEh39rv", + "xTevi4wi8_V9r0RvZOcgq", + "6R1vL2JmCGMvNj3Zqcwrf" + ], + "strokeSharpness": "sharp", + "boundElements": [ + { + "id": "CJMbzws10XjqBSjAcddaq", + "type": "arrow" + }, + { + "id": "pV2Mqha2DX8S-QK2UuQTg", + "type": "arrow" + }, + { + "id": "pd6fGJ8sfYZu0rp6SXPW1", + "type": "arrow" + } + ], + "updated": 1738919329040, + "link": null, + "locked": false, + "fontSize": 16, + "fontFamily": 1, + "text": "Pod", + "baseline": 14, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "Pod", + "index": "b2BG", + "frameId": null, + "roundness": null, + "autoResize": true, + "lineHeight": 1.25 + }, + { + "type": "arrow", + "version": 2337, + "versionNonce": 201965870, + "isDeleted": false, + "id": "pd6fGJ8sfYZu0rp6SXPW1", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 990.648807135618, + "y": 597.7227601026786, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 0.5635072862770585, + "height": 15.680204636249414, + "seed": 1109474688, + "groupIds": [ + "1rzR4HDKc42HuPUUWroLY", + "PZdj34P3d-iH7CD7jv4gH", + "xTevi4wi8_V9r0RvZOcgq", + "6R1vL2JmCGMvNj3Zqcwrf" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329048, + "link": null, + "locked": false, + "startBinding": { + "elementId": "DCGYtED_beykt0LdZqebj", + "focus": 0.06357849557369728, + "gap": 1.0000000000002487, + "fixedPoint": null + }, + "endBinding": { + "focus": -0.17817963642461448, + "gap": 14.970570988056524, + "elementId": "R0-AC_1bOzdk7-Ed7Msay" + }, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -0.5635072862770585, + 15.680204636249414 + ] + ], + "index": "b2BO", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "arrow", + "version": 1504, + "versionNonce": 748868914, + "isDeleted": false, + "id": "CJMbzws10XjqBSjAcddaq", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 993.5255953243973, + "y": 617.5082073844193, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 13.209036182988534, + "height": 6.235242999486586, + "seed": 907906432, + "groupIds": [ + "1rzR4HDKc42HuPUUWroLY", + "PZdj34P3d-iH7CD7jv4gH", + "xTevi4wi8_V9r0RvZOcgq", + "6R1vL2JmCGMvNj3Zqcwrf" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329047, + "link": null, + "locked": false, + "startBinding": { + "elementId": "R0-AC_1bOzdk7-Ed7Msay", + "focus": -1.1658662773845803, + "gap": 10.865328342565363, + "fixedPoint": null + }, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 13.209036182988534, + -6.235242999486586 + ] + ], + "index": "b2BV", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "arrow", + "version": 1581, + "versionNonce": 1666232498, + "isDeleted": false, + "id": "nl4FA_UWao61Qlp8P6ywl", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 1006.7775743745474, + "y": 591.9320417572675, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 0.4005448557814406, + "height": 20.20642663997038, + "seed": 101703040, + "groupIds": [ + "1rzR4HDKc42HuPUUWroLY", + "PZdj34P3d-iH7CD7jv4gH", + "xTevi4wi8_V9r0RvZOcgq", + "6R1vL2JmCGMvNj3Zqcwrf" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329048, + "link": null, + "locked": false, + "startBinding": { + "elementId": "DCGYtED_beykt0LdZqebj", + "focus": -0.976408931300837, + "gap": 1.410644988381204, + "fixedPoint": null + }, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 0.4005448557814406, + 20.20642663997038 + ] + ], + "index": "b2Bd", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "arrow", + "version": 1363, + "versionNonce": 59100910, + "isDeleted": false, + "id": "pV2Mqha2DX8S-QK2UuQTg", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 990.0913527657253, + "y": 618.5148826941078, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 16.237695630503037, + "height": 10.045732299645078, + "seed": 1127755136, + "groupIds": [ + "1rzR4HDKc42HuPUUWroLY", + "PZdj34P3d-iH7CD7jv4gH", + "xTevi4wi8_V9r0RvZOcgq", + "6R1vL2JmCGMvNj3Zqcwrf" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329047, + "link": null, + "locked": false, + "startBinding": { + "elementId": "R0-AC_1bOzdk7-Ed7Msay", + "focus": 0.9505420481460178, + "gap": 9.858653032876873, + "fixedPoint": null + }, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -16.237695630503037, + -10.045732299645078 + ] + ], + "index": "b2Bl", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "arrow", + "version": 1425, + "versionNonce": 1003842414, + "isDeleted": false, + "id": "H_b7gLNHFHiVxr_zlFa1O", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 977.4800322708356, + "y": 610.0928012511691, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 1.199099860023125, + "height": 17.841689914912763, + "seed": 1456897408, + "groupIds": [ + "1rzR4HDKc42HuPUUWroLY", + "PZdj34P3d-iH7CD7jv4gH", + "xTevi4wi8_V9r0RvZOcgq", + "6R1vL2JmCGMvNj3Zqcwrf" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329048, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": { + "elementId": "DCGYtED_beykt0LdZqebj", + "focus": 0.858931076437837, + "gap": 1, + "fixedPoint": null + }, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 1.199099860023125, + -17.841689914912763 + ] + ], + "index": "b2C", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "diamond", + "version": 957, + "versionNonce": 1638389102, + "isDeleted": false, + "id": "DCGYtED_beykt0LdZqebj", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 976.6681127743191, + "y": 583.2760337500011, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 30.434762370313667, + "height": 13.912518920828106, + "seed": 36359552, + "groupIds": [ + "1rzR4HDKc42HuPUUWroLY", + "PZdj34P3d-iH7CD7jv4gH", + "xTevi4wi8_V9r0RvZOcgq", + "6R1vL2JmCGMvNj3Zqcwrf" + ], + "strokeSharpness": "sharp", + "boundElements": [ + { + "id": "pd6fGJ8sfYZu0rp6SXPW1", + "type": "arrow" + }, + { + "id": "nl4FA_UWao61Qlp8P6ywl", + "type": "arrow" + }, + { + "id": "H_b7gLNHFHiVxr_zlFa1O", + "type": "arrow" + } + ], + "updated": 1738919329040, + "link": null, + "locked": false, + "index": "b2C8", + "frameId": null, + "roundness": null + }, + { + "type": "line", + "version": 629, + "versionNonce": 1861475182, + "isDeleted": false, + "id": "vBPZj3b2ER3Nk5Bd2MPwi", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 999.7891984224684, + "y": 596.8997434187883, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 7.0469897472182765, + "height": 12.86841606013769, + "seed": 1584733568, + "groupIds": [ + "PZdj34P3d-iH7CD7jv4gH", + "xTevi4wi8_V9r0RvZOcgq", + "6R1vL2JmCGMvNj3Zqcwrf" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -7.0469897472182765, + 12.86841606013769 + ] + ], + "index": "b2CG", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "line", + "version": 632, + "versionNonce": 257710706, + "isDeleted": false, + "id": "IWiwFOSG2gTEqx4S1gY9n", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 981.0993560494121, + "y": 593.5294439744665, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 7.6597714643676795, + "height": 11.949243484413557, + "seed": 1559588224, + "groupIds": [ + "PZdj34P3d-iH7CD7jv4gH", + "xTevi4wi8_V9r0RvZOcgq", + "6R1vL2JmCGMvNj3Zqcwrf" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 7.6597714643676795, + 11.949243484413557 + ] + ], + "index": "b2CO", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "line", + "version": 663, + "versionNonce": 1728200110, + "isDeleted": false, + "id": "2sQmV2GbxJ_aXQLwo5ep7", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 1004.8446475889509, + "y": 599.9636520045354, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 7.0469897472182765, + "height": 12.86841606013769, + "seed": 1189854592, + "groupIds": [ + "PZdj34P3d-iH7CD7jv4gH", + "xTevi4wi8_V9r0RvZOcgq", + "6R1vL2JmCGMvNj3Zqcwrf" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -7.0469897472182765, + 12.86841606013769 + ] + ], + "index": "b2CV", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "line", + "version": 671, + "versionNonce": 797719602, + "isDeleted": false, + "id": "mQQHiVnHR5rOFiiogcIUA", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 979.4142063272507, + "y": 601.0360200095469, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 7.6597714643676795, + "height": 11.949243484413557, + "seed": 1033375104, + "groupIds": [ + "PZdj34P3d-iH7CD7jv4gH", + "xTevi4wi8_V9r0RvZOcgq", + "6R1vL2JmCGMvNj3Zqcwrf" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 7.6597714643676795, + 11.949243484413557 + ] + ], + "index": "b2Cd", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "id": "ENd9713SgXxH1J8Vl2ac-", + "type": "text", + "x": 956.1878238138077, + "y": 655.319588810264, + "width": 69.82821655273438, + "height": 35, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "dashed", + "roughness": 1, + "opacity": 100, + "groupIds": [ + "AXVlF3UO2LrH8avfKyQnA", + "6R1vL2JmCGMvNj3Zqcwrf" + ], + "frameId": null, + "index": "b2Cl", + "roundness": null, + "seed": 1175137664, + "version": 466, + "versionNonce": 193615854, + "isDeleted": false, + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "text": "nginx", + "fontSize": 28, + "fontFamily": 5, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "nginx", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "type": "line", + "version": 1386, + "versionNonce": 182052338, + "isDeleted": false, + "id": "11Wgo5PAEsQ6wlzdatU4O", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 993.3729171317268, + "y": 759.6708053101685, + "strokeColor": "#000000", + "backgroundColor": "#326ce5", + "width": 82.60981288607078, + "height": 80.85819832940717, + "seed": 1916820864, + "groupIds": [ + "UrSlg6-SVmSvXwp44Nh5h", + "tAISC-DTprPPF3Np5RhKT", + "TekUeTKayYx4eu_uN1YXI", + "HCO2fXpwxm-Jwu8gsWq78" + ], + "strokeSharpness": "sharp", + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -34.09851851042071, + 16.31045202352848 + ], + [ + -41.12914088370334, + 51.18705688235002 + ], + [ + -17.576555933206564, + 80.85819832940717 + ], + [ + 21.97069491650818, + 80.68468288234834 + ], + [ + 41.48067200236744, + 48.93135607058538 + ], + [ + 33.74698739175657, + 14.575297552940347 + ], + [ + 0, + 0 + ] + ], + "index": "b2E", + "frameId": null, + "roundness": null + }, + { + "type": "text", + "version": 592, + "versionNonce": 345319982, + "isDeleted": false, + "id": "vrXgkIJhZNE_1ipcdT_WD", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 984.6847185705379, + "y": 819.6008658950675, + "strokeColor": "#fff", + "backgroundColor": "transparent", + "width": 23, + "height": 20, + "seed": 1431874944, + "groupIds": [ + "tAISC-DTprPPF3Np5RhKT", + "TekUeTKayYx4eu_uN1YXI", + "HCO2fXpwxm-Jwu8gsWq78" + ], + "strokeSharpness": "sharp", + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "fontSize": 16, + "fontFamily": 1, + "text": "RS", + "baseline": 14, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "RS", + "index": "b2F", + "frameId": null, + "roundness": null, + "autoResize": true, + "lineHeight": 1.25 + }, + { + "type": "rectangle", + "version": 940, + "versionNonce": 172775346, + "isDeleted": false, + "id": "DHvQCvtgYmfgMcJQzrHuS", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "dashed", + "roughness": 0, + "opacity": 100, + "angle": 0, + "x": 985.8665804532737, + "y": 777.349063232201, + "strokeColor": "#fff", + "backgroundColor": "transparent", + "width": 30.72840895114018, + "height": 20.68258294788275, + "seed": 1357315456, + "groupIds": [ + "z00ZDjKpUFzRTS5ezoU7a", + "TekUeTKayYx4eu_uN1YXI", + "HCO2fXpwxm-Jwu8gsWq78" + ], + "strokeSharpness": "sharp", + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "index": "b2G", + "frameId": null, + "roundness": null + }, + { + "type": "rectangle", + "version": 828, + "versionNonce": 1359721582, + "isDeleted": false, + "id": "vZEgEBh2-UtBljxiMpbTX", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "dashed", + "roughness": 0, + "opacity": 100, + "angle": 0, + "x": 972.866099743176, + "y": 784.4402345286179, + "strokeColor": "#fff", + "backgroundColor": "transparent", + "width": 30.72840895114018, + "height": 20.68258294788275, + "seed": 1714113920, + "groupIds": [ + "z00ZDjKpUFzRTS5ezoU7a", + "TekUeTKayYx4eu_uN1YXI", + "HCO2fXpwxm-Jwu8gsWq78" + ], + "strokeSharpness": "sharp", + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "index": "b2H", + "frameId": null, + "roundness": null + }, + { + "type": "rectangle", + "version": 795, + "versionNonce": 1577750898, + "isDeleted": false, + "id": "nHf91g7GrBr48o16QN84B", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 964.5930665640229, + "y": 793.0087331784551, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 30.72840895114018, + "height": 20.68258294788275, + "seed": 1852153216, + "groupIds": [ + "z00ZDjKpUFzRTS5ezoU7a", + "TekUeTKayYx4eu_uN1YXI", + "HCO2fXpwxm-Jwu8gsWq78" + ], + "strokeSharpness": "sharp", + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "index": "b2I", + "frameId": null, + "roundness": null + }, + { + "id": "cgaPKNKrq4Sx0JBcPrZo9", + "type": "text", + "x": 953.2645564093207, + "y": 847.5337331098577, + "width": 80.56825256347656, + "height": 35, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "dashed", + "roughness": 1, + "opacity": 100, + "groupIds": [ + "Y-THZJAOmJHf-A4nYBlH3", + "HCO2fXpwxm-Jwu8gsWq78" + ], + "frameId": null, + "index": "b2J", + "roundness": null, + "seed": 373717632, + "version": 566, + "versionNonce": 1253504686, + "isDeleted": false, + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "text": "myapp", + "fontSize": 28, + "fontFamily": 5, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "myapp", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "0Aw-L13ZkGeuf_HEPUgEI", + "type": "text", + "x": 560.7022596523924, + "y": 482.89114791833146, + "width": 143.2998809814453, + "height": 25, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b2K", + "roundness": null, + "seed": 837012864, + "version": 509, + "versionNonce": 425431858, + "isDeleted": false, + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "text": "Virtual Cluster", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "Virtual Cluster", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "cnnlS5lQ0Z72rTpMSrYKH", + "type": "text", + "x": 1152.8376791357002, + "y": 645.533885402603, + "width": 338.67962646484375, + "height": 25, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "dashed", + "roughness": 1, + "opacity": 100, + "groupIds": [ + "lLzNepX0O-dClZl6AyCuC", + "iCuAZfGxrzV8uOIJH15rF" + ], + "frameId": null, + "index": "b2L", + "roundness": null, + "seed": 18000512, + "version": 549, + "versionNonce": 1782575342, + "isDeleted": false, + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "text": "nginx-k3k-my-virtual-cluster-a1s1r2", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "nginx-k3k-my-virtual-cluster-a1s1r2", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "dqB731R1yrAXNBGSWVCxQ", + "type": "text", + "x": 1150.004734507829, + "y": 879.1479992436477, + "width": 357.6596374511719, + "height": 25, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "dashed", + "roughness": 1, + "opacity": 100, + "groupIds": [ + "vvpm7fO2C4gP3uZyvseZp", + "a0LnN2ZxzwMZM4WpR_TDT" + ], + "frameId": null, + "index": "b2M", + "roundness": null, + "seed": 1851116160, + "version": 601, + "versionNonce": 1319525618, + "isDeleted": false, + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "text": "myapp-k3k-my-virtual-cluster-c2m6nd", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "myapp-k3k-my-virtual-cluster-c2m6nd", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "HDocOXT_UZJKEfjrc2x90", + "type": "arrow", + "x": 901.387711644208, + "y": 408.4787895967094, + "width": 169.71152203234647, + "height": 116.96233547770981, + "angle": 0, + "strokeColor": "#000000", + "backgroundColor": "#b2f2bb", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b2N", + "roundness": { + "type": 2 + }, + "seed": 527919744, + "version": 595, + "versionNonce": 2018731054, + "isDeleted": false, + "boundElements": [], + "updated": 1738919329042, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + -65.53566533447429, + 8.548130261018343 + ], + [ + -169.71152203234647, + 116.96233547770981 + ] + ], + "lastCommittedPoint": null, + "startBinding": { + "elementId": "xTu4L6YTvS5ibAOYadtTp", + "focus": -0.37695452763669435, + "gap": 1, + "fixedPoint": null + }, + "endBinding": { + "elementId": "3ayqq52wsniI7ZScvRxFK", + "focus": -0.405808085521648, + "gap": 1, + "fixedPoint": null + }, + "startArrowhead": null, + "endArrowhead": "arrow", + "elbowed": false, + "fixedSegments": null, + "startIsSpecial": null, + "endIsSpecial": null + }, + { + "id": "76LjwS65PV5BTZ64AVLeh", + "type": "line", + "x": 1029.8253836128429, + "y": 617.5411161999864, + "width": 231.23846783787803, + "height": 16.264273748427172, + "angle": 0, + "strokeColor": "#000000", + "backgroundColor": "#b2f2bb", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "dotted", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b2Q", + "roundness": null, + "seed": 249478528, + "version": 81, + "versionNonce": 728886962, + "isDeleted": false, + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 231.23846783787803, + -16.264273748427172 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "bzmte64CyigQP7ABPZdWB", + "type": "line", + "x": 1033.6897246332087, + "y": 807.0111179842182, + "width": 236.96229253363254, + "height": 21.416728442248882, + "angle": 0, + "strokeColor": "#000000", + "backgroundColor": "#b2f2bb", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "dotted", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b2R", + "roundness": null, + "seed": 1741823360, + "version": 206, + "versionNonce": 1877937518, + "isDeleted": false, + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 236.96229253363254, + 21.416728442248882 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "_YEzY7SqIhhByW0UhaKHz", + "type": "line", + "x": 1344.8389953300875, + "y": 794.3273143549475, + "width": 63.578524652942406, + "height": 26.614266133789897, + "angle": 0, + "strokeColor": "#000000", + "backgroundColor": "#b2f2bb", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "dotted", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b2T", + "roundness": null, + "seed": 125848192, + "version": 33, + "versionNonce": 342182002, + "isDeleted": false, + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 63.578524652942406, + -26.614266133789897 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "MjFovMi3OefJSDFCPEfCN", + "type": "line", + "x": 1488.2603183843999, + "y": 766.2344778803914, + "width": 60.621383971410296, + "height": 28.092836474556066, + "angle": 0, + "strokeColor": "#000000", + "backgroundColor": "#b2f2bb", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "dotted", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b2U", + "roundness": null, + "seed": 748497536, + "version": 36, + "versionNonce": 1170681774, + "isDeleted": false, + "boundElements": [], + "updated": 1738919329039, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 60.621383971410296, + 28.092836474556066 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "oQuaP6oGYl8zpZVaMViGt", + "type": "rectangle", + "x": 2041.3708405186685, + "y": 237.18440188684474, + "width": 1091.9040403428567, + "height": 745.7213534091308, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b2V", + "roundness": { + "type": 3 + }, + "seed": 140281198, + "version": 341, + "versionNonce": 1459469106, + "isDeleted": false, + "boundElements": [], + "updated": 1738921718024, + "link": null, + "locked": false + }, + { + "id": "CCK5D5HMvuk7gH1LiNUWw", + "type": "rectangle", + "x": 2135.673138111432, + "y": 559.0541201459417, + "width": 886.8187769209076, + "height": 382.0892311467011, + "angle": 0, + "strokeColor": "#000000", + "backgroundColor": "#a5d8ff", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "dotted", + "roughness": 1, + "opacity": 20, + "groupIds": [], + "frameId": null, + "index": "b2W", + "roundness": { + "type": 3 + }, + "seed": 1640343470, + "version": 735, + "versionNonce": 1081959406, + "isDeleted": false, + "boundElements": [], + "updated": 1738921703701, + "link": null, + "locked": false + }, + { + "id": "QJMXjOC5kklWA63FwlQh0", + "type": "rectangle", + "x": 2083.9231761846177, + "y": 499.17558026372507, + "width": 953.8699566295237, + "height": 464.33484971763187, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "dashed", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b2X", + "roundness": null, + "seed": 1850769902, + "version": 325, + "versionNonce": 1522041838, + "isDeleted": false, + "boundElements": [], + "updated": 1738921710658, + "link": null, + "locked": false + }, + { + "id": "66UYWeA69MojJiixYPSWG", + "type": "rectangle", + "x": 2148.9007372659676, + "y": 567.1898159389655, + "width": 498.59634048761507, + "height": 361.8899298092803, + "angle": 0, + "strokeColor": "transparent", + "backgroundColor": "#b2f2bb", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "dashed", + "roughness": 1, + "opacity": 50, + "groupIds": [], + "frameId": null, + "index": "b2Y", + "roundness": { + "type": 3 + }, + "seed": 1359352878, + "version": 785, + "versionNonce": 1102547310, + "isDeleted": false, + "boundElements": [ + { + "id": "G25zwUu4YJwZCyf4cuTcq", + "type": "arrow" + } + ], + "updated": 1738921697243, + "link": null, + "locked": false + }, + { + "id": "dKnITcq-wPs09tYKOLrYh", + "type": "text", + "x": 2180.628238684281, + "y": 182.42358366885435, + "width": 221.3440704345703, + "height": 45, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b2Z", + "roundness": null, + "seed": 1674534510, + "version": 170, + "versionNonce": 409039602, + "isDeleted": false, + "boundElements": [], + "updated": 1738919367265, + "link": null, + "locked": false, + "text": "Host Cluster", + "fontSize": 36, + "fontFamily": 5, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "Host Cluster", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "type": "line", + "version": 947, + "versionNonce": 2035958962, + "isDeleted": false, + "id": "c5A052zNTKF7if--9gNAP", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2094.0980173912217, + "y": 168.5896324972914, + "strokeColor": "#000000", + "backgroundColor": "#326ce5", + "width": 141.1345207909862, + "height": 138.14197943992207, + "seed": 1534419118, + "groupIds": [ + "fkYP5W_VlcVCmSoVFVy5D" + ], + "strokeSharpness": "sharp", + "boundElementIds": [], + "startBinding": null, + "endBinding": null, + "points": [ + [ + 0, + 0 + ], + [ + -58.25552560308792, + 27.865549500756803 + ], + [ + -70.26697418104422, + 87.4503947098219 + ], + [ + -30.0286214448907, + 138.14197943992207 + ], + [ + 37.53577680611333, + 137.84553742395653 + ], + [ + 70.86754660994197, + 83.59664850227031 + ], + [ + 57.65495317419008, + 24.901129341101825 + ], + [ + 0, + 0 + ] + ], + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "index": "b2a", + "frameId": null, + "roundness": null, + "boundElements": [], + "updated": 1738919367265, + "link": null, + "locked": false + }, + { + "type": "line", + "version": 3369, + "versionNonce": 1859313266, + "isDeleted": false, + "id": "O4rnGTYavEhVWVogHHjex", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0.010125045471368388, + "x": 2083.09315269225, + "y": 202.86181131542253, + "strokeColor": "#000000", + "backgroundColor": "#ffff", + "width": 106.04040672794991, + "height": 105.61610706708336, + "seed": 1805720302, + "groupIds": [ + "fkYP5W_VlcVCmSoVFVy5D" + ], + "strokeSharpness": "round", + "boundElementIds": [], + "startBinding": null, + "endBinding": null, + "points": [ + [ + 0, + 0 + ], + [ + 7.560549639916194, + -2.432481274079295 + ], + [ + 8.260640800764907, + -6.319351744325669 + ], + [ + 7.265162864319282, + -17.377969213774225 + ], + [ + 12.287975594132497, + -17.79248566628771 + ], + [ + 12.06183575356039, + -6.171187074095729 + ], + [ + 13.938548022945847, + -2.5765254766629058 + ], + [ + 22.108528016458962, + -0.8911077706957935 + ], + [ + 33.492223733543035, + 3.4474169310756086 + ], + [ + 41.56330060047886, + 9.037092947258257 + ], + [ + 44.656298311390664, + 8.353010214198859 + ], + [ + 52.01360647580834, + 2.5923135147513654 + ], + [ + 54.337930199393, + 4.707569334079753 + ], + [ + 47.01722555818147, + 10.603282362420547 + ], + [ + 45.80930929238161, + 13.74466228133801 + ], + [ + 50.80569021000849, + 23.1778031266833 + ], + [ + 53.8620843977143, + 33.99711161533315 + ], + [ + 54.200666987370354, + 44.62739724353235 + ], + [ + 56.52499071095499, + 46.61663782256035 + ], + [ + 65.97785057891947, + 47.66076409933526 + ], + [ + 65.4562503732332, + 51.46822457412627 + ], + [ + 56.00339050526867, + 49.686009032734695 + ], + [ + 53.05680688718108, + 50.38809394297988 + ], + [ + 48.582026175240465, + 59.20916076400885 + ], + [ + 42.19471137578334, + 66.88708933374122 + ], + [ + 33.15364114388698, + 74.11496347382923 + ], + [ + 34.288350363274766, + 77.18433468400364 + ], + [ + 40.19981936105316, + 85.66336013850295 + ], + [ + 36.25578973560041, + 87.82362140079564 + ], + [ + 31.982328401293195, + 78.46248926419358 + ], + [ + 28.331126961488835, + 75.84317248366355 + ], + [ + 17.862519324556295, + 78.6875164790157 + ], + [ + 3.5962961549951795, + 78.40848273263624 + ], + [ + -5.389868792092051, + 74.61902443503092 + ], + [ + -8.052775105332755, + 76.6262671912447 + ], + [ + -12.829534883723326, + 85.51934272101663 + ], + [ + -16.10555021066551, + 83.27807166138794 + ], + [ + -10.477758517734125, + 75.01507233311793 + ], + [ + -10.011063596856882, + 71.85569023701471 + ], + [ + -17.038940052419996, + 66.46403816987552 + ], + [ + -23.49031101748772, + 57.57096264010348 + ], + [ + -26.299631423552707, + 51.4412213083476 + ], + [ + -30.01488902896755, + 51.063175587446345 + ], + [ + -39.49520153933658, + 53.655489102197755 + ], + [ + -40.06255614903045, + 49.568994881027166 + ], + [ + -30.545640115455438, + 48.3628490095804 + ], + [ + -27.873582921413178, + 46.031567064022724 + ], + [ + -27.830878811006112, + 33.42604255016222 + ], + [ + -25.356073936463183, + 23.77287509476861 + ], + [ + -20.790801181040955, + 15.625889797251343 + ], + [ + -22.932107288595358, + 12.475508789740982 + ], + [ + -32.092138970911364, + 7.605919860989265 + ], + [ + -29.767815247326663, + 3.7624550318266357 + ], + [ + -21.577776929971183, + 10.306246438855302 + ], + [ + -17.286013834060906, + 10.693293248349423 + ], + [ + -9.965309192849324, + 4.806581308601501 + ], + [ + 0, + 0 + ] + ], + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "index": "b2b", + "frameId": null, + "roundness": { + "type": 2 + }, + "boundElements": [], + "updated": 1738919367265, + "link": null, + "locked": false + }, + { + "type": "line", + "version": 882, + "versionNonce": 1704083506, + "isDeleted": false, + "id": "2cCqOR32nC2OigmwnDz7_", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2070.9499013853474, + "y": 217.98507969921093, + "strokeColor": "#000000", + "backgroundColor": "#326ce5", + "width": 21.557705003492888, + "height": 21.557705003492885, + "seed": 1792773422, + "groupIds": [ + "fkYP5W_VlcVCmSoVFVy5D" + ], + "strokeSharpness": "round", + "boundElementIds": [], + "startBinding": null, + "endBinding": null, + "points": [ + [ + 0, + 0 + ], + [ + 6.4174670964155, + -5.81198099131309 + ], + [ + 13.02185071020231, + -9.844784128142559 + ], + [ + 20.747733428217128, + -10.437843412970434 + ], + [ + 21.557705003492888, + 0.2965296424139247 + ], + [ + 20.124678370312722, + 11.11986159052245 + ], + [ + 9.719658903308929, + 6.108510633726992 + ], + [ + 0, + 0 + ] + ], + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "index": "b2c", + "frameId": null, + "roundness": { + "type": 2 + }, + "boundElements": [], + "updated": 1738919367265, + "link": null, + "locked": false + }, + { + "type": "line", + "version": 1000, + "versionNonce": 427780594, + "isDeleted": false, + "id": "tRONc8o-pekH244MoDmB6", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0.9881310661508964, + "x": 2093.820341231093, + "y": 215.42313424716997, + "strokeColor": "#000000", + "backgroundColor": "#326ce5", + "width": 21.849656050086754, + "height": 22.28721404724548, + "seed": 1988999022, + "groupIds": [ + "fkYP5W_VlcVCmSoVFVy5D" + ], + "strokeSharpness": "round", + "boundElementIds": [], + "startBinding": null, + "endBinding": null, + "points": [ + [ + 0, + 0 + ], + [ + 6.307158811343217, + -5.7120802600132725 + ], + [ + 12.798021277385752, + -9.675564522063281 + ], + [ + 19.588707167072652, + -10.78719797872464 + ], + [ + 21.849656050086754, + -0.4228378175566051 + ], + [ + 20.936752849362975, + 11.500016068520841 + ], + [ + 9.552590044364505, + 6.003512926340452 + ], + [ + 0, + 0 + ] + ], + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "index": "b2d", + "frameId": null, + "roundness": { + "type": 2 + }, + "boundElements": [], + "updated": 1738919367265, + "link": null, + "locked": false + }, + { + "type": "line", + "version": 1006, + "versionNonce": 832658354, + "isDeleted": false, + "id": "SBBin5Fgnjwvq1yW2bRcE", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 1.880863085334429, + "x": 2110.573893583749, + "y": 231.8755228454246, + "strokeColor": "#000000", + "backgroundColor": "#326ce5", + "width": 21.479159973687498, + "height": 22.534979750262238, + "seed": 385915310, + "groupIds": [ + "fkYP5W_VlcVCmSoVFVy5D" + ], + "strokeSharpness": "round", + "boundElementIds": [], + "startBinding": null, + "endBinding": null, + "points": [ + [ + 0, + 0 + ], + [ + 6.394085194479206, + -5.7908051648456125 + ], + [ + 12.821883813152631, + -9.760046630725103 + ], + [ + 20.67213951224835, + -10.399813357273743 + ], + [ + 21.479159973687498, + 0.29544924310435966 + ], + [ + 19.380563342165882, + 12.135166392988497 + ], + [ + 9.574674364814067, + 6.794079156258463 + ], + [ + 0, + 0 + ] + ], + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "index": "b2e", + "frameId": null, + "roundness": { + "type": 2 + }, + "boundElements": [], + "updated": 1738919367265, + "link": null, + "locked": false + }, + { + "type": "line", + "version": 1185, + "versionNonce": 1545540978, + "isDeleted": false, + "id": "n2rZHByupWhmqnErLiFa2", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 2.8469082809423476, + "x": 2107.1785184582245, + "y": 254.75314723707572, + "strokeColor": "#000000", + "backgroundColor": "#326ce5", + "width": 20.573332264113013, + "height": 23.385981425370197, + "seed": 1667052526, + "groupIds": [ + "fkYP5W_VlcVCmSoVFVy5D" + ], + "strokeSharpness": "round", + "boundElementIds": [], + "startBinding": null, + "endBinding": null, + "points": [ + [ + 0, + 0 + ], + [ + 3.9968199804359084, + -4.5099335061239545 + ], + [ + 11.103261190280325, + -9.612187799981596 + ], + [ + 18.586782576556548, + -10.698015127009295 + ], + [ + 20.573332264113013, + 0.5226343615079706 + ], + [ + 19.547525553814435, + 12.6879662983609 + ], + [ + 9.342092374121995, + 7.560357671417819 + ], + [ + 0, + 0 + ] + ], + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "index": "b2f", + "frameId": null, + "roundness": { + "type": 2 + }, + "boundElements": [], + "updated": 1738919367265, + "link": null, + "locked": false + }, + { + "type": "line", + "version": 1317, + "versionNonce": 1782552370, + "isDeleted": false, + "id": "i16AtOAEZ457QsbiKNpaa", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 3.774871714878671, + "x": 2087.0168282199834, + "y": 266.5459141977001, + "strokeColor": "#000000", + "backgroundColor": "#326ce5", + "width": 21.060929668098346, + "height": 24.192747374364252, + "seed": 632063534, + "groupIds": [ + "fkYP5W_VlcVCmSoVFVy5D" + ], + "strokeSharpness": "round", + "boundElementIds": [], + "startBinding": null, + "endBinding": null, + "points": [ + [ + 0, + 0 + ], + [ + 5.323764530816631, + -5.225233883686096 + ], + [ + 11.946440312022089, + -10.13358813849016 + ], + [ + 19.14310255451752, + -12.037088588123884 + ], + [ + 20.457394955122687, + -0.0020215484438121066 + ], + [ + 21.060929668098346, + 12.155658786240366 + ], + [ + 10.400753487297417, + 6.523865227139614 + ], + [ + 0, + 0 + ] + ], + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "index": "b2g", + "frameId": null, + "roundness": { + "type": 2 + }, + "boundElements": [], + "updated": 1738919367265, + "link": null, + "locked": false + }, + { + "type": "line", + "version": 1380, + "versionNonce": 1818878194, + "isDeleted": false, + "id": "lmRbzPzlGzWuCbyLJ8rP8", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 4.759646000521123, + "x": 2064.859684680868, + "y": 257.49883352855807, + "strokeColor": "#000000", + "backgroundColor": "#326ce5", + "width": 20.851751550243478, + "height": 20.502820893402166, + "seed": 2128056430, + "groupIds": [ + "fkYP5W_VlcVCmSoVFVy5D" + ], + "strokeSharpness": "round", + "boundElementIds": [], + "startBinding": null, + "endBinding": null, + "points": [ + [ + 0, + 0 + ], + [ + 4.146788698896836, + -5.844864068211204 + ], + [ + 10.689172996507862, + -10.781555944738223 + ], + [ + 16.467244654531225, + -11.162985900365323 + ], + [ + 20.428485246628206, + -1.5789248026187297 + ], + [ + 20.851751550243478, + 9.339834993036844 + ], + [ + 9.574674364814067, + 6.794079156258462 + ], + [ + 0, + 0 + ] + ], + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "index": "b2h", + "frameId": null, + "roundness": { + "type": 2 + }, + "boundElements": [], + "updated": 1738919367265, + "link": null, + "locked": false + }, + { + "type": "line", + "version": 1508, + "versionNonce": 1311044274, + "isDeleted": false, + "id": "efomqrUWJrKqRk6eQORnG", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 5.645190933495279, + "x": 2058.8030921452337, + "y": 236.10781338308766, + "strokeColor": "#000000", + "backgroundColor": "#326ce5", + "width": 23.42043937693637, + "height": 22.639048645082866, + "seed": 178737838, + "groupIds": [ + "fkYP5W_VlcVCmSoVFVy5D" + ], + "strokeSharpness": "round", + "boundElementIds": [], + "startBinding": null, + "endBinding": null, + "points": [ + [ + 0, + 0 + ], + [ + 4.146788698896836, + -5.844864068211203 + ], + [ + 10.689172996507862, + -10.781555944738221 + ], + [ + 17.230354411946674, + -12.192224934711268 + ], + [ + 20.93869500462914, + -1.9981556001148353 + ], + [ + 23.42043937693637, + 10.446823710371596 + ], + [ + 11.462411876252354, + 6.399295000034613 + ], + [ + 0, + 0 + ] + ], + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "index": "b2i", + "frameId": null, + "roundness": { + "type": 2 + }, + "boundElements": [], + "updated": 1738919367265, + "link": null, + "locked": false + }, + { + "type": "ellipse", + "version": 327, + "versionNonce": 1914162290, + "isDeleted": false, + "id": "vt53LcFyavLLvGOUvpFOJ", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2092.281638616759, + "y": 235.7253176140423, + "strokeColor": "#000000", + "backgroundColor": "#326ce5", + "width": 9.43161874441803, + "height": 9.43161874441803, + "seed": 63229166, + "groupIds": [ + "fkYP5W_VlcVCmSoVFVy5D" + ], + "strokeSharpness": "sharp", + "boundElementIds": [], + "index": "b2j", + "frameId": null, + "roundness": null, + "boundElements": [], + "updated": 1738919367265, + "link": null, + "locked": false + }, + { + "id": "WfWZn1VEemvzMrCh94Lc5", + "type": "text", + "x": 2580.7228106820294, + "y": 263.0828960819141, + "width": 304.84912109375, + "height": 35, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b2k", + "roundness": null, + "seed": 1740177198, + "version": 407, + "versionNonce": 1309240882, + "isDeleted": false, + "boundElements": [], + "updated": 1738919367265, + "link": null, + "locked": false, + "text": "k3k-system namespace", + "fontSize": 28, + "fontFamily": 5, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "k3k-system namespace", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "oBIzx8_19aSsMwlniiYpj", + "type": "rectangle", + "x": 2543.7585521628766, + "y": 306.8757173271953, + "width": 379.992577576889, + "height": 165.59987816580406, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "dashed", + "roughness": 1, + "opacity": 100, + "groupIds": [ + "kKiS9zqr1Wb9n2MUwZG0x" + ], + "frameId": null, + "index": "b2l", + "roundness": null, + "seed": 451733870, + "version": 778, + "versionNonce": 115398642, + "isDeleted": false, + "boundElements": [ + { + "id": "G25zwUu4YJwZCyf4cuTcq", + "type": "arrow" + } + ], + "updated": 1738919367265, + "link": null, + "locked": false + }, + { + "type": "line", + "version": 1646, + "versionNonce": 914162546, + "isDeleted": false, + "id": "_X2ORAbE9bePRT9nupnR4", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2732.8114771725277, + "y": 326.25252704539264, + "strokeColor": "#000000", + "backgroundColor": "#326ce5", + "width": 95.91694595296573, + "height": 93.88317402088744, + "seed": 212437934, + "groupIds": [ + "hWUqe8r3kmhItOwenKgMi", + "5-5KcGVgoM_-GbPpc1Gta", + "UsEdZSDK_687Zg7bJO52u", + "CC-Pm0fRY5JIj2dagdkaS", + "L7DLqXj5pUE_jtU0UNz5h", + "kKiS9zqr1Wb9n2MUwZG0x" + ], + "strokeSharpness": "sharp", + "boundElements": [], + "updated": 1738919367265, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -39.59125003164969, + 18.937807635114627 + ], + [ + -47.754394368072326, + 59.432481408072505 + ], + [ + -20.407860841056557, + 93.88317402088744 + ], + [ + 25.509826051320665, + 93.68170798221598 + ], + [ + 48.162551584893414, + 56.813422905343806 + ], + [ + 39.18309281482855, + 16.92314724840031 + ], + [ + 0, + 0 + ] + ], + "index": "b2m", + "frameId": null, + "roundness": null + }, + { + "type": "text", + "version": 919, + "versionNonce": 1588577586, + "isDeleted": false, + "id": "Vj9taoIeJGh96SndiVqWf", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2716.1690965164225, + "y": 395.42670596467974, + "strokeColor": "#fff", + "backgroundColor": "transparent", + "width": 35.55351257324219, + "height": 23.221683381669717, + "seed": 1528292846, + "groupIds": [ + "5-5KcGVgoM_-GbPpc1Gta", + "UsEdZSDK_687Zg7bJO52u", + "CC-Pm0fRY5JIj2dagdkaS", + "L7DLqXj5pUE_jtU0UNz5h", + "kKiS9zqr1Wb9n2MUwZG0x" + ], + "strokeSharpness": "sharp", + "boundElements": [ + { + "id": "6FBmIzEo-ix3S0S9uqBu1", + "type": "arrow" + }, + { + "id": "xxatc34bfW1FUxMkQTYoZ", + "type": "arrow" + }, + { + "id": "kQZ0fcUBuPv2bQcRfNbjn", + "type": "arrow" + } + ], + "updated": 1738919367265, + "link": null, + "locked": false, + "fontSize": 18.577346705335774, + "fontFamily": 1, + "text": "Pod", + "baseline": 14, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "originalText": "Pod", + "index": "b2n", + "frameId": null, + "roundness": null, + "autoResize": true, + "lineHeight": 1.25 + }, + { + "type": "arrow", + "version": 2149, + "versionNonce": 1497215534, + "isDeleted": false, + "id": "kQZ0fcUBuPv2bQcRfNbjn", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2732.4283659890007, + "y": 359.81065730011005, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 0.9316120817336468, + "height": 21.616048664569576, + "seed": 2000746542, + "groupIds": [ + "J0Cn9sivuPZTnOcbQKHx1", + "leFeyqqxxgs3RIssM_444", + "CC-Pm0fRY5JIj2dagdkaS", + "L7DLqXj5pUE_jtU0UNz5h", + "kKiS9zqr1Wb9n2MUwZG0x" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919367330, + "link": null, + "locked": false, + "startBinding": { + "elementId": "4DSlWFl8ccYH--Va4M1AQ", + "focus": 0.06357849557371983, + "gap": 1.1610841690840772, + "fixedPoint": null + }, + "endBinding": { + "elementId": "Vj9taoIeJGh96SndiVqWf", + "focus": -0.1943889965203955, + "gap": 14, + "fixedPoint": null + }, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -0.9316120817336468, + 21.616048664569576 + ] + ], + "index": "b2o", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "arrow", + "version": 1370, + "versionNonce": 2137209966, + "isDeleted": false, + "id": "6FBmIzEo-ix3S0S9uqBu1", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2735.829632793383, + "y": 382.811145234233, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 15.336802800918715, + "height": 7.239641937092449, + "seed": 1225638510, + "groupIds": [ + "J0Cn9sivuPZTnOcbQKHx1", + "leFeyqqxxgs3RIssM_444", + "CC-Pm0fRY5JIj2dagdkaS", + "L7DLqXj5pUE_jtU0UNz5h", + "kKiS9zqr1Wb9n2MUwZG0x" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919367330, + "link": null, + "locked": false, + "startBinding": { + "elementId": "4DSlWFl8ccYH--Va4M1AQ", + "focus": 4.0323558854449555, + "gap": 14, + "fixedPoint": null + }, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 15.336802800918715, + -7.239641937092449 + ] + ], + "index": "b2p", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "arrow", + "version": 1447, + "versionNonce": 1423802030, + "isDeleted": false, + "id": "uTYewNOSXwgGQRWhjO2cd", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2751.2162958775384, + "y": 353.1150642186898, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 0.46506629105565866, + "height": 23.461362085416425, + "seed": 1397179566, + "groupIds": [ + "J0Cn9sivuPZTnOcbQKHx1", + "leFeyqqxxgs3RIssM_444", + "CC-Pm0fRY5JIj2dagdkaS", + "L7DLqXj5pUE_jtU0UNz5h", + "kKiS9zqr1Wb9n2MUwZG0x" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919367330, + "link": null, + "locked": false, + "startBinding": { + "elementId": "4DSlWFl8ccYH--Va4M1AQ", + "focus": -0.9764089313008107, + "gap": 1.6378775642061338, + "fixedPoint": null + }, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 0.46506629105565866, + 23.461362085416425 + ] + ], + "index": "b2q", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "arrow", + "version": 1229, + "versionNonce": 2119530734, + "isDeleted": false, + "id": "xxatc34bfW1FUxMkQTYoZ", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2731.8421881257163, + "y": 383.9799799997195, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 18.85333133897294, + "height": 11.663940739968485, + "seed": 1469480686, + "groupIds": [ + "J0Cn9sivuPZTnOcbQKHx1", + "leFeyqqxxgs3RIssM_444", + "CC-Pm0fRY5JIj2dagdkaS", + "L7DLqXj5pUE_jtU0UNz5h", + "kKiS9zqr1Wb9n2MUwZG0x" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919367330, + "link": null, + "locked": false, + "startBinding": { + "elementId": "4DSlWFl8ccYH--Va4M1AQ", + "focus": -4.2253406802931455, + "gap": 14, + "fixedPoint": null + }, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -18.85333133897294, + -11.663940739968485 + ] + ], + "index": "b2r", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "arrow", + "version": 1291, + "versionNonce": 592718638, + "isDeleted": false, + "id": "EW1xRu2u-oae2zyrxIRAo", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2717.199383547862, + "y": 374.2012345655917, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 1.40380467403088, + "height": 20.887541171656892, + "seed": 2055500078, + "groupIds": [ + "J0Cn9sivuPZTnOcbQKHx1", + "leFeyqqxxgs3RIssM_444", + "CC-Pm0fRY5JIj2dagdkaS", + "L7DLqXj5pUE_jtU0UNz5h", + "kKiS9zqr1Wb9n2MUwZG0x" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919367330, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": { + "elementId": "4DSlWFl8ccYH--Va4M1AQ", + "focus": 0.85893107643783, + "gap": 1.0000000000000728, + "fixedPoint": null + }, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 1.40380467403088, + -20.887541171656892 + ] + ], + "index": "b2s", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "diamond", + "version": 893, + "versionNonce": 26014066, + "isDeleted": false, + "id": "4DSlWFl8ccYH--Va4M1AQ", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2716.2566766738864, + "y": 343.06471035399306, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 35.337320777988985, + "height": 16.153605471047978, + "seed": 1736055662, + "groupIds": [ + "J0Cn9sivuPZTnOcbQKHx1", + "leFeyqqxxgs3RIssM_444", + "CC-Pm0fRY5JIj2dagdkaS", + "L7DLqXj5pUE_jtU0UNz5h", + "kKiS9zqr1Wb9n2MUwZG0x" + ], + "strokeSharpness": "sharp", + "boundElements": [ + { + "id": "kQZ0fcUBuPv2bQcRfNbjn", + "type": "arrow" + }, + { + "id": "uTYewNOSXwgGQRWhjO2cd", + "type": "arrow" + }, + { + "id": "EW1xRu2u-oae2zyrxIRAo", + "type": "arrow" + }, + { + "id": "6FBmIzEo-ix3S0S9uqBu1", + "type": "arrow" + }, + { + "id": "xxatc34bfW1FUxMkQTYoZ", + "type": "arrow" + } + ], + "updated": 1738919367265, + "link": null, + "locked": false, + "index": "b2t", + "frameId": null, + "roundness": null + }, + { + "type": "line", + "version": 565, + "versionNonce": 1329181682, + "isDeleted": false, + "id": "o0PgxsmNTe_smt9Ohf7Th", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2743.1022031919756, + "y": 358.8829839746113, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 8.182148235188777, + "height": 14.941314168605555, + "seed": 1958772142, + "groupIds": [ + "leFeyqqxxgs3RIssM_444", + "CC-Pm0fRY5JIj2dagdkaS", + "L7DLqXj5pUE_jtU0UNz5h", + "kKiS9zqr1Wb9n2MUwZG0x" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919367265, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -8.182148235188777, + 14.941314168605555 + ] + ], + "index": "b2u", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "line", + "version": 567, + "versionNonce": 226649522, + "isDeleted": false, + "id": "yr7zcTUAU5DL6ree-ali7", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2721.401723089954, + "y": 354.96978264473853, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 8.893639386074742, + "height": 13.874077442276572, + "seed": 1199609838, + "groupIds": [ + "leFeyqqxxgs3RIssM_444", + "CC-Pm0fRY5JIj2dagdkaS", + "L7DLqXj5pUE_jtU0UNz5h", + "kKiS9zqr1Wb9n2MUwZG0x" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919367265, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 8.893639386074742, + 13.874077442276572 + ] + ], + "index": "b2v", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "line", + "version": 599, + "versionNonce": 1800331122, + "isDeleted": false, + "id": "zMmxjIRJv1BEq-WDFREil", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2748.9720051867853, + "y": 362.4404397290414, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 8.182148235188777, + "height": 14.941314168605555, + "seed": 2009295406, + "groupIds": [ + "leFeyqqxxgs3RIssM_444", + "CC-Pm0fRY5JIj2dagdkaS", + "L7DLqXj5pUE_jtU0UNz5h", + "kKiS9zqr1Wb9n2MUwZG0x" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919367265, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -8.182148235188777, + 14.941314168605555 + ] + ], + "index": "b2w", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "line", + "version": 606, + "versionNonce": 1424367922, + "isDeleted": false, + "id": "8wXmtmCuqRlrNga4IqU60", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2719.4451224250174, + "y": 363.6855492430918, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 8.893639386074742, + "height": 13.874077442276572, + "seed": 879883374, + "groupIds": [ + "leFeyqqxxgs3RIssM_444", + "CC-Pm0fRY5JIj2dagdkaS", + "L7DLqXj5pUE_jtU0UNz5h", + "kKiS9zqr1Wb9n2MUwZG0x" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919367265, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 8.893639386074742, + 13.874077442276572 + ] + ], + "index": "b2x", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "id": "NJsEX-JJspcN7Xw-Mq-qR", + "type": "text", + "x": 2636.061179560235, + "y": 433.1184852700162, + "width": 193.90875244140625, + "height": 35, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "dashed", + "roughness": 1, + "opacity": 100, + "groupIds": [ + "L7DLqXj5pUE_jtU0UNz5h", + "kKiS9zqr1Wb9n2MUwZG0x" + ], + "frameId": null, + "index": "b2y", + "roundness": null, + "seed": 1733637806, + "version": 242, + "versionNonce": 363801330, + "isDeleted": false, + "boundElements": [], + "updated": 1738919367265, + "link": null, + "locked": false, + "text": "K3k Controller", + "fontSize": 28, + "fontFamily": 5, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "originalText": "K3k Controller", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "50kdAWFQXb7mK1cx1sI6l", + "type": "text", + "x": 2090.1488507411527, + "y": 415.1399149292504, + "width": 296.4451599121094, + "height": 70, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b2z", + "roundness": null, + "seed": 1494626542, + "version": 487, + "versionNonce": 1949367474, + "isDeleted": false, + "boundElements": [], + "updated": 1738919367265, + "link": null, + "locked": false, + "text": "k3k-my-virtual-cluster\nnamespace", + "fontSize": 28, + "fontFamily": 5, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "k3k-my-virtual-cluster\nnamespace", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "type": "line", + "version": 1778, + "versionNonce": 892193650, + "isDeleted": false, + "id": "3UgPNMyfHR6G2d3xroajT", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2305.590730474483, + "y": 608.3362721863366, + "strokeColor": "#000000", + "backgroundColor": "#326ce5", + "width": 98.80853147774154, + "height": 96.71344790337663, + "seed": 1430119214, + "groupIds": [ + "neIfNIyLHuAhtvokNVEMk", + "4ywHXafQPvBT-2HEhIcUd", + "rSwqEeid6o2CvgCRr6dR-", + "c0J9Sje9FXYCJk3IyTMN_", + "AK-lJgijWInrZFkk5Dapq" + ], + "strokeSharpness": "sharp", + "boundElements": [], + "updated": 1738919563156, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -40.78479809932311, + 19.508721250895707 + ], + [ + -49.19403482083305, + 61.224178393768454 + ], + [ + -21.023091803774815, + 96.71344790337663 + ], + [ + 26.278864754718487, + 96.50590831560112 + ], + [ + 49.6144966569085, + 58.52616375268705 + ], + [ + 40.3643362632476, + 17.43332537314085 + ], + [ + 0, + 0 + ] + ], + "index": "b30", + "frameId": null, + "roundness": null + }, + { + "type": "text", + "version": 1054, + "versionNonce": 1543998770, + "isDeleted": false, + "id": "Ls1ElIQpk_zeSJ-i5MVSc", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2288.4466358978093, + "y": 679.5958287462894, + "strokeColor": "#fff", + "backgroundColor": "transparent", + "width": 37.07870008172437, + "height": 23.921741988209273, + "seed": 1312116078, + "groupIds": [ + "4ywHXafQPvBT-2HEhIcUd", + "rSwqEeid6o2CvgCRr6dR-", + "c0J9Sje9FXYCJk3IyTMN_", + "AK-lJgijWInrZFkk5Dapq" + ], + "strokeSharpness": "sharp", + "boundElements": [ + { + "id": "ThRAAIn8gesZ_yw773oKZ", + "type": "arrow" + }, + { + "id": "iDhto2gMGtyfjyidqh26p", + "type": "arrow" + }, + { + "id": "a3Vda-92SJxrpCOTmy1gP", + "type": "arrow" + } + ], + "updated": 1738919563156, + "link": null, + "locked": false, + "fontSize": 19.13739359056742, + "fontFamily": 1, + "text": "Pod", + "baseline": 14, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "Pod", + "index": "b31", + "frameId": null, + "roundness": null, + "autoResize": true, + "lineHeight": 1.25 + }, + { + "type": "arrow", + "version": 2606, + "versionNonce": 1788516206, + "isDeleted": false, + "id": "iDhto2gMGtyfjyidqh26p", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2305.196069728554, + "y": 642.9060714711612, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 0.9596971712188458, + "height": 22.26770258036416, + "seed": 21327790, + "groupIds": [ + "BmqhFNrwx8ok8eU4q5dU_", + "QY8D8VpW-TwSO15fGnj0o", + "c0J9Sje9FXYCJk3IyTMN_", + "AK-lJgijWInrZFkk5Dapq" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919563462, + "link": null, + "locked": false, + "startBinding": { + "elementId": "_dc5x1PHE61VyvPtnUB2Z", + "focus": 0.06357849557370913, + "gap": 1.1960870994108346, + "fixedPoint": null + }, + "endBinding": { + "elementId": "Ls1ElIQpk_zeSJ-i5MVSc", + "focus": -0.2039727852852916, + "gap": 14.422054694764029, + "fixedPoint": null + }, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -0.9596971712188458, + 22.26770258036416 + ] + ], + "index": "b32", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "arrow", + "version": 1676, + "versionNonce": 913406382, + "isDeleted": false, + "id": "a3Vda-92SJxrpCOTmy1gP", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2285.8527069439488, + "y": 672.6925274919124, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 38.646324550459, + "height": 13.550471520399457, + "seed": 446122478, + "groupIds": [ + "BmqhFNrwx8ok8eU4q5dU_", + "QY8D8VpW-TwSO15fGnj0o", + "c0J9Sje9FXYCJk3IyTMN_", + "AK-lJgijWInrZFkk5Dapq" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919563462, + "link": null, + "locked": false, + "startBinding": { + "elementId": "Ls1ElIQpk_zeSJ-i5MVSc", + "focus": -1.4231994947854676, + "gap": 6.90330125437697, + "fixedPoint": null + }, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 38.646324550459, + -13.550471520399457 + ] + ], + "index": "b33", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "arrow", + "version": 1742, + "versionNonce": 565318638, + "isDeleted": false, + "id": "l06uo3rZudwQmk7d0XGBf", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2324.5503949038316, + "y": 636.0086279258667, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 0.4790865347354058, + "height": 24.168646229252495, + "seed": 1496570926, + "groupIds": [ + "BmqhFNrwx8ok8eU4q5dU_", + "QY8D8VpW-TwSO15fGnj0o", + "c0J9Sje9FXYCJk3IyTMN_", + "AK-lJgijWInrZFkk5Dapq" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919563462, + "link": null, + "locked": false, + "startBinding": { + "elementId": "_dc5x1PHE61VyvPtnUB2Z", + "focus": -0.9764089313008519, + "gap": 1.6872542724508284, + "fixedPoint": null + }, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 0.4790865347354058, + 24.168646229252495 + ] + ], + "index": "b34", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "arrow", + "version": 1453, + "versionNonce": 1635549106, + "isDeleted": false, + "id": "ThRAAIn8gesZ_yw773oKZ", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2304.5922204996155, + "y": 667.8040210361016, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 19.421698267798455, + "height": 12.01557080773649, + "seed": 855909998, + "groupIds": [ + "BmqhFNrwx8ok8eU4q5dU_", + "QY8D8VpW-TwSO15fGnj0o", + "c0J9Sje9FXYCJk3IyTMN_", + "AK-lJgijWInrZFkk5Dapq" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919563156, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -19.421698267798455, + -12.01557080773649 + ] + ], + "index": "b35", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "arrow", + "version": 1586, + "versionNonce": 107308590, + "isDeleted": false, + "id": "hWGTJhsY-uA3EOkODlcU4", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2289.5079827491477, + "y": 657.7304780720186, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 1.4461248421170367, + "height": 21.517232944054786, + "seed": 2026973358, + "groupIds": [ + "BmqhFNrwx8ok8eU4q5dU_", + "QY8D8VpW-TwSO15fGnj0o", + "c0J9Sje9FXYCJk3IyTMN_", + "AK-lJgijWInrZFkk5Dapq" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919563462, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": { + "elementId": "_dc5x1PHE61VyvPtnUB2Z", + "focus": 0.8589310764377756, + "gap": 1.0301467639114614, + "fixedPoint": null + }, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 1.4461248421170367, + -21.517232944054786 + ] + ], + "index": "b36", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "diamond", + "version": 1031, + "versionNonce": 815905586, + "isDeleted": false, + "id": "_dc5x1PHE61VyvPtnUB2Z", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2288.5368563136035, + "y": 625.6552884159819, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 36.4026266447552, + "height": 16.640584401506484, + "seed": 2051269358, + "groupIds": [ + "BmqhFNrwx8ok8eU4q5dU_", + "QY8D8VpW-TwSO15fGnj0o", + "c0J9Sje9FXYCJk3IyTMN_", + "AK-lJgijWInrZFkk5Dapq" + ], + "strokeSharpness": "sharp", + "boundElements": [ + { + "id": "iDhto2gMGtyfjyidqh26p", + "type": "arrow" + }, + { + "id": "l06uo3rZudwQmk7d0XGBf", + "type": "arrow" + }, + { + "id": "hWGTJhsY-uA3EOkODlcU4", + "type": "arrow" + } + ], + "updated": 1738919563156, + "link": null, + "locked": false, + "index": "b37", + "frameId": null, + "roundness": null + }, + { + "type": "line", + "version": 696, + "versionNonce": 272208434, + "isDeleted": false, + "id": "q4srDBqBt60h0sarrnHf-", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2316.1916885817195, + "y": 641.9504317969315, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 8.428813526325584, + "height": 15.391746439377117, + "seed": 702895406, + "groupIds": [ + "QY8D8VpW-TwSO15fGnj0o", + "c0J9Sje9FXYCJk3IyTMN_", + "AK-lJgijWInrZFkk5Dapq" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919563156, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -8.428813526325584, + 15.391746439377117 + ] + ], + "index": "b38", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "line", + "version": 699, + "versionNonce": 1466727410, + "isDeleted": false, + "id": "z3f4bDB_PjPBI0maPtQvo", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2293.837009229291, + "y": 637.9192601104284, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 9.161753832962576, + "height": 14.292335979421594, + "seed": 1092517742, + "groupIds": [ + "QY8D8VpW-TwSO15fGnj0o", + "c0J9Sje9FXYCJk3IyTMN_", + "AK-lJgijWInrZFkk5Dapq" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919563156, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 9.161753832962576, + 14.292335979421594 + ] + ], + "index": "b39", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "line", + "version": 730, + "versionNonce": 337391026, + "isDeleted": false, + "id": "1meJ8Ug57rkkXHTXtM3xa", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2322.238446111475, + "y": 645.6151333301167, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 8.428813526325584, + "height": 15.391746439377117, + "seed": 1681416622, + "groupIds": [ + "QY8D8VpW-TwSO15fGnj0o", + "c0J9Sje9FXYCJk3IyTMN_", + "AK-lJgijWInrZFkk5Dapq" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919563156, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -8.428813526325584, + 15.391746439377117 + ] + ], + "index": "b3A", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "line", + "version": 738, + "versionNonce": 191866738, + "isDeleted": false, + "id": "5olQqVGbVs9L-R0N61Xw5", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2291.82142338604, + "y": 646.8977788667315, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 9.161753832962576, + "height": 14.292335979421594, + "seed": 1180433390, + "groupIds": [ + "QY8D8VpW-TwSO15fGnj0o", + "c0J9Sje9FXYCJk3IyTMN_", + "AK-lJgijWInrZFkk5Dapq" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919563156, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 9.161753832962576, + 14.292335979421594 + ] + ], + "index": "b3B", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "id": "LW6f4nnd_cHlRNAJk3AHE", + "type": "text", + "x": 2231.061484145726, + "y": 713.584549753223, + "width": 149.47895449358873, + "height": 36.055136736909674, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "dashed", + "roughness": 1, + "opacity": 100, + "groupIds": [ + "AK-lJgijWInrZFkk5Dapq" + ], + "frameId": null, + "index": "b3C", + "roundness": null, + "seed": 1301433902, + "version": 438, + "versionNonce": 1169025330, + "isDeleted": false, + "boundElements": [], + "updated": 1738919563156, + "link": null, + "locked": false, + "text": "K3s server", + "fontSize": 28.844109389527734, + "fontFamily": 5, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "K3s server", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "9dTzghbze-oemSemmIo7n", + "type": "text", + "x": 3308.4233118158436, + "y": 102.91872893840844, + "width": 61.61216735839844, + "height": 35, + "angle": 0, + "strokeColor": "transparent", + "backgroundColor": "#a5d8ff", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "dashed", + "roughness": 1, + "opacity": 40, + "groupIds": [], + "frameId": null, + "index": "b3d", + "roundness": null, + "seed": 600222446, + "version": 69, + "versionNonce": 909064754, + "isDeleted": false, + "boundElements": [], + "updated": 1738919367265, + "link": null, + "locked": false, + "text": "ssss", + "fontSize": 28, + "fontFamily": 5, + "textAlign": "center", + "verticalAlign": "top", + "containerId": null, + "originalText": "ssss", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "FFf95uIgeGjQB03XArzrK", + "type": "text", + "x": 2322.879997766269, + "y": 893.142667859338, + "width": 156.99986267089844, + "height": 25, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b3e", + "roundness": null, + "seed": 667884846, + "version": 660, + "versionNonce": 527848622, + "isDeleted": false, + "boundElements": [], + "updated": 1738921693970, + "link": null, + "locked": false, + "text": "K3k components", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "K3k components", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "type": "line", + "version": 1050, + "versionNonce": 56611506, + "isDeleted": false, + "id": "grLmDWQsDiNk2BQYG6E4K", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2143.6320346496386, + "y": 527.5576991598662, + "strokeColor": "#000000", + "backgroundColor": "#326ce5", + "width": 74.56969262545775, + "height": 72.98855650463366, + "seed": 2128613230, + "groupIds": [ + "OLccbKYo1KlzaMmbc8eCy" + ], + "strokeSharpness": "sharp", + "boundElementIds": [], + "startBinding": null, + "endBinding": null, + "points": [ + [ + 0, + 0 + ], + [ + -30.779830573061282, + 14.723013543853138 + ], + [ + -37.12618739224919, + 46.20520207911358 + ], + [ + -15.86589204796974, + 72.98855650463366 + ], + [ + 19.832365059962157, + 72.83192870097564 + ], + [ + 37.443505233208555, + 44.16904063155936 + ], + [ + 30.462512732101867, + 13.156735507273018 + ], + [ + 0, + 0 + ] + ], + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "index": "b4B", + "frameId": null, + "roundness": null, + "boundElements": [], + "updated": 1738919367266, + "link": null, + "locked": false + }, + { + "type": "line", + "version": 3471, + "versionNonce": 2096540786, + "isDeleted": false, + "id": "ioRo_g1BI9qB8dhCbpoB1", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0.010125045471368388, + "x": 2137.817515470434, + "y": 545.6657128885385, + "strokeColor": "#000000", + "backgroundColor": "#ffff", + "width": 56.027402022303576, + "height": 55.80321948273368, + "seed": 323482030, + "groupIds": [ + "OLccbKYo1KlzaMmbc8eCy" + ], + "strokeSharpness": "round", + "boundElementIds": [], + "startBinding": null, + "endBinding": null, + "points": [ + [ + 0, + 0 + ], + [ + 3.9946843590662695, + -1.285223345136831 + ], + [ + 4.364583816560461, + -3.3388862946180877 + ], + [ + 3.8386141011418626, + -9.181806233252713 + ], + [ + 6.492462353704386, + -9.400819726754438 + ], + [ + 6.372979336315567, + -3.260602159347162 + ], + [ + 7.364557132379737, + -1.361330394290641 + ], + [ + 11.681239496538245, + -0.4708248002297829 + ], + [ + 17.69591744922602, + 1.82147372210106 + ], + [ + 21.960343457482153, + 4.7748292871787585 + ], + [ + 23.594556598968, + 4.413388026396299 + ], + [ + 27.48185649765045, + 1.369672146122987 + ], + [ + 28.709933828826234, + 2.487286570910849 + ], + [ + 24.84197373063479, + 5.6023395421280675 + ], + [ + 24.203760314433225, + 7.262115858089609 + ], + [ + 26.843643081448892, + 12.24620061203717 + ], + [ + 28.458516422443815, + 17.96267949967549 + ], + [ + 28.63740957698519, + 23.57928645999234 + ], + [ + 29.865486908160953, + 24.63031959989924 + ], + [ + 34.8599903849507, + 25.1819931031988 + ], + [ + 34.584398227954594, + 27.193699067816908 + ], + [ + 29.589894751164813, + 26.25204946735735 + ], + [ + 28.03304081164278, + 26.623002340265668 + ], + [ + 25.668750201623222, + 31.283692281934176 + ], + [ + 22.293955015951155, + 35.34039485361095 + ], + [ + 17.51702429468465, + 39.15930712214137 + ], + [ + 18.11655810990433, + 40.781036989599514 + ], + [ + 21.239935889193962, + 45.26100630087681 + ], + [ + 19.156072386293303, + 46.402399755979246 + ], + [ + 16.898150678974055, + 41.45636145053517 + ], + [ + 14.969005580001015, + 40.0724218862234 + ], + [ + 9.437822639587216, + 41.57525660210832 + ], + [ + 1.9001353982365563, + 41.427826614157595 + ], + [ + -2.8477856222934856, + 39.4256322616653 + ], + [ + -4.254756108010628, + 40.486177013698054 + ], + [ + -6.7786000720805735, + 45.1849134038699 + ], + [ + -8.509512216021257, + 44.00071769420113 + ], + [ + -5.536017890536574, + 39.63488772843409 + ], + [ + -5.289435434276864, + 37.9655998003467 + ], + [ + -9.002677128540677, + 35.11687196865337 + ], + [ + -12.411316965071922, + 30.41813557848146 + ], + [ + -13.895646652752923, + 27.17943164962812 + ], + [ + -15.858636402585077, + 26.979687794985175 + ], + [ + -20.867644729743052, + 28.34935994110819 + ], + [ + -21.167411637352878, + 26.190223988539294 + ], + [ + -16.139063509703984, + 25.5529459761071 + ], + [ + -14.72725807386408, + 24.321192205808988 + ], + [ + -14.704694973291298, + 17.660950026127566 + ], + [ + -13.397109573430448, + 12.560612235086246 + ], + [ + -10.985006678863819, + 8.256079325241366 + ], + [ + -12.116385007584832, + 6.591547203216893 + ], + [ + -16.956170080446924, + 4.018656123173355 + ], + [ + -15.728092749271116, + 1.9879269343035022 + ], + [ + -11.400812389419393, + 5.445397942051484 + ], + [ + -9.13322078185465, + 5.649897602757343 + ], + [ + -5.265260683663174, + 2.539600437603044 + ], + [ + 0, + 0 + ] + ], + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "index": "b4C", + "frameId": null, + "roundness": { + "type": 2 + }, + "boundElements": [], + "updated": 1738919367266, + "link": null, + "locked": false + }, + { + "type": "line", + "version": 985, + "versionNonce": 1510755890, + "isDeleted": false, + "id": "lcbmNJiapRtIItvbrbi5S", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2131.401519494719, + "y": 553.6562276722428, + "strokeColor": "#000000", + "backgroundColor": "#326ce5", + "width": 11.390207206651219, + "height": 11.390207206651217, + "seed": 217680878, + "groupIds": [ + "OLccbKYo1KlzaMmbc8eCy" + ], + "strokeSharpness": "round", + "boundElementIds": [], + "startBinding": null, + "endBinding": null, + "points": [ + [ + 0, + 0 + ], + [ + 3.390726422789228, + -3.0708123968413275 + ], + [ + 6.880211867601436, + -5.201580182404683 + ], + [ + 10.9622514445516, + -5.514928386164008 + ], + [ + 11.390207206651219, + 0.15667410187965508 + ], + [ + 10.633054704474981, + 5.8752788204872095 + ], + [ + 5.135469145195345, + 3.2274864987209697 + ], + [ + 0, + 0 + ] + ], + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "index": "b4D", + "frameId": null, + "roundness": { + "type": 2 + }, + "boundElements": [], + "updated": 1738919367266, + "link": null, + "locked": false + }, + { + "type": "line", + "version": 1103, + "versionNonce": 1334294514, + "isDeleted": false, + "id": "ewPkRFwB-NEpf58EmbyMr", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0.9881310661508964, + "x": 2143.485321954586, + "y": 552.3026007650113, + "strokeColor": "#000000", + "backgroundColor": "#326ce5", + "width": 11.544462166275355, + "height": 11.775649866995707, + "seed": 167632430, + "groupIds": [ + "OLccbKYo1KlzaMmbc8eCy" + ], + "strokeSharpness": "round", + "boundElementIds": [], + "startBinding": null, + "endBinding": null, + "points": [ + [ + 0, + 0 + ], + [ + 3.3324440488825404, + -3.0180289475169877 + ], + [ + 6.761949574917, + -5.112171482528766 + ], + [ + 10.349869501749856, + -5.699513011099051 + ], + [ + 11.544462166275355, + -0.22341016151754417 + ], + [ + 11.062121554685474, + 6.076136855896657 + ], + [ + 5.047196811899782, + 3.1720100162678397 + ], + [ + 0, + 0 + ] + ], + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "index": "b4E", + "frameId": null, + "roundness": { + "type": 2 + }, + "boundElements": [], + "updated": 1738919367266, + "link": null, + "locked": false + }, + { + "type": "line", + "version": 1109, + "versionNonce": 1567615410, + "isDeleted": false, + "id": "WdOyWGInNEV_k3dcYfHKr", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 1.880863085334429, + "x": 2152.3372119267938, + "y": 560.9953681606179, + "strokeColor": "#000000", + "backgroundColor": "#326ce5", + "width": 11.348707234163841, + "height": 11.906559103187837, + "seed": 2134763630, + "groupIds": [ + "OLccbKYo1KlzaMmbc8eCy" + ], + "strokeSharpness": "round", + "boundElementIds": [], + "startBinding": null, + "endBinding": null, + "points": [ + [ + 0, + 0 + ], + [ + 3.378372384736624, + -3.0596239585916343 + ], + [ + 6.774557560174097, + -5.156808363994443 + ], + [ + 10.922310719585418, + -5.4948348644094605 + ], + [ + 11.348707234163841, + 0.1561032631934463 + ], + [ + 10.239894840992186, + 6.411724238778376 + ], + [ + 5.058865261110764, + 3.5897127897257852 + ], + [ + 0, + 0 + ] + ], + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "index": "b4F", + "frameId": null, + "roundness": { + "type": 2 + }, + "boundElements": [], + "updated": 1738919367266, + "link": null, + "locked": false + }, + { + "type": "line", + "version": 1289, + "versionNonce": 1793844082, + "isDeleted": false, + "id": "MDvP7yymGBpVm9nqDMtMI", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 2.8469082809423476, + "x": 2150.5432349604253, + "y": 573.0829666398912, + "strokeColor": "#000000", + "backgroundColor": "#326ce5", + "width": 10.870105021919633, + "height": 12.35619348732643, + "seed": 1552067246, + "groupIds": [ + "OLccbKYo1KlzaMmbc8eCy" + ], + "strokeSharpness": "round", + "boundElementIds": [], + "startBinding": null, + "endBinding": null, + "points": [ + [ + 0, + 0 + ], + [ + 2.111755761453853, + -2.382863904791711 + ], + [ + 5.866507849809183, + -5.078685821765166 + ], + [ + 9.820493638708378, + -5.6523924497891525 + ], + [ + 10.870105021919633, + 0.2761385625198566 + ], + [ + 10.328110826230393, + 6.703801037537276 + ], + [ + 4.935978475801803, + 3.994582930784675 + ], + [ + 0, + 0 + ] + ], + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "index": "b4G", + "frameId": null, + "roundness": { + "type": 2 + }, + "boundElements": [], + "updated": 1738919367266, + "link": null, + "locked": false + }, + { + "type": "line", + "version": 1420, + "versionNonce": 1648534834, + "isDeleted": false, + "id": "RQSd9a3twPfAbRFm_CzJO", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 3.774871714878671, + "x": 2139.890624702855, + "y": 579.3137810609763, + "strokeColor": "#000000", + "backgroundColor": "#326ce5", + "width": 11.127731493008197, + "height": 12.782455527966839, + "seed": 812983534, + "groupIds": [ + "OLccbKYo1KlzaMmbc8eCy" + ], + "strokeSharpness": "round", + "boundElementIds": [], + "startBinding": null, + "endBinding": null, + "points": [ + [ + 0, + 0 + ], + [ + 2.8128588416808156, + -2.760799288642105 + ], + [ + 6.312009117564948, + -5.354172377141463 + ], + [ + 10.114430299459066, + -6.359903949021169 + ], + [ + 10.808848502630248, + -0.001068103290659764 + ], + [ + 11.127731493008197, + 6.42255157894567 + ], + [ + 5.495331590557679, + 3.446942831500251 + ], + [ + 0, + 0 + ] + ], + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "index": "b4H", + "frameId": null, + "roundness": { + "type": 2 + }, + "boundElements": [], + "updated": 1738919367266, + "link": null, + "locked": false + }, + { + "type": "line", + "version": 1482, + "versionNonce": 1289432818, + "isDeleted": false, + "id": "QdZAirTXkmGDdQ780ROpg", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 4.759646000521123, + "x": 2128.1836987579486, + "y": 574.5336746711672, + "strokeColor": "#000000", + "backgroundColor": "#326ce5", + "width": 11.01721035427482, + "height": 10.832849705424145, + "seed": 1285445422, + "groupIds": [ + "OLccbKYo1KlzaMmbc8eCy" + ], + "strokeSharpness": "round", + "boundElementIds": [], + "startBinding": null, + "endBinding": null, + "points": [ + [ + 0, + 0 + ], + [ + 2.190993081823027, + -3.088186466084833 + ], + [ + 5.647720630662613, + -5.69653199172979 + ], + [ + 8.700616726471578, + -5.898063937208797 + ], + [ + 10.7935737982968, + -0.8342391113819538 + ], + [ + 11.01721035427482, + 4.934785768215347 + ], + [ + 5.058865261110762, + 3.5897127897257852 + ], + [ + 0, + 0 + ] + ], + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "index": "b4I", + "frameId": null, + "roundness": { + "type": 2 + }, + "boundElements": [], + "updated": 1738919367266, + "link": null, + "locked": false + }, + { + "type": "line", + "version": 1610, + "versionNonce": 1866236082, + "isDeleted": false, + "id": "qiCkenVd8uCEvIM4Kdct2", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 5.645190933495279, + "x": 2124.983643653012, + "y": 563.231536907473, + "strokeColor": "#000000", + "backgroundColor": "#326ce5", + "width": 12.374399655756315, + "height": 11.961544839173278, + "seed": 1768374638, + "groupIds": [ + "OLccbKYo1KlzaMmbc8eCy" + ], + "strokeSharpness": "round", + "boundElementIds": [], + "startBinding": null, + "endBinding": null, + "points": [ + [ + 0, + 0 + ], + [ + 2.190993081823027, + -3.088186466084832 + ], + [ + 5.647720630662615, + -5.696531991729788 + ], + [ + 9.103812625894594, + -6.44187163215937 + ], + [ + 11.063147709877112, + -1.055743471429398 + ], + [ + 12.374399655756315, + 5.519673207013908 + ], + [ + 6.056268342912206, + 3.3811250323293445 + ], + [ + 0, + 0 + ] + ], + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "index": "b4J", + "frameId": null, + "roundness": { + "type": 2 + }, + "boundElements": [], + "updated": 1738919367266, + "link": null, + "locked": false + }, + { + "type": "ellipse", + "version": 429, + "versionNonce": 1695390322, + "isDeleted": false, + "id": "DzO2u1rTAyQsOUNxgo0Va", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2142.6723345979153, + "y": 563.0294418298944, + "strokeColor": "#000000", + "backgroundColor": "#326ce5", + "width": 4.983280538241474, + "height": 4.983280538241474, + "seed": 1243145134, + "groupIds": [ + "OLccbKYo1KlzaMmbc8eCy" + ], + "strokeSharpness": "sharp", + "boundElementIds": [], + "index": "b4K", + "frameId": null, + "roundness": null, + "boundElements": [], + "updated": 1738919367266, + "link": null, + "locked": false + }, + { + "type": "line", + "version": 1801, + "versionNonce": 1239004142, + "isDeleted": false, + "id": "wgPYi9YmysXvHpRinT5t1", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2750.5826343107997, + "y": 616.9378480124864, + "strokeColor": "#000000", + "backgroundColor": "#326ce5", + "width": 82.60981288607078, + "height": 80.85819832940717, + "seed": 1625046510, + "groupIds": [ + "lSnKmzYKD6NossqEl0WFe", + "byOy1CB3rogCwN3ADkG1k", + "5qoIdi2p_LLkQXm8rnCSS", + "wGJwLm1DhtoIzvVC1WaL_", + "Mp9r4WzFw98L-ja13Y0vX" + ], + "strokeSharpness": "sharp", + "boundElements": [], + "updated": 1738919608204, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -34.09851851042071, + 16.31045202352848 + ], + [ + -41.12914088370334, + 51.18705688235002 + ], + [ + -17.576555933206564, + 80.85819832940717 + ], + [ + 21.97069491650818, + 80.68468288234834 + ], + [ + 41.48067200236744, + 48.93135607058538 + ], + [ + 33.74698739175657, + 14.575297552940347 + ], + [ + 0, + 0 + ] + ], + "index": "b4L", + "frameId": null, + "roundness": null + }, + { + "type": "text", + "version": 1081, + "versionNonce": 144246318, + "isDeleted": false, + "id": "Az1fDy-Y_o8RnRGogW-GN", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2736.249150917222, + "y": 676.5150782953614, + "strokeColor": "#fff", + "backgroundColor": "transparent", + "width": 31, + "height": 20, + "seed": 1924812846, + "groupIds": [ + "byOy1CB3rogCwN3ADkG1k", + "5qoIdi2p_LLkQXm8rnCSS", + "wGJwLm1DhtoIzvVC1WaL_", + "Mp9r4WzFw98L-ja13Y0vX" + ], + "strokeSharpness": "sharp", + "boundElements": [ + { + "id": "juSispWUx7eXGlDBQBFR1", + "type": "arrow" + } + ], + "updated": 1738919608204, + "link": null, + "locked": false, + "fontSize": 16, + "fontFamily": 1, + "text": "Pod", + "baseline": 14, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "Pod", + "index": "b4M", + "frameId": null, + "roundness": null, + "autoResize": true, + "lineHeight": 1.25 + }, + { + "type": "arrow", + "version": 2632, + "versionNonce": 1899861938, + "isDeleted": false, + "id": "juSispWUx7eXGlDBQBFR1", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2750.317366049591, + "y": 645.8698298418846, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 0.537609843352584, + "height": 15.674677465420245, + "seed": 1000086126, + "groupIds": [ + "RdaAEQA3PAx6jIyEROk6O", + "WYHP1anz_Zc70s7ykVmSs", + "wGJwLm1DhtoIzvVC1WaL_", + "Mp9r4WzFw98L-ja13Y0vX" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919608399, + "link": null, + "locked": false, + "startBinding": { + "elementId": "FTvmE9Et6cEUI0rx-NVVm", + "focus": 0.06357849557363486, + "gap": 1, + "fixedPoint": null + }, + "endBinding": { + "focus": -0.17817963642461448, + "gap": 14.970570988056524, + "elementId": "Az1fDy-Y_o8RnRGogW-GN" + }, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -0.537609843352584, + 15.674677465420245 + ] + ], + "index": "b4N", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "arrow", + "version": 1653, + "versionNonce": 134302958, + "isDeleted": false, + "id": "aHzoSbSDTFP6-YH1k_IFF", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2751.541961739433, + "y": 666.4239495546747, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 14.8491375479096, + "height": 7.009442601365463, + "seed": 306879662, + "groupIds": [ + "RdaAEQA3PAx6jIyEROk6O", + "WYHP1anz_Zc70s7ykVmSs", + "wGJwLm1DhtoIzvVC1WaL_", + "Mp9r4WzFw98L-ja13Y0vX" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919608204, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 14.8491375479096, + -7.009442601365463 + ] + ], + "index": "b4O", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "arrow", + "version": 1780, + "versionNonce": 1423167858, + "isDeleted": false, + "id": "YZ5sOmrTV39twL5in44_s", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2766.434042154504, + "y": 640.0735843256443, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 0.40054485578189536, + "height": 20.206426639970267, + "seed": 208590574, + "groupIds": [ + "RdaAEQA3PAx6jIyEROk6O", + "WYHP1anz_Zc70s7ykVmSs", + "wGJwLm1DhtoIzvVC1WaL_", + "Mp9r4WzFw98L-ja13Y0vX" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919608399, + "link": null, + "locked": false, + "startBinding": { + "elementId": "FTvmE9Et6cEUI0rx-NVVm", + "focus": -0.9764089313008195, + "gap": 1.4106449883811916, + "fixedPoint": null + }, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 0.40054485578189536, + 20.206426639970267 + ] + ], + "index": "b4P", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "arrow", + "version": 1531, + "versionNonce": 436824430, + "isDeleted": false, + "id": "z_7CM2ASAQ80S-pfGbC83", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2751.541961739433, + "y": 667.7664018595533, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 18.03183682425391, + "height": 11.1557088967141, + "seed": 579979566, + "groupIds": [ + "RdaAEQA3PAx6jIyEROk6O", + "WYHP1anz_Zc70s7ykVmSs", + "wGJwLm1DhtoIzvVC1WaL_", + "Mp9r4WzFw98L-ja13Y0vX" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919608204, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -18.03183682425391, + -11.1557088967141 + ] + ], + "index": "b4Q", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "arrow", + "version": 1622, + "versionNonce": 1694290738, + "isDeleted": false, + "id": "ILdGexgSLZ_DMhqS6uqbI", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2737.1365000507926, + "y": 658.2343438195456, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 1.199099860023125, + "height": 17.841689914912763, + "seed": 1411150702, + "groupIds": [ + "RdaAEQA3PAx6jIyEROk6O", + "WYHP1anz_Zc70s7ykVmSs", + "wGJwLm1DhtoIzvVC1WaL_", + "Mp9r4WzFw98L-ja13Y0vX" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919608399, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": { + "elementId": "FTvmE9Et6cEUI0rx-NVVm", + "focus": 0.8589310764378262, + "gap": 1, + "fixedPoint": null + }, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 1.199099860023125, + -17.841689914912763 + ] + ], + "index": "b4R", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "diamond", + "version": 1063, + "versionNonce": 487876078, + "isDeleted": false, + "id": "FTvmE9Et6cEUI0rx-NVVm", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2736.324580554276, + "y": 631.4175763183779, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 30.434762370313667, + "height": 13.912518920828106, + "seed": 1264047534, + "groupIds": [ + "RdaAEQA3PAx6jIyEROk6O", + "WYHP1anz_Zc70s7ykVmSs", + "wGJwLm1DhtoIzvVC1WaL_", + "Mp9r4WzFw98L-ja13Y0vX" + ], + "strokeSharpness": "sharp", + "boundElements": [ + { + "id": "juSispWUx7eXGlDBQBFR1", + "type": "arrow" + }, + { + "id": "YZ5sOmrTV39twL5in44_s", + "type": "arrow" + }, + { + "id": "ILdGexgSLZ_DMhqS6uqbI", + "type": "arrow" + } + ], + "updated": 1738919608204, + "link": null, + "locked": false, + "index": "b4S", + "frameId": null, + "roundness": null + }, + { + "type": "line", + "version": 719, + "versionNonce": 2001927918, + "isDeleted": false, + "id": "URcOj0nfp_7SRH0AR7mZF", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2759.4456662024254, + "y": 645.0412859871648, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 7.0469897472182765, + "height": 12.86841606013769, + "seed": 23916526, + "groupIds": [ + "WYHP1anz_Zc70s7ykVmSs", + "wGJwLm1DhtoIzvVC1WaL_", + "Mp9r4WzFw98L-ja13Y0vX" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919608204, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -7.0469897472182765, + 12.86841606013769 + ] + ], + "index": "b4T", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "line", + "version": 722, + "versionNonce": 1857089838, + "isDeleted": false, + "id": "a-9SPs53gDPC8wJksAFvq", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2740.755823829369, + "y": 641.6709865428433, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 7.6597714643676795, + "height": 11.949243484413557, + "seed": 1650770478, + "groupIds": [ + "WYHP1anz_Zc70s7ykVmSs", + "wGJwLm1DhtoIzvVC1WaL_", + "Mp9r4WzFw98L-ja13Y0vX" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919608204, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 7.6597714643676795, + 11.949243484413557 + ] + ], + "index": "b4U", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "line", + "version": 770, + "versionNonce": 571906926, + "isDeleted": false, + "id": "wB3PkJYY9LAUH5b9MuVje", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2764.501115368908, + "y": 648.1051945729122, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 7.0469897472182765, + "height": 12.86841606013769, + "seed": 1898466414, + "groupIds": [ + "WYHP1anz_Zc70s7ykVmSs", + "wGJwLm1DhtoIzvVC1WaL_", + "Mp9r4WzFw98L-ja13Y0vX" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919608204, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -7.0469897472182765, + 12.86841606013769 + ] + ], + "index": "b4V", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "line", + "version": 761, + "versionNonce": 667745710, + "isDeleted": false, + "id": "bD5jAmWnWmbm4I77vPA3o", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2739.0706741072077, + "y": 649.1775625779236, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 7.6597714643676795, + "height": 11.949243484413557, + "seed": 1803587246, + "groupIds": [ + "WYHP1anz_Zc70s7ykVmSs", + "wGJwLm1DhtoIzvVC1WaL_", + "Mp9r4WzFw98L-ja13Y0vX" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919608204, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 7.6597714643676795, + 11.949243484413557 + ] + ], + "index": "b4W", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "id": "QyXUBtsd5wlcloWIYwOgN", + "type": "text", + "x": 2715.844291593765, + "y": 703.4611313786407, + "width": 69.82821655273438, + "height": 35, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "dashed", + "roughness": 1, + "opacity": 100, + "groupIds": [ + "MHlYBBISxCwM8T_MRIpvZ", + "Mp9r4WzFw98L-ja13Y0vX" + ], + "frameId": null, + "index": "b4X", + "roundness": null, + "seed": 1846970606, + "version": 556, + "versionNonce": 1694308334, + "isDeleted": false, + "boundElements": [], + "updated": 1738919608204, + "link": null, + "locked": false, + "text": "nginx", + "fontSize": 28, + "fontFamily": 5, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "nginx", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "type": "line", + "version": 1502, + "versionNonce": 635637102, + "isDeleted": false, + "id": "uMl3tG_II7Oc0jaErEhFs", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2833.891738249493, + "y": 786.3170239842252, + "strokeColor": "#000000", + "backgroundColor": "#326ce5", + "width": 82.60981288607078, + "height": 80.85819832940717, + "seed": 410204974, + "groupIds": [ + "lBC5lvHNLK6xaxlRkRrdU", + "SmmVT7w0SvRreTcC8HS9k", + "oGaKesNWCIfJsNDUiF-4b", + "qLL1p89y3D9D9MWgg19k6" + ], + "strokeSharpness": "sharp", + "boundElements": [], + "updated": 1738921705395, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -34.09851851042071, + 16.31045202352848 + ], + [ + -41.12914088370334, + 51.18705688235002 + ], + [ + -17.576555933206564, + 80.85819832940717 + ], + [ + 21.97069491650818, + 80.68468288234834 + ], + [ + 41.48067200236744, + 48.93135607058538 + ], + [ + 33.74698739175657, + 14.575297552940347 + ], + [ + 0, + 0 + ] + ], + "index": "b4Y", + "frameId": null, + "roundness": null + }, + { + "type": "text", + "version": 708, + "versionNonce": 490418094, + "isDeleted": false, + "id": "Wyem4OFUo3ZPZrJ-7oQf1", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2825.2035396883043, + "y": 846.2470845691246, + "strokeColor": "#fff", + "backgroundColor": "transparent", + "width": 23, + "height": 20, + "seed": 822060398, + "groupIds": [ + "SmmVT7w0SvRreTcC8HS9k", + "oGaKesNWCIfJsNDUiF-4b", + "qLL1p89y3D9D9MWgg19k6" + ], + "strokeSharpness": "sharp", + "boundElements": [], + "updated": 1738921705395, + "link": null, + "locked": false, + "fontSize": 16, + "fontFamily": 1, + "text": "RS", + "baseline": 14, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "RS", + "index": "b4Z", + "frameId": null, + "roundness": null, + "autoResize": true, + "lineHeight": 1.25 + }, + { + "type": "rectangle", + "version": 1056, + "versionNonce": 836045294, + "isDeleted": false, + "id": "1UPa0RrwZi3k5WZ5mL2hC", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "dashed", + "roughness": 0, + "opacity": 100, + "angle": 0, + "x": 2826.38540157104, + "y": 803.9952819062578, + "strokeColor": "#fff", + "backgroundColor": "transparent", + "width": 30.72840895114018, + "height": 20.68258294788275, + "seed": 1225050030, + "groupIds": [ + "Usk0tegyT-2r5UdHB_frr", + "oGaKesNWCIfJsNDUiF-4b", + "qLL1p89y3D9D9MWgg19k6" + ], + "strokeSharpness": "sharp", + "boundElements": [], + "updated": 1738921705395, + "link": null, + "locked": false, + "index": "b4a", + "frameId": null, + "roundness": null + }, + { + "type": "rectangle", + "version": 944, + "versionNonce": 1119460398, + "isDeleted": false, + "id": "kCJF6TgEGtpWHIa0xmflE", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "dashed", + "roughness": 0, + "opacity": 100, + "angle": 0, + "x": 2813.384920860942, + "y": 811.0864532026749, + "strokeColor": "#fff", + "backgroundColor": "transparent", + "width": 30.72840895114018, + "height": 20.68258294788275, + "seed": 1621860846, + "groupIds": [ + "Usk0tegyT-2r5UdHB_frr", + "oGaKesNWCIfJsNDUiF-4b", + "qLL1p89y3D9D9MWgg19k6" + ], + "strokeSharpness": "sharp", + "boundElements": [], + "updated": 1738921705395, + "link": null, + "locked": false, + "index": "b4b", + "frameId": null, + "roundness": null + }, + { + "type": "rectangle", + "version": 911, + "versionNonce": 1708254830, + "isDeleted": false, + "id": "h5ufiroQSo4-tglCO_6_j", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2805.111887681789, + "y": 819.6549518525121, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 30.72840895114018, + "height": 20.68258294788275, + "seed": 184366126, + "groupIds": [ + "Usk0tegyT-2r5UdHB_frr", + "oGaKesNWCIfJsNDUiF-4b", + "qLL1p89y3D9D9MWgg19k6" + ], + "strokeSharpness": "sharp", + "boundElements": [], + "updated": 1738921705395, + "link": null, + "locked": false, + "index": "b4c", + "frameId": null, + "roundness": null + }, + { + "id": "sUpp8OcMI05IGF9RhoSnS", + "type": "text", + "x": 2793.783377527087, + "y": 874.1799517839145, + "width": 80.56825256347656, + "height": 35, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "dashed", + "roughness": 1, + "opacity": 100, + "groupIds": [ + "TczFFSVDCQGBjOLwa-mSK", + "qLL1p89y3D9D9MWgg19k6" + ], + "frameId": null, + "index": "b4d", + "roundness": null, + "seed": 300056174, + "version": 682, + "versionNonce": 199682222, + "isDeleted": false, + "boundElements": [], + "updated": 1738921705395, + "link": null, + "locked": false, + "text": "myapp", + "fontSize": 28, + "fontFamily": 5, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "myapp", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "A_BTlibCQ3XD2lrN2dHB2", + "type": "text", + "x": 2202.073100171061, + "y": 529.5541201459421, + "width": 143.2998809814453, + "height": 25, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b4e", + "roundness": null, + "seed": 438599854, + "version": 557, + "versionNonce": 1904308210, + "isDeleted": false, + "boundElements": [], + "updated": 1738919367266, + "link": null, + "locked": false, + "text": "Virtual Cluster", + "fontSize": 20, + "fontFamily": 5, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "Virtual Cluster", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "G25zwUu4YJwZCyf4cuTcq", + "type": "arrow", + "x": 2542.7585521628766, + "y": 455.14176182432016, + "width": 153.06261638520436, + "height": 111.04805411464531, + "angle": 0, + "strokeColor": "#000000", + "backgroundColor": "#b2f2bb", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b4h", + "roundness": { + "type": 2 + }, + "seed": 1913706350, + "version": 900, + "versionNonce": 1092627374, + "isDeleted": false, + "boundElements": [], + "updated": 1738921697243, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + -65.53566533447429, + 8.548130261018343 + ], + [ + -153.06261638520436, + 111.04805411464531 + ] + ], + "lastCommittedPoint": null, + "startBinding": { + "elementId": "oBIzx8_19aSsMwlniiYpj", + "focus": -0.3769545276366951, + "gap": 1, + "fixedPoint": null + }, + "endBinding": { + "elementId": "66UYWeA69MojJiixYPSWG", + "focus": -0.40580808552164727, + "gap": 1, + "fixedPoint": null + }, + "startArrowhead": null, + "endArrowhead": "arrow", + "elbowed": false, + "fixedSegments": null, + "startIsSpecial": null, + "endIsSpecial": null + }, + { + "type": "line", + "version": 1869, + "versionNonce": 1611479090, + "isDeleted": false, + "id": "4vgvR1hIkctMAVBb8qw02", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2535.7364924629173, + "y": 625.3990433606718, + "strokeColor": "#000000", + "backgroundColor": "#326ce5", + "width": 63.51032705773329, + "height": 62.16368784519552, + "seed": 1497964274, + "groupIds": [ + "u_E9kCxYC3xcNTrAlKlPB", + "d0KD5C-8cTGp6zK0bN4hp", + "hbvwlffffEWRlDxm7NZ9P", + "YLCW4u1bv5K40N6NotoDK", + "i1mIgH61J9jZLNRONA4_e" + ], + "strokeSharpness": "sharp", + "boundElements": [], + "updated": 1738919566053, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -26.214900955745236, + 12.539456346455745 + ], + [ + -31.62003517342468, + 39.35254917238771 + ], + [ + -13.512835544198586, + 62.16368784519552 + ], + [ + 16.89104443024821, + 62.0302893734247 + ], + [ + 31.89029188430862, + 37.61836903936719 + ], + [ + 25.944644244861255, + 11.20547162874769 + ], + [ + 0, + 0 + ] + ], + "index": "b4m", + "frameId": null, + "roundness": null + }, + { + "type": "text", + "version": 1147, + "versionNonce": 2044420594, + "isDeleted": false, + "id": "V-W26aKABrO6jU8tphHoc", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2524.7169272756887, + "y": 671.2019479826391, + "strokeColor": "#fff", + "backgroundColor": "transparent", + "width": 23.832763566538762, + "height": 15.375976494541138, + "seed": 409759922, + "groupIds": [ + "d0KD5C-8cTGp6zK0bN4hp", + "hbvwlffffEWRlDxm7NZ9P", + "YLCW4u1bv5K40N6NotoDK", + "i1mIgH61J9jZLNRONA4_e" + ], + "strokeSharpness": "sharp", + "boundElements": [ + { + "id": "fk7rryVrkqcjdobFRz3x2", + "type": "arrow" + }, + { + "id": "JTm6kRvL0HPrwC9bqXCAV", + "type": "arrow" + }, + { + "id": "3mhJM-nlANC9v2sIqdMHI", + "type": "arrow" + } + ], + "updated": 1738919566053, + "link": null, + "locked": false, + "fontSize": 12.30078119563291, + "fontFamily": 1, + "text": "Pod", + "baseline": 14, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "Pod", + "index": "b4n", + "frameId": null, + "roundness": null, + "autoResize": true, + "lineHeight": 1.25 + }, + { + "type": "arrow", + "version": 2901, + "versionNonce": 1165252526, + "isDeleted": false, + "id": "JTm6kRvL0HPrwC9bqXCAV", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2535.4720752912144, + "y": 647.8684827641441, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 0.40225524548577596, + "height": 9.333465218495007, + "seed": 1119849074, + "groupIds": [ + "ddKgtHbzp6XUHWyOu_RJE", + "KDzYCGjClW6mG2OyIbxee", + "YLCW4u1bv5K40N6NotoDK", + "i1mIgH61J9jZLNRONA4_e" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919566184, + "link": null, + "locked": false, + "startBinding": { + "elementId": "QqLXgAiP6GUhYVx4FmyUD", + "focus": 0.06357849557367726, + "gap": 1.0000000000000995, + "fixedPoint": null + }, + "endBinding": { + "elementId": "V-W26aKABrO6jU8tphHoc", + "focus": -0.20397278528526486, + "gap": 14, + "fixedPoint": null + }, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -0.40225524548577596, + 9.333465218495007 + ] + ], + "index": "b4o", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "arrow", + "version": 1874, + "versionNonce": 1219047918, + "isDeleted": false, + "id": "3mhJM-nlANC9v2sIqdMHI", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2523.049649422649, + "y": 666.7647712137252, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 24.84037233497258, + "height": 8.709722381016613, + "seed": 1862888498, + "groupIds": [ + "ddKgtHbzp6XUHWyOu_RJE", + "KDzYCGjClW6mG2OyIbxee", + "YLCW4u1bv5K40N6NotoDK", + "i1mIgH61J9jZLNRONA4_e" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919566184, + "link": null, + "locked": false, + "startBinding": { + "elementId": "V-W26aKABrO6jU8tphHoc", + "focus": -1.423199494785452, + "gap": 4.437176768913901, + "fixedPoint": null + }, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 24.84037233497258, + -8.709722381016613 + ] + ], + "index": "b4p", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "arrow", + "version": 1939, + "versionNonce": 1019790382, + "isDeleted": false, + "id": "73GqParxz74Ek3Kmymktx", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2547.923036183427, + "y": 643.1857702474226, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 0.3079384143747853, + "height": 15.534677052742838, + "seed": 1127290354, + "groupIds": [ + "ddKgtHbzp6XUHWyOu_RJE", + "KDzYCGjClW6mG2OyIbxee", + "YLCW4u1bv5K40N6NotoDK", + "i1mIgH61J9jZLNRONA4_e" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919566184, + "link": null, + "locked": false, + "startBinding": { + "elementId": "QqLXgAiP6GUhYVx4FmyUD", + "focus": -0.9764089313008901, + "gap": 1.0845022091747483, + "fixedPoint": null + }, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 0.3079384143747853, + 15.534677052742838 + ] + ], + "index": "b4q", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "arrow", + "version": 1546, + "versionNonce": 186238066, + "isDeleted": false, + "id": "fk7rryVrkqcjdobFRz3x2", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2535.094688621429, + "y": 663.6226271175717, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 12.483521317006476, + "height": 7.723147185489771, + "seed": 272467890, + "groupIds": [ + "ddKgtHbzp6XUHWyOu_RJE", + "KDzYCGjClW6mG2OyIbxee", + "YLCW4u1bv5K40N6NotoDK", + "i1mIgH61J9jZLNRONA4_e" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919566053, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -12.483521317006476, + -7.723147185489771 + ] + ], + "index": "b4r", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "arrow", + "version": 1783, + "versionNonce": 599527022, + "isDeleted": false, + "id": "GVWFSoKcnH6vvqHIKM9Kl", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2525.3991202467014, + "y": 657.147740802485, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 0.9052907672248693, + "height": 13.47003505725354, + "seed": 1851113842, + "groupIds": [ + "ddKgtHbzp6XUHWyOu_RJE", + "KDzYCGjClW6mG2OyIbxee", + "YLCW4u1bv5K40N6NotoDK", + "i1mIgH61J9jZLNRONA4_e" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919566184, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": { + "elementId": "QqLXgAiP6GUhYVx4FmyUD", + "focus": 0.8589310764378386, + "gap": 1, + "fixedPoint": null + }, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 0.9052907672248693, + -13.47003505725354 + ] + ], + "index": "b4s", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "diamond", + "version": 1127, + "versionNonce": 1371852786, + "isDeleted": false, + "id": "QqLXgAiP6GUhYVx4FmyUD", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2524.7749174920064, + "y": 636.5310414646084, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 23.398209541144404, + "height": 10.69592819532559, + "seed": 1489027890, + "groupIds": [ + "ddKgtHbzp6XUHWyOu_RJE", + "KDzYCGjClW6mG2OyIbxee", + "YLCW4u1bv5K40N6NotoDK", + "i1mIgH61J9jZLNRONA4_e" + ], + "strokeSharpness": "sharp", + "boundElements": [ + { + "id": "JTm6kRvL0HPrwC9bqXCAV", + "type": "arrow" + }, + { + "id": "73GqParxz74Ek3Kmymktx", + "type": "arrow" + }, + { + "id": "GVWFSoKcnH6vvqHIKM9Kl", + "type": "arrow" + } + ], + "updated": 1738919566053, + "link": null, + "locked": false, + "index": "b4t", + "frameId": null, + "roundness": null + }, + { + "type": "line", + "version": 787, + "versionNonce": 466372338, + "isDeleted": false, + "id": "pd7XJWWp6p_iCfKhMLGdf", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2542.5503809647166, + "y": 647.0049334463945, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 5.417717435525031, + "height": 9.89322314313264, + "seed": 1239780594, + "groupIds": [ + "KDzYCGjClW6mG2OyIbxee", + "YLCW4u1bv5K40N6NotoDK", + "i1mIgH61J9jZLNRONA4_e" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919566053, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -5.417717435525031, + 9.89322314313264 + ] + ], + "index": "b4u", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "line", + "version": 796, + "versionNonce": 1883936946, + "isDeleted": false, + "id": "b2VCI48vLwIZOe-F2_Lfo", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2528.1816521139776, + "y": 644.4138511946218, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 5.888823299483719, + "height": 9.186564347194585, + "seed": 1464540850, + "groupIds": [ + "KDzYCGjClW6mG2OyIbxee", + "YLCW4u1bv5K40N6NotoDK", + "i1mIgH61J9jZLNRONA4_e" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919566053, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 5.888823299483719, + 9.186564347194585 + ] + ], + "index": "b4v", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "line", + "version": 821, + "versionNonce": 1285075570, + "isDeleted": false, + "id": "mY6t2T_g3OhPyZNEj-3Ll", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2546.4370043423764, + "y": 649.360462766188, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 5.417717435525031, + "height": 9.89322314313264, + "seed": 1301837938, + "groupIds": [ + "KDzYCGjClW6mG2OyIbxee", + "YLCW4u1bv5K40N6NotoDK", + "i1mIgH61J9jZLNRONA4_e" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919566053, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -5.417717435525031, + 9.89322314313264 + ] + ], + "index": "b4w", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "line", + "version": 829, + "versionNonce": 863867954, + "isDeleted": false, + "id": "Zfuxs055qev1khDEqEVaX", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2526.886110988091, + "y": 650.1848980281158, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 5.888823299483719, + "height": 9.186564347194585, + "seed": 1284807218, + "groupIds": [ + "KDzYCGjClW6mG2OyIbxee", + "YLCW4u1bv5K40N6NotoDK", + "i1mIgH61J9jZLNRONA4_e" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738919566053, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 5.888823299483719, + 9.186564347194585 + ] + ], + "index": "b4x", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "id": "jFtZEnv-aAk2jDWlaSdIH", + "type": "text", + "x": 2487.831956903941, + "y": 693.0485917404272, + "width": 101.448486328125, + "height": 23.174856381589525, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "dashed", + "roughness": 1, + "opacity": 100, + "groupIds": [ + "i1mIgH61J9jZLNRONA4_e" + ], + "frameId": null, + "index": "b4y", + "roundness": null, + "seed": 1663468530, + "version": 536, + "versionNonce": 920665586, + "isDeleted": false, + "boundElements": [], + "updated": 1738919566053, + "link": null, + "locked": false, + "text": "K3s worker", + "fontSize": 18.53988510527162, + "fontFamily": 5, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "K3s worker", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "type": "line", + "version": 1955, + "versionNonce": 1477141230, + "isDeleted": false, + "id": "zwzr08DPVomDX_BJh74bX", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2490.1657706456235, + "y": 743.5994666771028, + "strokeColor": "#000000", + "backgroundColor": "#326ce5", + "width": 61.79783398630826, + "height": 60.487505566487464, + "seed": 253626354, + "groupIds": [ + "HLS8EoAWjmhWv8LeiSRnb", + "xr9Y1swjFekdQhi4q0p3U", + "esX4YlKXPTZfFNzZUoRRy", + "YJ0zjWPTRNDKEaiTTMti_", + "ys1Y8J4XnnP4Dhj-5aIbR" + ], + "strokeSharpness": "sharp", + "boundElements": [], + "updated": 1738921689282, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -25.50804211349746, + 12.201342324570428 + ], + [ + -30.76743223999179, + 38.29144665689656 + ], + [ + -13.148475316235814, + 60.487505566487464 + ], + [ + 16.435594145294747, + 60.35770405239627 + ], + [ + 31.03040174631648, + 36.60402697371124 + ], + [ + 25.245072607172734, + 10.903327183658684 + ], + [ + 0, + 0 + ] + ], + "index": "b4z", + "frameId": null, + "roundness": null + }, + { + "type": "text", + "version": 1231, + "versionNonce": 1656542510, + "isDeleted": false, + "id": "lmNlZ0oWkzUVi9sq3Ga0G", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2479.443337120402, + "y": 788.1673413370141, + "strokeColor": "#fff", + "backgroundColor": "transparent", + "width": 23.190136699832387, + "height": 14.961378516020893, + "seed": 1975269810, + "groupIds": [ + "xr9Y1swjFekdQhi4q0p3U", + "esX4YlKXPTZfFNzZUoRRy", + "YJ0zjWPTRNDKEaiTTMti_", + "ys1Y8J4XnnP4Dhj-5aIbR" + ], + "strokeSharpness": "sharp", + "boundElements": [ + { + "id": "7Obg4eN-HoGOr4gRq7ZfU", + "type": "arrow" + }, + { + "id": "5mEZGI80sKeMjRBB264NU", + "type": "arrow" + }, + { + "id": "n9ASUwgCn04OX7yImQtEa", + "type": "arrow" + } + ], + "updated": 1738921689282, + "link": null, + "locked": false, + "fontSize": 11.969102812816717, + "fontFamily": 1, + "text": "Pod", + "baseline": 14, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "Pod", + "index": "b50", + "frameId": null, + "roundness": null, + "autoResize": true, + "lineHeight": 1.25 + }, + { + "type": "arrow", + "version": 3159, + "versionNonce": 1648266034, + "isDeleted": false, + "id": "5mEZGI80sKeMjRBB264NU", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2489.918937918803, + "y": 765.2204611923875, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 0.6002235391735575, + "height": 13.926892412400885, + "seed": 1429091186, + "groupIds": [ + "yl9g_CVTjR0gKra90uaNa", + "YFVm4GEUSfxAnHnouNHx5", + "YJ0zjWPTRNDKEaiTTMti_", + "ys1Y8J4XnnP4Dhj-5aIbR" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738921689823, + "link": null, + "locked": false, + "startBinding": { + "elementId": "-ZT-Jav43MM_H89vqZ-hg", + "focus": 0.06357849557371804, + "gap": 1, + "fixedPoint": null + }, + "endBinding": { + "elementId": "lmNlZ0oWkzUVi9sq3Ga0G", + "focus": -0.20397278528526486, + "gap": 14, + "fixedPoint": null + }, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -0.6002235391735575, + 13.926892412400885 + ] + ], + "index": "b51", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "arrow", + "version": 2046, + "versionNonce": 1886016754, + "isDeleted": false, + "id": "n9ASUwgCn04OX7yImQtEa", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2477.8210157634744, + "y": 783.8498086452997, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 24.170576295714447, + "height": 8.4748733427182, + "seed": 1874523442, + "groupIds": [ + "yl9g_CVTjR0gKra90uaNa", + "YFVm4GEUSfxAnHnouNHx5", + "YJ0zjWPTRNDKEaiTTMti_", + "ys1Y8J4XnnP4Dhj-5aIbR" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738921689823, + "link": null, + "locked": false, + "startBinding": { + "elementId": "lmNlZ0oWkzUVi9sq3Ga0G", + "focus": -1.4231994947854578, + "gap": 4.317532691714405, + "fixedPoint": null + }, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 24.170576295714447, + -8.4748733427182 + ] + ], + "index": "b52", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "arrow", + "version": 2112, + "versionNonce": 1643570866, + "isDeleted": false, + "id": "MQEESnGjbRRxQm9LK4YY8", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2502.023716283698, + "y": 760.9065920885029, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 0.29963515999955664, + "height": 15.115799870840258, + "seed": 650739442, + "groupIds": [ + "yl9g_CVTjR0gKra90uaNa", + "YFVm4GEUSfxAnHnouNHx5", + "YJ0zjWPTRNDKEaiTTMti_", + "ys1Y8J4XnnP4Dhj-5aIbR" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738921689823, + "link": null, + "locked": false, + "startBinding": { + "elementId": "-ZT-Jav43MM_H89vqZ-hg", + "focus": -0.9764089313008418, + "gap": 1.0552596811449924, + "fixedPoint": null + }, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 0.29963515999955664, + 15.115799870840258 + ] + ], + "index": "b53", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "arrow", + "version": 1630, + "versionNonce": 1257413294, + "isDeleted": false, + "id": "7Obg4eN-HoGOr4gRq7ZfU", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2489.541272409108, + "y": 780.792389352865, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 12.146915527794798, + "height": 7.514900170280352, + "seed": 383832242, + "groupIds": [ + "yl9g_CVTjR0gKra90uaNa", + "YFVm4GEUSfxAnHnouNHx5", + "YJ0zjWPTRNDKEaiTTMti_", + "ys1Y8J4XnnP4Dhj-5aIbR" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738921689282, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -12.146915527794798, + -7.514900170280352 + ] + ], + "index": "b54", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "arrow", + "version": 1956, + "versionNonce": 529219698, + "isDeleted": false, + "id": "j7kcBE12QEv3_YfKteG4U", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2480.1071354335636, + "y": 774.4920919348368, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 0.9044500670142694, + "height": 13.457526080336136, + "seed": 866642546, + "groupIds": [ + "yl9g_CVTjR0gKra90uaNa", + "YFVm4GEUSfxAnHnouNHx5", + "YJ0zjWPTRNDKEaiTTMti_", + "ys1Y8J4XnnP4Dhj-5aIbR" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738921689823, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": { + "elementId": "-ZT-Jav43MM_H89vqZ-hg", + "focus": 0.8589310764378043, + "gap": 1, + "fixedPoint": null + }, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 0.9044500670142694, + -13.457526080336136 + ] + ], + "index": "b55", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "diamond", + "version": 1208, + "versionNonce": 1943160622, + "isDeleted": false, + "id": "-ZT-Jav43MM_H89vqZ-hg", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2479.499763687967, + "y": 754.4313014767819, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 22.767299993370603, + "height": 10.407523084290592, + "seed": 1676004402, + "groupIds": [ + "yl9g_CVTjR0gKra90uaNa", + "YFVm4GEUSfxAnHnouNHx5", + "YJ0zjWPTRNDKEaiTTMti_", + "ys1Y8J4XnnP4Dhj-5aIbR" + ], + "strokeSharpness": "sharp", + "boundElements": [ + { + "id": "5mEZGI80sKeMjRBB264NU", + "type": "arrow" + }, + { + "id": "MQEESnGjbRRxQm9LK4YY8", + "type": "arrow" + }, + { + "id": "j7kcBE12QEv3_YfKteG4U", + "type": "arrow" + } + ], + "updated": 1738921689282, + "link": null, + "locked": false, + "index": "b56", + "frameId": null, + "roundness": null + }, + { + "type": "line", + "version": 873, + "versionNonce": 678838318, + "isDeleted": false, + "id": "Vko2G_nqg4tROOmIvon3T", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2496.7959293921317, + "y": 764.6227753341367, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 5.271634050332552, + "height": 9.626462178868115, + "seed": 495023602, + "groupIds": [ + "YFVm4GEUSfxAnHnouNHx5", + "YJ0zjWPTRNDKEaiTTMti_", + "ys1Y8J4XnnP4Dhj-5aIbR" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738921689282, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -5.271634050332552, + 9.626462178868115 + ] + ], + "index": "b57", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "line", + "version": 876, + "versionNonce": 878316142, + "isDeleted": false, + "id": "M6KVnJo04W0GMs9p8fGwl", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2482.8146390847287, + "y": 762.1015590491951, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 5.730037011231024, + "height": 8.938857737520383, + "seed": 25290674, + "groupIds": [ + "YFVm4GEUSfxAnHnouNHx5", + "YJ0zjWPTRNDKEaiTTMti_", + "ys1Y8J4XnnP4Dhj-5aIbR" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738921689282, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 5.730037011231024, + 8.938857737520383 + ] + ], + "index": "b58", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "line", + "version": 907, + "versionNonce": 499813550, + "isDeleted": false, + "id": "A4lGMcl8AyFWoYkdpNZSj", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2500.5777538195443, + "y": 766.9147901386292, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 5.271634050332552, + "height": 9.626462178868115, + "seed": 2014191986, + "groupIds": [ + "YFVm4GEUSfxAnHnouNHx5", + "YJ0zjWPTRNDKEaiTTMti_", + "ys1Y8J4XnnP4Dhj-5aIbR" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738921689282, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -5.271634050332552, + 9.626462178868115 + ] + ], + "index": "b59", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "line", + "version": 915, + "versionNonce": 40945390, + "isDeleted": false, + "id": "HJ1bgEOnXnhpqtcMYveWg", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2481.554030942258, + "y": 767.7169953202016, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 5.730037011231024, + "height": 8.938857737520383, + "seed": 1282220850, + "groupIds": [ + "YFVm4GEUSfxAnHnouNHx5", + "YJ0zjWPTRNDKEaiTTMti_", + "ys1Y8J4XnnP4Dhj-5aIbR" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738921689282, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 5.730037011231024, + 8.938857737520383 + ] + ], + "index": "b5A", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "id": "CwFEt3eFK-MqrCPMP1ACO", + "type": "text", + "x": 2443.552933445561, + "y": 809.4249119817777, + "width": 98.97918701171875, + "height": 22.549969330564494, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "dashed", + "roughness": 1, + "opacity": 100, + "groupIds": [ + "ys1Y8J4XnnP4Dhj-5aIbR" + ], + "frameId": null, + "index": "b5B", + "roundness": null, + "seed": 1225125106, + "version": 622, + "versionNonce": 1658173742, + "isDeleted": false, + "boundElements": [], + "updated": 1738921689282, + "link": null, + "locked": false, + "text": "K3s worker", + "fontSize": 18.039975464451594, + "fontFamily": 5, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "K3s worker", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "type": "line", + "version": 1977, + "versionNonce": 1769284014, + "isDeleted": false, + "id": "kaxDCp8o8XAlrsxCHhi6_", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2306.949365414953, + "y": 767.0938486158916, + "strokeColor": "#000000", + "backgroundColor": "#326ce5", + "width": 65.93348392166075, + "height": 64.53546537914208, + "seed": 1694772846, + "groupIds": [ + "11KIUVm-yVEa_jpih4kM0", + "IMHkCn-3Pb3geCpYXSQ1A", + "wOjbmzZcr0adaMUOlkCNc", + "-YDj0YsKJwjLjK204lZC8", + "Dxo0GMlq3T7B1AoYJMv3B" + ], + "strokeSharpness": "sharp", + "boundElements": [], + "updated": 1738921684150, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -27.21509761872806, + 13.017883574333377 + ], + [ + -32.826457952486436, + 40.853996323705815 + ], + [ + -14.028400834395919, + 64.53546537914208 + ], + [ + 17.535501042994873, + 64.39697725601086 + ], + [ + 33.10702596917432, + 39.05365072300008 + ], + [ + 26.934529602040133, + 11.633002343021317 + ], + [ + 0, + 0 + ] + ], + "index": "b5C", + "frameId": null, + "roundness": null + }, + { + "type": "text", + "version": 1253, + "versionNonce": 100711406, + "isDeleted": false, + "id": "B44WTASfE9i34AN24Njog", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2295.5093625405334, + "y": 814.644305610273, + "strokeColor": "#fff", + "backgroundColor": "transparent", + "width": 24.742072765499767, + "height": 15.962627590645011, + "seed": 2106601646, + "groupIds": [ + "IMHkCn-3Pb3geCpYXSQ1A", + "wOjbmzZcr0adaMUOlkCNc", + "-YDj0YsKJwjLjK204lZC8", + "Dxo0GMlq3T7B1AoYJMv3B" + ], + "strokeSharpness": "sharp", + "boundElements": [ + { + "id": "WcMq3NZk6zjCozTaDBFTn", + "type": "arrow" + }, + { + "id": "1Ys7q9weFt3OIA1yZT3Qu", + "type": "arrow" + }, + { + "id": "HZK0g3paDFbDbL72MIfp1", + "type": "arrow" + } + ], + "updated": 1738921684150, + "link": null, + "locked": false, + "fontSize": 12.770102072516009, + "fontFamily": 1, + "text": "Pod", + "baseline": 14, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "Pod", + "index": "b5D", + "frameId": null, + "roundness": null, + "autoResize": true, + "lineHeight": 1.25 + }, + { + "type": "arrow", + "version": 3212, + "versionNonce": 1217138610, + "isDeleted": false, + "id": "1Ys7q9weFt3OIA1yZT3Qu", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2306.6860140873196, + "y": 790.1617686753503, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 0.6403918473626462, + "height": 14.858911352057698, + "seed": 568453870, + "groupIds": [ + "PuD_ELRc78eNqmtqEmgoY", + "ANSooGwOy3C4w3AD0D7NK", + "-YDj0YsKJwjLjK204lZC8", + "Dxo0GMlq3T7B1AoYJMv3B" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738921684368, + "link": null, + "locked": false, + "startBinding": { + "elementId": "91RPjkE2WoheRIMAjZZLI", + "focus": 0.06357849557370736, + "gap": 1, + "fixedPoint": null + }, + "endBinding": { + "elementId": "B44WTASfE9i34AN24Njog", + "focus": -0.20397278528526486, + "gap": 14, + "fixedPoint": null + }, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -0.6403918473626462, + 14.858911352057698 + ] + ], + "index": "b5E", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "arrow", + "version": 2081, + "versionNonce": 731072882, + "isDeleted": false, + "id": "HZK0g3paDFbDbL72MIfp1", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2293.7784717923814, + "y": 810.0378339275684, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 25.78812558258672, + "height": 9.042030913316847, + "seed": 1082285358, + "groupIds": [ + "PuD_ELRc78eNqmtqEmgoY", + "ANSooGwOy3C4w3AD0D7NK", + "-YDj0YsKJwjLjK204lZC8", + "Dxo0GMlq3T7B1AoYJMv3B" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738921684368, + "link": null, + "locked": false, + "startBinding": { + "elementId": "B44WTASfE9i34AN24Njog", + "focus": -1.4231994947854656, + "gap": 4.60647168270458, + "fixedPoint": null + }, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 25.78812558258672, + -9.042030913316847 + ] + ], + "index": "b5F", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "arrow", + "version": 2147, + "versionNonce": 621628210, + "isDeleted": false, + "id": "3Ab6_fI9tmHJo86hhRPhg", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2319.600871424778, + "y": 785.5592057560067, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 0.31968741830938757, + "height": 16.12738316957678, + "seed": 249202542, + "groupIds": [ + "PuD_ELRc78eNqmtqEmgoY", + "ANSooGwOy3C4w3AD0D7NK", + "-YDj0YsKJwjLjK204lZC8", + "Dxo0GMlq3T7B1AoYJMv3B" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738921684368, + "link": null, + "locked": false, + "startBinding": { + "elementId": "91RPjkE2WoheRIMAjZZLI", + "focus": -0.9764089313008789, + "gap": 1.1258800306070933, + "fixedPoint": null + }, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 0.31968741830938757, + 16.12738316957678 + ] + ], + "index": "b5G", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "arrow", + "version": 1652, + "versionNonce": 524972398, + "isDeleted": false, + "id": "WcMq3NZk6zjCozTaDBFTn", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2306.2830743529476, + "y": 806.7758052648132, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 12.959814413998265, + "height": 8.017814178727415, + "seed": 758344110, + "groupIds": [ + "PuD_ELRc78eNqmtqEmgoY", + "ANSooGwOy3C4w3AD0D7NK", + "-YDj0YsKJwjLjK204lZC8", + "Dxo0GMlq3T7B1AoYJMv3B" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738921684150, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -12.959814413998265, + -8.017814178727415 + ] + ], + "index": "b5H", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "arrow", + "version": 1991, + "versionNonce": 1801524466, + "isDeleted": false, + "id": "OVDt2OLP97WXU0pPKOuC3", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2296.2175837286377, + "y": 800.0538777842279, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 0.9649778981677991, + "height": 14.358133970193206, + "seed": 1253442542, + "groupIds": [ + "PuD_ELRc78eNqmtqEmgoY", + "ANSooGwOy3C4w3AD0D7NK", + "-YDj0YsKJwjLjK204lZC8", + "Dxo0GMlq3T7B1AoYJMv3B" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738921684368, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": { + "elementId": "91RPjkE2WoheRIMAjZZLI", + "focus": 0.8589310764378086, + "gap": 1, + "fixedPoint": null + }, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 0.9649778981677991, + -14.358133970193206 + ] + ], + "index": "b5I", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "diamond", + "version": 1230, + "versionNonce": 2075356654, + "isDeleted": false, + "id": "91RPjkE2WoheRIMAjZZLI", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2295.569565300814, + "y": 778.6505741439252, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 24.290938876354677, + "height": 11.104017919049076, + "seed": 1231771182, + "groupIds": [ + "PuD_ELRc78eNqmtqEmgoY", + "ANSooGwOy3C4w3AD0D7NK", + "-YDj0YsKJwjLjK204lZC8", + "Dxo0GMlq3T7B1AoYJMv3B" + ], + "strokeSharpness": "sharp", + "boundElements": [ + { + "id": "1Ys7q9weFt3OIA1yZT3Qu", + "type": "arrow" + }, + { + "id": "3Ab6_fI9tmHJo86hhRPhg", + "type": "arrow" + }, + { + "id": "OVDt2OLP97WXU0pPKOuC3", + "type": "arrow" + } + ], + "updated": 1738921684150, + "link": null, + "locked": false, + "index": "b5J", + "frameId": null, + "roundness": null + }, + { + "type": "line", + "version": 895, + "versionNonce": 707659502, + "isDeleted": false, + "id": "lgcfMmRphrrFzfZtO9N1B", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2314.023229285454, + "y": 789.5240843362209, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 5.624423648496949, + "height": 10.270686662472665, + "seed": 1648124014, + "groupIds": [ + "ANSooGwOy3C4w3AD0D7NK", + "-YDj0YsKJwjLjK204lZC8", + "Dxo0GMlq3T7B1AoYJMv3B" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738921684150, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -5.624423648496949, + 10.270686662472665 + ] + ], + "index": "b5K", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "line", + "version": 898, + "versionNonce": 552270126, + "isDeleted": false, + "id": "MveeJC6-bVdz8qaH5FM_i", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2299.1062796090064, + "y": 786.8341425912878, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 6.113503965757543, + "height": 9.537066186581749, + "seed": 1223828142, + "groupIds": [ + "ANSooGwOy3C4w3AD0D7NK", + "-YDj0YsKJwjLjK204lZC8", + "Dxo0GMlq3T7B1AoYJMv3B" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738921684150, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 6.113503965757543, + 9.537066186581749 + ] + ], + "index": "b5L", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "line", + "version": 929, + "versionNonce": 265266030, + "isDeleted": false, + "id": "Thuo6tqAGc2p_Siu5hNo2", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2318.058141902854, + "y": 791.969485922524, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 5.624423648496949, + "height": 10.270686662472665, + "seed": 1345690862, + "groupIds": [ + "ANSooGwOy3C4w3AD0D7NK", + "-YDj0YsKJwjLjK204lZC8", + "Dxo0GMlq3T7B1AoYJMv3B" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738921684150, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -5.624423648496949, + 10.270686662472665 + ] + ], + "index": "b5M", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "type": "line", + "version": 937, + "versionNonce": 153421230, + "isDeleted": false, + "id": "maNxYEnETvZB6yAuxV7pZ", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 2297.76130873654, + "y": 792.82537647773, + "strokeColor": "#fff", + "backgroundColor": "#fff", + "width": 6.113503965757543, + "height": 9.537066186581749, + "seed": 227528494, + "groupIds": [ + "ANSooGwOy3C4w3AD0D7NK", + "-YDj0YsKJwjLjK204lZC8", + "Dxo0GMlq3T7B1AoYJMv3B" + ], + "strokeSharpness": "round", + "boundElements": [], + "updated": 1738921684150, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 6.113503965757543, + 9.537066186581749 + ] + ], + "index": "b5N", + "frameId": null, + "roundness": { + "type": 2 + } + }, + { + "id": "AmOWceVqM0IkFQo6Vl0Nd", + "type": "text", + "x": 2257.2170923913673, + "y": 837.3244806570332, + "width": 104.99879455566406, + "height": 24.059063957162763, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "dashed", + "roughness": 1, + "opacity": 100, + "groupIds": [ + "Dxo0GMlq3T7B1AoYJMv3B" + ], + "frameId": null, + "index": "b5O", + "roundness": null, + "seed": 2104080750, + "version": 644, + "versionNonce": 1846812654, + "isDeleted": false, + "boundElements": [], + "updated": 1738921684150, + "link": null, + "locked": false, + "text": "K3s worker", + "fontSize": 19.247251165730212, + "fontFamily": 5, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "K3s worker", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "ejBEEPTWSujQv328VAwd5", + "type": "line", + "x": 2362.2557925938218, + "y": 662.4250335894174, + "width": 133.07133066894949, + "height": 1.4785703407660549, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "dotted", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b5P", + "roundness": null, + "seed": 563548978, + "version": 25, + "versionNonce": 1130511342, + "isDeleted": false, + "boundElements": null, + "updated": 1738919585100, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 133.07133066894949, + -1.4785703407660549 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "OIRYambwuUjOuzB2M4Oxs", + "type": "line", + "x": 2345.9915188453947, + "y": 696.4321514270378, + "width": 119.41488705927986, + "height": 61.24124092125123, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "dotted", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b5Q", + "roundness": null, + "seed": 1038693298, + "version": 54, + "versionNonce": 228131506, + "isDeleted": false, + "boundElements": null, + "updated": 1738921686954, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 119.41488705927986, + 61.24124092125123 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "qyfSvMTYJ74zOykOYTKsN", + "type": "line", + "x": 2307.1599973748466, + "y": 761.6810286921035, + "width": 1.0898777301367772, + "height": 50.891248535888394, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "dotted", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b5R", + "roundness": null, + "seed": 392724594, + "version": 74, + "versionNonce": 1291416882, + "isDeleted": false, + "boundElements": null, + "updated": 1738921682016, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + -1.0898777301367772, + -50.891248535888394 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": null + }, + { + "id": "rxFeBuUweL3-iSiMIuFfE", + "type": "text", + "x": 929.5664681776333, + "y": 1034.2321353358775, + "width": 225.1200714111328, + "height": 45, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b5f", + "roundness": null, + "seed": 889849970, + "version": 190, + "versionNonce": 2022248302, + "isDeleted": false, + "boundElements": [], + "updated": 1738919669727, + "link": null, + "locked": false, + "text": "Shared Mode", + "fontSize": 36, + "fontFamily": 5, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "Shared Mode", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "OlfG6MystTPzoNH9m-F19", + "type": "text", + "x": 2489.3464064773348, + "y": 1004.8413129498579, + "width": 220.83607482910156, + "height": 45, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b5g", + "roundness": null, + "seed": 1885506542, + "version": 291, + "versionNonce": 1019296626, + "isDeleted": false, + "boundElements": [], + "updated": 1738921734990, + "link": null, + "locked": false, + "text": "Virtual Mode", + "fontSize": 36, + "fontFamily": 5, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "Virtual Mode", + "autoResize": true, + "lineHeight": 1.25 + } + ], + "appState": { + "gridSize": 20, + "gridStep": 5, + "gridModeEnabled": false, + "viewBackgroundColor": "#ffffff" + }, + "files": {} +} \ No newline at end of file diff --git a/docs/images/architecture/virtual-mode.png b/docs/images/architecture/virtual-mode.png new file mode 100644 index 00000000..5337d08c Binary files /dev/null and b/docs/images/architecture/virtual-mode.png differ diff --git a/pkg/apis/k3k.io/v1alpha1/register.go b/pkg/apis/k3k.io/v1alpha1/register.go index 6c2a6f68..6fb0e830 100644 --- a/pkg/apis/k3k.io/v1alpha1/register.go +++ b/pkg/apis/k3k.io/v1alpha1/register.go @@ -7,11 +7,10 @@ import ( "k8s.io/apimachinery/pkg/runtime/schema" ) -var SchemeGroupVersion = schema.GroupVersion{Group: k3k.GroupName, Version: "v1alpha1"} - var ( - SchemBuilder = runtime.NewSchemeBuilder(addKnownTypes) - AddToScheme = SchemBuilder.AddToScheme + SchemeGroupVersion = schema.GroupVersion{Group: k3k.GroupName, Version: "v1alpha1"} + SchemBuilder = runtime.NewSchemeBuilder(addKnownTypes) + AddToScheme = SchemBuilder.AddToScheme ) func Resource(resource string) schema.GroupResource { diff --git a/pkg/apis/k3k.io/v1alpha1/set_types.go b/pkg/apis/k3k.io/v1alpha1/set_types.go index 557256f5..5cddfb42 100644 --- a/pkg/apis/k3k.io/v1alpha1/set_types.go +++ b/pkg/apis/k3k.io/v1alpha1/set_types.go @@ -9,7 +9,7 @@ import ( // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object // +kubebuilder:storageversion // +kubebuilder:subresource:status - +// +kubebuilder:object:root=true type ClusterSet struct { metav1.ObjectMeta `json:"metadata,omitempty"` metav1.TypeMeta `json:",inline"` @@ -77,7 +77,7 @@ type ClusterSetStatus struct { } // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object - +// +kubebuilder:object:root=true type ClusterSetList struct { metav1.ListMeta `json:"metadata,omitempty"` metav1.TypeMeta `json:",inline"` diff --git a/pkg/apis/k3k.io/v1alpha1/types.go b/pkg/apis/k3k.io/v1alpha1/types.go index 01de3b69..3279cb3f 100644 --- a/pkg/apis/k3k.io/v1alpha1/types.go +++ b/pkg/apis/k3k.io/v1alpha1/types.go @@ -7,9 +7,9 @@ import ( // +genclient // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object +// +kubebuilder:object:root=true // +kubebuilder:storageversion // +kubebuilder:subresource:status - type Cluster struct { metav1.ObjectMeta `json:"metadata,omitempty"` metav1.TypeMeta `json:",inline"` @@ -125,7 +125,7 @@ type Addon struct { } // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object - +// +kubebuilder:object:root=true type ClusterList struct { metav1.ListMeta `json:"metadata,omitempty"` metav1.TypeMeta `json:",inline"`