diff --git a/keps/prod-readiness/sig-storage/4979.yaml b/keps/prod-readiness/sig-storage/4979.yaml new file mode 100644 index 00000000000..f5faefd9352 --- /dev/null +++ b/keps/prod-readiness/sig-storage/4979.yaml @@ -0,0 +1,3 @@ +kep-number: 4979 +alpha: + approver: "@jpbetz" diff --git a/keps/sig-storage/4979-evented-desired-state-of-world-populator-kubelet-volume-manager/README.md b/keps/sig-storage/4979-evented-desired-state-of-world-populator-kubelet-volume-manager/README.md new file mode 100644 index 00000000000..ab568735b73 --- /dev/null +++ b/keps/sig-storage/4979-evented-desired-state-of-world-populator-kubelet-volume-manager/README.md @@ -0,0 +1,418 @@ +# KEP-4979: Evented desired state of world populator in kubelet volume manager + + + + + + +- [Release Signoff Checklist](#release-signoff-checklist) +- [Summary](#summary) +- [Motivation](#motivation) + - [Goals](#goals) + - [Non-Goals](#non-goals) +- [Proposal](#proposal) + - [Risks and Mitigations](#risks-and-mitigations) +- [Design Details](#design-details) + - [Test Plan](#test-plan) + - [Unit tests](#unit-tests) + - [Integration tests](#integration-tests) + - [e2e tests](#e2e-tests) + - [Graduation Criteria](#graduation-criteria) + - [Alpha](#alpha) + - [Beta](#beta) + - [GA](#ga) + - [Deprecation](#deprecation) + - [Upgrade / Downgrade Strategy](#upgrade--downgrade-strategy) + - [Version Skew Strategy](#version-skew-strategy) +- [Production Readiness Review Questionnaire](#production-readiness-review-questionnaire) + - [Feature Enablement and Rollback](#feature-enablement-and-rollback) + - [Rollout, Upgrade and Rollback Planning](#rollout-upgrade-and-rollback-planning) + - [Monitoring Requirements](#monitoring-requirements) + - [Dependencies](#dependencies) + - [Scalability](#scalability) + - [Troubleshooting](#troubleshooting) +- [Implementation History](#implementation-history) +- [Drawbacks](#drawbacks) +- [Alternatives](#alternatives) +- [Infrastructure Needed (Optional)](#infrastructure-needed-optional) + + +## Release Signoff Checklist + + + +Items marked with (R) are required *prior to targeting to a milestone / release*. + +- [ ] (R) Enhancement issue in release milestone, which links to KEP dir in [kubernetes/enhancements] (not the initial KEP PR) +- [ ] (R) KEP approvers have approved the KEP status as `implementable` +- [ ] (R) Design details are appropriately documented +- [ ] (R) Test plan is in place, giving consideration to SIG Architecture and SIG Testing input (including test refactors) + - [ ] e2e Tests for all Beta API Operations (endpoints) + - [ ] (R) Ensure GA e2e tests meet requirements for [Conformance Tests](https://github.com/kubernetes/community/blob/master/contributors/devel/sig-architecture/conformance-tests.md) + - [ ] (R) Minimum Two Week Window for GA e2e tests to prove flake free +- [ ] (R) Graduation criteria is in place + - [ ] (R) [all GA Endpoints](https://github.com/kubernetes/community/pull/1806) must be hit by [Conformance Tests](https://github.com/kubernetes/community/blob/master/contributors/devel/sig-architecture/conformance-tests.md) +- [ ] (R) Production readiness review completed +- [ ] (R) Production readiness review approved +- [ ] "Implementation History" section is up-to-date for milestone +- [ ] User-facing documentation has been created in [kubernetes/website], for publication to [kubernetes.io] +- [ ] Supporting documentation—e.g., additional design documents, links to mailing list discussions/SIG meetings, relevant PRs/issues, release notes + + + +[kubernetes.io]: https://kubernetes.io/ +[kubernetes/enhancements]: https://git.k8s.io/enhancements +[kubernetes/kubernetes]: https://git.k8s.io/kubernetes +[kubernetes/website]: https://git.k8s.io/website + +## Summary + +This KEP proposes optimizing the loop iteration period (currently fixed at 100ms) in the Desired State of the World Populator (DSWP) in kubelet volume manager. The enhancement involves dynamically increasing the sleep period when no changes are detected and reacting to state pod manager and pod worker channels . + +## Motivation + +In the volume manager, the Desired State of the World executes a populator loop every 100ms, regardless of whether any changes have occurred. This fixed frequency may result in unnecessary CPU cycles during idle periods and also increasing the waiting period during the pod sync loop iteration. By adopting an event-based approach, the kubelet can respond precisely when changes occur, improving performance and reducing system overhead. + +The diagram below illustrates how a kubelet sync loop iteration works, with a focus on Volume Manager behavior : +![Sync pod process](./images/sync-loop-process.png) + +On the other hand, the Unmount process follows this flow: +![Sync terminating process](./images/sync-terminating-process.png) + + +### Goals + +1. Reducing the waiting period during the sync loop iteration allows pods to start and delete more quickly. +2. Dynamically adjust the populator loop interval based on system activity. +3. Respond promptly to events, ensuring up-to-date DSWP cache. +4. Maintain existing functionality as a fallback to ensure reliability. + +### Non-Goals + +1. Completely remove the batch loop period. +2. Change the existing DSWP logic. + +## Proposal + +The Desired State of the World Populator will listen to pod manager and pod worker channel . Every changes made by pod manager(add and update actions) and pod worker ( completeTerminating action ) will trigger the populator loop immediately . +During periods of inactivity, the populator loop interval will increase by 100ms increments after the third execution, up to a maximum of 1 second. If an event is detected, the interval resets to the default 100ms. This approach ensures responsiveness while reducing CPU usage. + + +### Risks and Mitigations + +Since the event is emitted by the Kubelet (Pod Manager/pod worker) for the Kubelet (DSWP), the loss of the event poses a minimal risk. + +## Design Details + +Trigger the existing DSWP implementation using a channel provided by the Pod Manager and pod worker. The Pod Manager acts as the source of truth for DSWP, and its channel listens for all changes made by it. + +On the Pod Manager side , these functions will emit an event on state channel whenever there is a change in its state. + +kubernetes/pkg/kubelet/pod/pod_manager.go +```go +type Manager interface { + .... + SetPods(pods []*v1.Pod) + AddPod(pod *v1.Pod) + UpdatePod(pod *v1.Pod) + RemovePod(pod *v1.Pod) // Unmount is triggered on the pod worker side +``` + +On the Pod worker side , this function will emit an event on state channel whenever there is a change in its state. + +kubernetes/pkg/kubelet/pod_workers.go +```go +func (p *podWorkers) completeTerminating(podUID types.UID){ + //... +} +``` + +Gradually increase after the third execution (to no impact the existing retry logic ) ( +100ms on each iteration) the sleep period to a 1 second maximum. If any event is detected, reset the interval back to the initial value (100ms). + +The new diagram reflects the changes after enabling the feature : +![Sync pod process](./images/sync-loop-process-new.png) + +On the Unmount side : +![Terminating pod process](./images/sync-terminating-new-process.png) + +### Test Plan + +[X] I/we understand the owners of the involved components may require updates to +existing tests to make this code solid enough prior to committing the changes necessary +to implement this enhancement. + +##### Unit tests + +- [X] Dynamic sleep period unit tests +- [X] Increase the sleep period unit tests + +##### Integration tests + +1. [ ] Verify the desired state of the world cache is updated correctly when the Pod manager/pod worker events are received. +2. [ ] Generate a large number of pod manager events within a short period of time and check if the desired state of the world loop is triggered correctly within a short period. + +##### e2e tests + +- [ ] The existing `node e2e` tests and integration tests for DSWP must pass. All validation tests are designed and implemented during the integration test phase. + +### Graduation Criteria +#### Alpha + +- Feature implemented behind a feature flag +- Existing `node e2e` tests and integration tests around DSWP must pass + +#### Beta +- [ ] Add integration tests + +#### GA + +- [ ] Allowing time for feedback +- [ ] Wait two releases before going to GA + +#### Deprecation +N/A + +Since the batch mode will cohexist with the event mode,so no depcrecation is needed. + +### Upgrade / Downgrade Strategy + +N/A + +### Version Skew Strategy + +N/A. + +Since this feature alters only the way kubelet determines DSWP sleep period, this section is irrelevant to this feature. + +## Production Readiness Review Questionnaire + + +### Feature Enablement and Rollback + +###### How can this feature be enabled / disabled in a live cluster? + +- [X] Feature gate (also fill in values in `kep.yaml`) + - Feature gate name: EventedDesiredStateOfWorldPopulator + +###### Does enabling the feature change any default behavior? + +This feature does not introduce any user facing changes. Although users should notice increased performance of the kubelet. + +###### Can the feature be disabled once it has been enabled (i.e. can we roll back the enablement)? + +Yes, kubelet needs to be restarted to disable this feature. + +###### What happens if we reenable the feature if it was previously rolled back? + +If reenabled, kubelet will again start updating the DSWP sleep period based on pod manager/pod worker events. Everytime this feature is enabled or disabled, the kubelet will need to be restarted. + +###### Are there any tests for feature enablement/disablement? + +Current unit tests are checked without enabling/disabling FG, but for integration and e2e testing, FG (beta graduation) will need to be enabled. + +### Rollout, Upgrade and Rollback Planning + + + +###### How can a rollout or rollback fail? Can it impact already running workloads? + +This feature relies on a channel provided by the pod manager/pod worker to dynamically adjust the DSWP sleep period. So no external component(CRI for example) involved at this stage . + +Failures during rollout or rollback are unlikely to impact already running workloads, as the core functionality of the DSWP remains unchanged, and the system defaults to the original polling behavior. + +###### What specific metrics should inform a rollback? + +N/A. + +###### Were upgrade and rollback tested? Was the upgrade->downgrade->upgrade path tested? + +Yes, I tested this feature locally using `./hack/local-up-cluster.sh`. + +###### Is the rollout accompanied by any deprecations and/or removals of features, APIs, fields of API types, flags, etc.? + +No. + +### Monitoring Requirements + + + +###### How can an operator determine if the feature is in use by workloads? + +Whenever a pod is updated (added, updated or removed) the kubelet metric `evented_pod_manager_update_count` is increased consistently. + +###### How can someone using this feature know that it is working for their instance? + +Observe the `pod_manager_update_count` metric. + +###### What are the reasonable SLOs (Service Level Objectives) for the enhancement? + +The DSWP runs immediately or at least <= 100ms after the desired(pod manager/pod worker) state of the pod has been changed. + +###### What are the SLIs (Service Level Indicators) an operator can use to determine the health of the service? + +- [X] Metrics + - Metric name: pod_manager_update_count + - Components exposing the metric: kubelet + +###### Are there any missing metrics that would be useful to have to improve observability of this feature? + +- [ ] Metrics + - Metric name: evented_dswp_process_event_processing_delay + - Metric description: exposing the delay period between the event emitted by pod manager/pod worker and the exact time of DSWP has been executed. + - Components exposing the metric: kubelet + +### Dependencies + +N/A. + +###### Does this feature depend on any specific services running in the cluster? + + +No. + +### Scalability + + + +###### Will enabling / using this feature result in any new API calls? + +No. + +###### Will enabling / using this feature result in introducing new API types? + +No. + +###### Will enabling / using this feature result in any new calls to the cloud provider? + +No. + +###### Will enabling / using this feature result in increasing size or count of the existing API objects? + +No. + +###### Will enabling / using this feature result in increasing time taken by any operations covered by existing SLIs/SLOs? + +No. + +###### Will enabling / using this feature result in non-negligible increase of resource usage (CPU, RAM, disk, IO, ...) in any components? + +No. + +###### Can enabling / using this feature result in resource exhaustion of some node resources (PIDs, sockets, inodes, etc.)? + +No. + +### Troubleshooting + + + +###### How does this feature react if the API server and/or etcd is unavailable? +The feature does not depend directly on the API server / etcd but on the pod manager/pod worker(kubelet) behavior. + +###### What are other known failure modes? + +N/A + +###### What steps should be taken if SLOs are not being met to determine the problem? + +## Implementation History + + + +## Drawbacks + + + +## Alternatives + +1. Proposal 1 : https://github.com/kubernetes/kubernetes/pull/126450 : the PR allows users to customize or override the loop period configuration using the kubelet conf file : + +Reason/suggestion ( sig node ) : move to event-based approach: https://github.com/kubernetes/kubernetes/issues/126049#issuecomment-2278659439 + +2. Proposal 2: https://github.com/kubernetes/kubernetes/pull/126668 : This proposal increases the timer without the event-based approach. If a change is detected, the function resets the sleep period. However, this PR will likely be closed since changes are detected late. + +3. Proposal 3: React based on CRI event : the container creation (CRI event) does not precede volume mounting. + +## Infrastructure Needed (Optional) + + diff --git a/keps/sig-storage/4979-evented-desired-state-of-world-populator-kubelet-volume-manager/images/diagrams.excalidraw b/keps/sig-storage/4979-evented-desired-state-of-world-populator-kubelet-volume-manager/images/diagrams.excalidraw new file mode 100644 index 00000000000..1d9c9f6874d --- /dev/null +++ b/keps/sig-storage/4979-evented-desired-state-of-world-populator-kubelet-volume-manager/images/diagrams.excalidraw @@ -0,0 +1,8017 @@ +{ + "type": "excalidraw", + "version": 2, + "source": "https://excalidraw.com", + "elements": [ + { + "id": "UAA4I0aJNj4xWZer2zorp", + "type": "rectangle", + "x": -261.5644020563441, + "y": -1157.6252874737684, + "width": 154.11117226197052, + "height": 380.3384700055038, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "a0", + "roundness": { + "type": 3 + }, + "seed": 357556026, + "version": 391, + "versionNonce": 458247738, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false + }, + { + "id": "_FG5uNIVAHCI7E51aFOtX", + "type": "text", + "x": -244.27628978336725, + "y": -1198.1288647990305, + "width": 115.82518183404316, + "height": 26.67308750687952, + "angle": 0, + "strokeColor": "#1971c2", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "a1", + "roundness": null, + "seed": 893642746, + "version": 345, + "versionNonce": 994986598, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "text": "Pod source", + "fontSize": 21.338470005503613, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "Pod source", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "qj7XlhPdE2ck7T4LUPd1-", + "type": "text", + "x": -202.78482032822103, + "y": -1081.5575934726667, + "width": 32.327750945524315, + "height": 26.67308750687952, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "a2", + "roundness": null, + "seed": 1933105338, + "version": 228, + "versionNonce": 526284538, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "text": "file", + "fontSize": 21.338470005503613, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "file", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "IKb3J06QgG8GlHyTWnfvL", + "type": "text", + "x": -232.28523955442324, + "y": -995.6109781727218, + "width": 93.867874347055, + "height": 26.67308750687952, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "a3", + "roundness": null, + "seed": 785494394, + "version": 277, + "versionNonce": 1696861606, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "text": "apiserver", + "fontSize": 21.338470005503613, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "apiserver", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "i_N9Zte81ICfemB1oaCuC", + "type": "text", + "x": -209.5653093706469, + "y": -901.4648581947376, + "width": 45.17352624115351, + "height": 26.67308750687952, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "a4", + "roundness": null, + "seed": 1532064314, + "version": 350, + "versionNonce": 2032764858, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "text": "http", + "fontSize": 21.338470005503613, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "http", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "_TKlp2ANB1fRSUlhaFXgq", + "type": "ellipse", + "x": -238.59591003653077, + "y": -1003.7610882442686, + "width": 108.17418822234471, + "height": 48.90066042927912, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "a5", + "roundness": { + "type": 2 + }, + "seed": 194714362, + "version": 286, + "versionNonce": 769616102, + "isDeleted": false, + "boundElements": [ + { + "id": "0IkgoIofDRyLadJGYoQDZ", + "type": "arrow" + } + ], + "updated": 1740428120752, + "link": null, + "locked": false + }, + { + "id": "9sSQX8sAyycKcasOnnTR-", + "type": "ellipse", + "x": -235.63223364687838, + "y": -911.5907525260527, + "width": 108.17418822234471, + "height": 48.90066042927912, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "a6", + "roundness": { + "type": 2 + }, + "seed": 2117184442, + "version": 347, + "versionNonce": 819232890, + "isDeleted": false, + "boundElements": [ + { + "id": "FQCNZ6af5KqW41_Ougx1k", + "type": "arrow" + } + ], + "updated": 1740428120752, + "link": null, + "locked": false + }, + { + "id": "YEhsZR0xV38MmqYe1AI1d", + "type": "ellipse", + "x": -237.11407184170457, + "y": -1092.6713799338677, + "width": 108.17418822234471, + "height": 48.90066042927912, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "a7", + "roundness": { + "type": 2 + }, + "seed": 691545210, + "version": 299, + "versionNonce": 1426938918, + "isDeleted": false, + "boundElements": [ + { + "id": "3YdDJPXYRv799vEgwaaPt", + "type": "arrow" + } + ], + "updated": 1740428120752, + "link": null, + "locked": false + }, + { + "id": "feV7s-aLFXEwOpB784dKu", + "type": "text", + "x": 22.795621820092038, + "y": -986.7199490037628, + "width": 121.09262188673699, + "height": 28.15492570170616, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "a8", + "roundness": null, + "seed": 1181844794, + "version": 325, + "versionNonce": 1377984826, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "text": "sync Loop", + "fontSize": 22.523940561364928, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "sync Loop", + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "b78IaC3ovA0TdxGLdwlZx", + "type": "text", + "x": 15.912385122397154, + "y": -1203.068325448453, + "width": 128.42196719096688, + "height": 44.45514584479921, + "angle": 0, + "strokeColor": "#1971c2", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "a9", + "roundness": null, + "seed": 1598082554, + "version": 470, + "versionNonce": 547022694, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "text": "Kubelet", + "fontSize": 35.56411667583938, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "Kubelet", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "VgfEdzSLocQsw3z6y6Nbl", + "type": "rectangle", + "x": 2.202796622797905, + "y": -1162.0708020582488, + "width": 1327.7270225646696, + "height": 856.502476609799, + "angle": 0, + "strokeColor": "#1971c2", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "aA", + "roundness": { + "type": 3 + }, + "seed": 1487470266, + "version": 683, + "versionNonce": 2021009914, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false + }, + { + "id": "gFB93A1cgKG9-k1meqO51", + "type": "diamond", + "x": 0.7209584279712544, + "y": -1020.8022274847744, + "width": 143.73830489818405, + "height": 103.72867363786479, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "aB", + "roundness": { + "type": 2 + }, + "seed": 2135758714, + "version": 273, + "versionNonce": 282397350, + "isDeleted": false, + "boundElements": [ + { + "id": "tHcam-5dCvm1whPkYpULM", + "type": "arrow" + }, + { + "id": "3YdDJPXYRv799vEgwaaPt", + "type": "arrow" + }, + { + "id": "0IkgoIofDRyLadJGYoQDZ", + "type": "arrow" + }, + { + "id": "FQCNZ6af5KqW41_Ougx1k", + "type": "arrow" + } + ], + "updated": 1740428120752, + "link": null, + "locked": false + }, + { + "id": "YTIhjymebHysxVgbJTTm0", + "type": "text", + "x": 228.92404043127408, + "y": -1063.2815890698066, + "width": 204.7425372176733, + "height": 26.67308750687952, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "aC", + "roundness": null, + "seed": 326113338, + "version": 328, + "versionNonce": 1523767994, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "text": "Pod desired state ", + "fontSize": 21.338470005503613, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "Pod desired state ", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "FynHOsGnEu-Brr3xaVoRt", + "type": "text", + "x": 250.13345154850003, + "y": -991.951787198589, + "width": 150.80111872509107, + "height": 30.423087506879487, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "aD", + "roundness": null, + "seed": 1425342714, + "version": 291, + "versionNonce": 342410726, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "text": "Pod manager", + "fontSize": 24.338470005503574, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "Pod manager", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "tHcam-5dCvm1whPkYpULM", + "type": "arrow", + "x": 148.0689979559529, + "y": -972.4044127755124, + "width": 79.37320428049415, + "height": 0.5287899385003294, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "aE", + "roundness": { + "type": 2 + }, + "seed": 257872314, + "version": 486, + "versionNonce": 1473999738, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 79.37320428049415, + -0.5287899385003294 + ] + ], + "lastCommittedPoint": null, + "startBinding": { + "elementId": "r6F9e7hChhSTY1DvS5IEi", + "focus": 1.146580060410401, + "gap": 2.4608306696368345, + "fixedPoint": null + }, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": "arrow", + "elbowed": false + }, + { + "id": "K32DiHveuTqpSpHd2M4e5", + "type": "arrow", + "x": 35.79112903886835, + "y": -1137.8674448760803, + "width": 1213.625481563018, + "height": 4.44551458447992, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "aF", + "roundness": { + "type": 2 + }, + "seed": 634423930, + "version": 483, + "versionNonce": 1013127462, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 1213.625481563018, + 4.44551458447992 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": "arrow", + "elbowed": false + }, + { + "id": "dsd0R4uuzmz-Dk15_wjqe", + "type": "text", + "x": 435.8874416420613, + "y": -1159.6010717335366, + "width": 178.75230361527016, + "height": 26.67308750687952, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "aG", + "roundness": null, + "seed": 520956730, + "version": 343, + "versionNonce": 30602298, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "text": "sync Pod process", + "fontSize": 21.338470005503613, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "sync Pod process", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "DfySQzQS2tsp9MtHpX1-z", + "type": "arrow", + "x": 552.5049460173559, + "y": -986.7283514002183, + "width": 62.991230817156854, + "height": 56.97700280207295, + "angle": 1.5584631529856443, + "strokeColor": "#1971c2", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "aH", + "roundness": { + "type": 2 + }, + "seed": 829928442, + "version": 579, + "versionNonce": 1882260582, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 12.16097614618228, + -45.83755985287382 + ], + [ + 62.991230817156854, + -56.97700280207295 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": "arrow", + "elbowed": false + }, + { + "id": "MRs7n4z4uG4MLKOveXpO5", + "type": "arrow", + "x": 478.061450815218, + "y": -987.9554859399168, + "width": 62.991230817156854, + "height": 56.97700280207295, + "angle": 0.016520820351773935, + "strokeColor": "#1971c2", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "aI", + "roundness": { + "type": 2 + }, + "seed": 1326654650, + "version": 750, + "versionNonce": 714890490, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 12.16097614618228, + -45.83755985287382 + ], + [ + 62.991230817156854, + -56.97700280207295 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": "arrow", + "elbowed": false + }, + { + "id": "9XsBb12wwJPwW2jOrKtl7", + "type": "arrow", + "x": 477.2773943214461, + "y": -911.8342855109413, + "width": 62.991230817156854, + "height": 56.97700280207295, + "angle": 4.682996152598207, + "strokeColor": "#1971c2", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "aJ", + "roundness": { + "type": 2 + }, + "seed": 830635386, + "version": 678, + "versionNonce": 564103078, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 12.16097614618228, + -45.83755985287382 + ], + [ + 62.991230817156854, + -56.97700280207295 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": "arrow", + "elbowed": false + }, + { + "id": "t-L91INW5XfHuQRZGuRBU", + "type": "arrow", + "x": 553.209930050999, + "y": -912.5628871733143, + "width": 62.991230817156854, + "height": 56.97700280207295, + "angle": 3.141053819964336, + "strokeColor": "#1971c2", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "aK", + "roundness": { + "type": 2 + }, + "seed": 1711849018, + "version": 849, + "versionNonce": 1874505146, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 12.16097614618228, + -45.83755985287382 + ], + [ + 62.991230817156854, + -56.97700280207295 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": "arrow", + "elbowed": false + }, + { + "id": "-UoNhcmsX63jkTqmnVMHp", + "type": "text", + "x": 444.3039581953867, + "y": -1106.748842784721, + "width": 205.297358276166, + "height": 53.34617501375904, + "angle": 0, + "strokeColor": "#1971c2", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "aL", + "roundness": null, + "seed": 1502144250, + "version": 311, + "versionNonce": 14394086, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "text": "Waiting for volume\n mounting/attaching", + "fontSize": 21.338470005503613, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "Waiting for volume\n mounting/attaching", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "2t3RQ2DQRRuHPqnjwldPm", + "type": "arrow", + "x": 417.93755185366444, + "y": -975.3404934077689, + "width": 42.973307649972554, + "height": 0.45020253630936313, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "aM", + "roundness": { + "type": 2 + }, + "seed": 1686501306, + "version": 393, + "versionNonce": 1179707002, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 42.973307649972554, + 0.45020253630936313 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": "arrow", + "elbowed": false + }, + { + "id": "1XSS-orNftLcOAfVAyyTZ", + "type": "arrow", + "x": 631.5504566808804, + "y": -979.5469094674636, + "width": 71.12823335167872, + "height": 0.45020253630936313, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "aN", + "roundness": { + "type": 2 + }, + "seed": 1461907578, + "version": 533, + "versionNonce": 812799526, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 71.12823335167872, + 0.45020253630936313 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": "arrow", + "elbowed": false + }, + { + "id": "Utp5EerEaDBm7pdr5zZUQ", + "type": "text", + "x": 489.7064147099927, + "y": -990.0871952859243, + "width": 117.53857533565662, + "height": 24.995610980195014, + "angle": 0.016520820351773935, + "strokeColor": "#2f9e44", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "aO", + "roundness": null, + "seed": 86167866, + "version": 244, + "versionNonce": 119670586, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "text": "Infinite loop", + "fontSize": 19.99648878415601, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "Infinite loop", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "TMOcEmSGW6mxKdHDbiCPp", + "type": "text", + "x": 1101.7667936932085, + "y": -998.574654562376, + "width": 90.77382260597089, + "height": 26.67308750687952, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "aP", + "roundness": null, + "seed": 1374198266, + "version": 569, + "versionNonce": 2035327334, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "text": "with CRI", + "fontSize": 21.338470005503613, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "with CRI", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "RWKw1njsDfI3BeAS5wYBL", + "type": "arrow", + "x": 935.1658423605559, + "y": -980.7925962244562, + "width": 34.082278481012715, + "height": 0.45020253630936313, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "aQ", + "roundness": { + "type": 2 + }, + "seed": 1014450874, + "version": 632, + "versionNonce": 2056327162, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 34.082278481012715, + 0.45020253630936313 + ] + ], + "lastCommittedPoint": null, + "startBinding": { + "elementId": "O4oURwohud4FgpJ0sbMUm", + "focus": 1.4585507592109688, + "gap": 14, + "fixedPoint": null + }, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": "arrow", + "elbowed": false + }, + { + "id": "--5me42x7xoth-1TACGeH", + "type": "text", + "x": 805.935255070186, + "y": -994.1291399778956, + "width": 111.40809386971912, + "height": 26.67308750687952, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "aR", + "roundness": null, + "seed": 1802625914, + "version": 481, + "versionNonce": 2126742694, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "text": "pull secret", + "fontSize": 21.338470005503613, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "pull secret", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "whwa-PPokjxVyaEg2zzMY", + "type": "rectangle", + "x": 737.1945412568111, + "y": -1022.2840656796025, + "width": 183.74793615850328, + "height": 80.01926252063853, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "aS", + "roundness": { + "type": 3 + }, + "seed": 958096442, + "version": 424, + "versionNonce": 1688273082, + "isDeleted": false, + "boundElements": [ + { + "id": "RWKw1njsDfI3BeAS5wYBL", + "type": "arrow" + } + ], + "updated": 1740428120752, + "link": null, + "locked": false + }, + { + "id": "65l06EuuLlCJIIlRodjag", + "type": "rectangle", + "x": 1030.5985038324861, + "y": -1023.7659038744287, + "width": 183.74793615850328, + "height": 80.01926252063853, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "aT", + "roundness": { + "type": 3 + }, + "seed": 1062653178, + "version": 538, + "versionNonce": 1920466918, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false + }, + { + "id": "4P8rLV5fmxk5K2nlVwhVG", + "type": "text", + "x": 989.1070343773399, + "y": -1008.9475219261612, + "width": 26.31032928399634, + "height": 40.0096312603195, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "aU", + "roundness": null, + "seed": 1671896506, + "version": 207, + "versionNonce": 284481914, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "text": "...", + "fontSize": 32.0077050082556, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "...", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "EU1Ap_3l5DrkFqq3cuImV", + "type": "arrow", + "x": 1229.4098917322963, + "y": -985.9790299063488, + "width": 34.082278481012715, + "height": 0.45020253630936313, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "aV", + "roundness": { + "type": 2 + }, + "seed": 1664046714, + "version": 521, + "versionNonce": 1216025382, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 34.082278481012715, + 0.45020253630936313 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": "arrow", + "elbowed": false + }, + { + "id": "BppQmnoO_hjnNPwEIjt0D", + "type": "text", + "x": 1283.3510837490803, + "y": -1014.1339556080557, + "width": 26.31032928399634, + "height": 40.0096312603195, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "aW", + "roundness": null, + "seed": 1588754234, + "version": 255, + "versionNonce": 1590663738, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "text": "...", + "fontSize": 32.0077050082556, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "...", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "7G6DVPd4cforympVqh7-A", + "type": "text", + "x": 1277.7529154150343, + "y": -1162.317775090719, + "width": 26.31032928399634, + "height": 40.0096312603195, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "aX", + "roundness": null, + "seed": 1720942586, + "version": 396, + "versionNonce": 1798946406, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "text": "...", + "fontSize": 32.0077050082556, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "...", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "3YdDJPXYRv799vEgwaaPt", + "type": "arrow", + "x": -4.279051679367512, + "y": -968.7214222826815, + "width": 120.97607362524182, + "height": 96.55119180123296, + "angle": 0, + "strokeColor": "#1971c2", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "aY", + "roundness": { + "type": 2 + }, + "seed": 114651322, + "version": 628, + "versionNonce": 1293173498, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + -120.97607362524182, + -96.55119180123296 + ] + ], + "lastCommittedPoint": null, + "startBinding": { + "elementId": "gFB93A1cgKG9-k1meqO51", + "focus": -1.1870558826548976, + "gap": 3.1014664762755544, + "fixedPoint": null + }, + "endBinding": { + "elementId": "wR6G0tZEFpyHegEZP18ta", + "focus": 1.6772859395798012, + "gap": 14, + "fixedPoint": null + }, + "startArrowhead": null, + "endArrowhead": "arrow", + "elbowed": false + }, + { + "id": "0IkgoIofDRyLadJGYoQDZ", + "type": "arrow", + "x": -1.8788941618599893, + "y": -968.8467468636381, + "width": 121.9357558844285, + "height": 6.021518809107274, + "angle": 0, + "strokeColor": "#1971c2", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "aZ", + "roundness": { + "type": 2 + }, + "seed": 1394297210, + "version": 628, + "versionNonce": 1870725542, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + -121.9357558844285, + -6.021518809107274 + ] + ], + "lastCommittedPoint": null, + "startBinding": { + "elementId": "gFB93A1cgKG9-k1meqO51", + "focus": -0.07266313932979904, + "gap": 1.5953039571109002, + "fixedPoint": null + }, + "endBinding": { + "elementId": "_TKlp2ANB1fRSUlhaFXgq", + "focus": 0.05876004798640385, + "gap": 7.1532777118347965, + "fixedPoint": null + }, + "startArrowhead": null, + "endArrowhead": "arrow", + "elbowed": false + }, + { + "id": "FQCNZ6af5KqW41_Ougx1k", + "type": "arrow", + "x": -0.7846423159826372, + "y": -969.7986823120982, + "width": 124.6084374234849, + "height": 73.56401727410552, + "angle": 0, + "strokeColor": "#1971c2", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "aa", + "roundness": { + "type": 2 + }, + "seed": 1923615290, + "version": 638, + "versionNonce": 105239482, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + -124.6084374234849, + 73.56401727410552 + ] + ], + "lastCommittedPoint": null, + "startBinding": { + "elementId": "gFB93A1cgKG9-k1meqO51", + "focus": 0.8518072289156632, + "gap": 1.579071014744443, + "fixedPoint": null + }, + "endBinding": { + "elementId": "9sSQX8sAyycKcasOnnTR-", + "focus": 0.5981499598188665, + "gap": 4.77577712141867, + "fixedPoint": null + }, + "startArrowhead": null, + "endArrowhead": "arrow", + "elbowed": false + }, + { + "id": "r6F9e7hChhSTY1DvS5IEi", + "type": "text", + "x": 145.94110152098165, + "y": -1001.5383309520284, + "width": 72.74281653665105, + "height": 26.67308750687952, + "angle": 0, + "strokeColor": "#2f9e44", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "ab", + "roundness": null, + "seed": 744403706, + "version": 212, + "versionNonce": 1216208102, + "isDeleted": false, + "boundElements": [ + { + "id": "tHcam-5dCvm1whPkYpULM", + "type": "arrow" + } + ], + "updated": 1740428120752, + "link": null, + "locked": false, + "text": "update", + "fontSize": 21.338470005503613, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "update", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "NjU2MgIZq6HhbloExqMSt", + "type": "text", + "x": 742.6619444482344, + "y": -995.6109781727218, + "width": 57.229750579179054, + "height": 26.67308750687952, + "angle": 0, + "strokeColor": "#2f9e44", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "ac", + "roundness": null, + "seed": 1925333946, + "version": 228, + "versionNonce": 1820806266, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "text": "Fetch", + "fontSize": 21.338470005503613, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "Fetch", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "HPIvlQQyhkKFvobS1P4Ul", + "type": "text", + "x": 1049.8765131099444, + "y": -998.2641741786965, + "width": 54.32773001822532, + "height": 26.67308750687952, + "angle": 0, + "strokeColor": "#2f9e44", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "ad", + "roundness": null, + "seed": 1878375546, + "version": 234, + "versionNonce": 2076004390, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "text": "Sync ", + "fontSize": 21.338470005503613, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "Sync ", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "DP_6ooLYgdQwxSCnh5bJ_", + "type": "text", + "x": 370.32416594653296, + "y": -791.5190164843598, + "width": 101.1229566204531, + "height": 35.90274986952155, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "ae", + "roundness": null, + "seed": 297540922, + "version": 907, + "versionNonce": 630959418, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "text": "DSWOP", + "fontSize": 28.722199895617234, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "DSWOP", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "pOVmJ-ppNYUkqh8IyURGh", + "type": "rectangle", + "x": 341.1914426866174, + "y": -726.6104713381765, + "width": 200.05840531039073, + "height": 399.11850100524606, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "af", + "roundness": { + "type": 3 + }, + "seed": 360211962, + "version": 674, + "versionNonce": 1428970342, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false + }, + { + "id": "O0VNClkamZbFKTwp0udF8", + "type": "rectangle", + "x": 650.6738396630203, + "y": -734.206152153155, + "width": 190.05840531039075, + "height": 399.11850100524606, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "ag", + "roundness": { + "type": 3 + }, + "seed": 338532026, + "version": 709, + "versionNonce": 652604922, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false + }, + { + "id": "DaGjIa_fIM5Lgo9wEUFkX", + "type": "text", + "x": 664.3134780139148, + "y": -797.0410955400648, + "width": 163.96219250159524, + "height": 35.90274986952155, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "ah", + "roundness": null, + "seed": 243183482, + "version": 967, + "versionNonce": 454557350, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "text": "Reconciler ", + "fontSize": 28.722199895617234, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "Reconciler ", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "0ohdVSuEvxJ_xy9yOEOzr", + "type": "text", + "x": 371.96726457288423, + "y": -682.619156320151, + "width": 147.6767533383615, + "height": 30.418075320387064, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "ai", + "roundness": null, + "seed": 2024714298, + "version": 675, + "versionNonce": 1097410234, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "text": "pod manager", + "fontSize": 24.33446025630965, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "pod manager", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "u-746s1ZQf1iarVMO29zn", + "type": "arrow", + "x": 433.69092846587273, + "y": -621.8878902151491, + "width": 2.066128072731317, + "height": 168.72192821620683, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "aj", + "roundness": { + "type": 2 + }, + "seed": 1184930042, + "version": 1824, + "versionNonce": 1110260198, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + -2.066128072731317, + 168.72192821620683 + ] + ], + "lastCommittedPoint": null, + "startBinding": { + "elementId": "ufw3gDP5ojaScl7bqx4TZ", + "focus": 0.11686049300478385, + "gap": 10.19088079842777, + "fixedPoint": null + }, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": "arrow", + "elbowed": false + }, + { + "id": "-fvKgAOL0MmBkNjvoqbpY", + "type": "text", + "x": 411.8730538089271, + "y": -537.1428994218504, + "width": 83.83537222048001, + "height": 24.458603180250307, + "angle": 1.5818437274430268, + "strokeColor": "#2f9e44", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "ak", + "roundness": null, + "seed": 2010606010, + "version": 964, + "versionNonce": 768098170, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "text": "get pods", + "fontSize": 19.566882544200254, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "get pods", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "Ttz4PxTyIKdohdSfnwXXZ", + "type": "arrow", + "x": 748.6001503723587, + "y": -627.5405093091549, + "width": 0, + "height": 168.4860108049824, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "al", + "roundness": { + "type": 2 + }, + "seed": 594944634, + "version": 1175, + "versionNonce": 561581350, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 0, + 168.4860108049824 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": "arrow", + "elbowed": false + }, + { + "id": "sEDFNJYZcT_bTPgcnt6AA", + "type": "text", + "x": 385.1774547446025, + "y": -762.2411195248033, + "width": 60.57216570694151, + "height": 22.78704244493616, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "am", + "roundness": null, + "seed": 71287610, + "version": 636, + "versionNonce": 407257146, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "text": "100 ms", + "fontSize": 18.229633955948938, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "100 ms", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "6E1OnDoi2S2wfY6i8mehp", + "type": "text", + "x": 714.1997082483826, + "y": -764.6579270568427, + "width": 49.563043759895486, + "height": 18.643943818584148, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "an", + "roundness": null, + "seed": 77024250, + "version": 615, + "versionNonce": 644380774, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "text": "100 ms", + "fontSize": 14.915155054867318, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "100 ms", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "ufw3gDP5ojaScl7bqx4TZ", + "type": "rectangle", + "x": 362.27175279635185, + "y": -698.0106024693296, + "width": 163.04295879056093, + "height": 65.93183145575246, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "ao", + "roundness": { + "type": 3 + }, + "seed": 1249885370, + "version": 767, + "versionNonce": 751184122, + "isDeleted": false, + "boundElements": [ + { + "id": "u-746s1ZQf1iarVMO29zn", + "type": "arrow" + } + ], + "updated": 1740428120752, + "link": null, + "locked": false + }, + { + "id": "RD80NaR3G3VEPWFPolFBk", + "type": "text", + "x": 745.5523838798767, + "y": -547.6039133765235, + "width": 57.78128445664359, + "height": 26.930141071288595, + "angle": 1.6016967926806451, + "strokeColor": "#2f9e44", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "ap", + "roundness": null, + "seed": 1134302586, + "version": 705, + "versionNonce": 147356582, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "text": "Fetch", + "fontSize": 21.54411285703088, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "Fetch", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "qOJzACAFFeEvVl2JH9eoi", + "type": "rectangle", + "x": 661.527436082325, + "y": -441.84149242024705, + "width": 173.09291217863054, + "height": 91.14816977974549, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "aq", + "roundness": { + "type": 3 + }, + "seed": 825185850, + "version": 709, + "versionNonce": 583727546, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false + }, + { + "id": "wR6G0tZEFpyHegEZP18ta", + "type": "ellipse", + "x": -94.11668604093393, + "y": -1100.4463674064855, + "width": 75.07980187121606, + "height": 49.55266923500196, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "ar", + "roundness": { + "type": 2 + }, + "seed": 874282746, + "version": 345, + "versionNonce": 2126911206, + "isDeleted": false, + "boundElements": [ + { + "id": "3YdDJPXYRv799vEgwaaPt", + "type": "arrow" + } + ], + "updated": 1740428120752, + "link": null, + "locked": false + }, + { + "id": "cXbYWwML9KirKeCnWzJ7B", + "type": "text", + "x": -61.081573217598816, + "y": -1101.460374341962, + "width": 12.102262378413524, + "height": 55.82226230146739, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "as", + "roundness": null, + "seed": 1491505082, + "version": 311, + "versionNonce": 1232581242, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "text": "1", + "fontSize": 44.657809841173915, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "1", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "N2c1ILJySvRZ-vouXRkLT", + "type": "ellipse", + "x": 137.0500723520222, + "y": -1060.0197778341617, + "width": 75.07980187121606, + "height": 49.55266923500196, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "at", + "roundness": { + "type": 2 + }, + "seed": 598771834, + "version": 394, + "versionNonce": 1894664742, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false + }, + { + "id": "CEeAgtHaEOg3iF1xlmAS8", + "type": "text", + "x": 160.20626387651282, + "y": -1064.9853532891766, + "width": 27.84398146835618, + "height": 48.88464070083969, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "au", + "roundness": null, + "seed": 473786682, + "version": 375, + "versionNonce": 328160058, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "text": "2", + "fontSize": 39.10771256067176, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "2", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "PQKIR0MYisLGU7eUrTdO7", + "type": "ellipse", + "x": 438.4423636934348, + "y": -615.3177153762854, + "width": 52.479249267125496, + "height": 34.63630451630238, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "av", + "roundness": { + "type": 2 + }, + "seed": 1508913658, + "version": 775, + "versionNonce": 774772070, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false + }, + { + "id": "RRSBU48ExrhCyuNmtidLz", + "type": "text", + "x": 451.86600324281517, + "y": -618.7885512810672, + "width": 19.97702322706437, + "height": 39.0186221188828, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "aw", + "roundness": null, + "seed": 265020090, + "version": 751, + "versionNonce": 594861050, + "isDeleted": false, + "boundElements": [ + { + "id": "u-746s1ZQf1iarVMO29zn", + "type": "arrow" + } + ], + "updated": 1740428120752, + "link": null, + "locked": false, + "text": "4", + "fontSize": 31.214897695106245, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "4", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "o-9nzoLyjdWrtwEuhufAb", + "type": "ellipse", + "x": 752.0416527210996, + "y": -619.4608140026367, + "width": 52.479249267125496, + "height": 34.63630451630238, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "ax", + "roundness": { + "type": 2 + }, + "seed": 410221434, + "version": 816, + "versionNonce": 533887142, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false + }, + { + "id": "cA6H6PaGqeUDBJJIUmWTF", + "type": "text", + "x": 764.3604659701186, + "y": -622.9316499074184, + "width": 19.29031044586398, + "height": 39.0186221188828, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "ay", + "roundness": null, + "seed": 36305978, + "version": 788, + "versionNonce": 1462455482, + "isDeleted": false, + "boundElements": [ + { + "id": "Ttz4PxTyIKdohdSfnwXXZ", + "type": "arrow" + } + ], + "updated": 1740428120752, + "link": null, + "locked": false, + "text": "5", + "fontSize": 31.214897695106245, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "5", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "XfbP08L4mT3Ba66ul1hWG", + "type": "ellipse", + "x": 634.9477058137727, + "y": -1048.1650722755467, + "width": 63.22509631260294, + "height": 49.55266923500196, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "az", + "roundness": { + "type": 2 + }, + "seed": 449996026, + "version": 516, + "versionNonce": 2106094566, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false + }, + { + "id": "17YcmGXmoVlZAVrSDqdB5", + "type": "text", + "x": 654.1523288187259, + "y": -1049.179079211025, + "width": 28.580266806603053, + "height": 55.82226230146739, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b00", + "roundness": null, + "seed": 2079307194, + "version": 499, + "versionNonce": 1414899066, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "text": "6", + "fontSize": 44.657809841173915, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "6", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "cyVJfGk5kh_qIJHoYMNVk", + "type": "ellipse", + "x": 933.2911290388702, + "y": -1048.1650722755485, + "width": 67.17666483214083, + "height": 45.60110071546461, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b01", + "roundness": { + "type": 2 + }, + "seed": 379907706, + "version": 573, + "versionNonce": 22873894, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false + }, + { + "id": "O4oURwohud4FgpJ0sbMUm", + "type": "text", + "x": 958.4231048231295, + "y": -1049.1790792110269, + "width": 24.025287575687667, + "height": 55.82226230146739, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b02", + "roundness": null, + "seed": 1068830522, + "version": 567, + "versionNonce": 339142202, + "isDeleted": false, + "boundElements": [ + { + "id": "RWKw1njsDfI3BeAS5wYBL", + "type": "arrow" + } + ], + "updated": 1740428120752, + "link": null, + "locked": false, + "text": "7", + "fontSize": 44.657809841173915, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "7", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "Uu6HELBS1sH8UgHXNsG5K", + "type": "ellipse", + "x": 1227.6829837444293, + "y": -1050.1408565353167, + "width": 75.07980187121606, + "height": 49.55266923500196, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b03", + "roundness": { + "type": 2 + }, + "seed": 998447098, + "version": 601, + "versionNonce": 465384038, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false + }, + { + "id": "Ckxw8eihIA0l-dXb4JzWN", + "type": "text", + "x": 1246.887606749382, + "y": -1063.0095690294083, + "width": 36.70778391055511, + "height": 55.82226230146739, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b04", + "roundness": null, + "seed": 1242695866, + "version": 617, + "versionNonce": 1873940218, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "text": "...", + "fontSize": 44.657809841173915, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "...", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "85EMgN5JTwWSmts_-4Pg7", + "type": "rectangle", + "x": 233.86350108069564, + "y": -1015.8345413459292, + "width": 177.82058337919676, + "height": 80.01926252063853, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b05", + "roundness": { + "type": 3 + }, + "seed": 855957882, + "version": 470, + "versionNonce": 662042022, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false + }, + { + "id": "7wIE5ua-O6xPHtGt-885i", + "type": "rectangle", + "x": 318.32827818581336, + "y": -829.566472203026, + "width": 541.3648871766655, + "height": 509.60113104130005, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b06", + "roundness": { + "type": 3 + }, + "seed": 1369350714, + "version": 498, + "versionNonce": 726278074, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false + }, + { + "id": "foEy56KXnGe8iWuYGBFlI", + "type": "text", + "x": 459.27097554165175, + "y": -862.7112612138417, + "width": 78.20786452933027, + "height": 24.168075320386844, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b07", + "roundness": null, + "seed": 549604090, + "version": 399, + "versionNonce": 498356454, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "text": "Batches", + "fontSize": 19.33446025630948, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "Batches", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "VRubL2DOiMkH3RLnTO7we", + "type": "text", + "x": 546.1987026351753, + "y": -861.33022833839, + "width": 177.7139976278412, + "height": 18.643943818584148, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b08", + "roundness": null, + "seed": 1190321082, + "version": 420, + "versionNonce": 52566138, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "text": "with 100 ms sleep period", + "fontSize": 14.915155054867318, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "with 100 ms sleep period", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "0_xKyoUSaTNBvOLdTgBJN", + "type": "ellipse", + "x": 416.2001627679356, + "y": -1032.3503007488098, + "width": 61.249312052834, + "height": 40.42454595486991, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b09", + "roundness": { + "type": 2 + }, + "seed": 575886458, + "version": 435, + "versionNonce": 1241859110, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false + }, + { + "id": "86v8oqvPni0bRCjFPMdvL", + "type": "text", + "x": 435.09074006423043, + "y": -1034.425380676027, + "width": 24.808489348643068, + "height": 45.53921398277591, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b0A", + "roundness": null, + "seed": 1420211514, + "version": 417, + "versionNonce": 922548538, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "text": "3", + "fontSize": 36.43137118622073, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "3", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "5ZA_v5n4GnJEScAwpfZyL", + "type": "text", + "x": 663.2398694600001, + "y": -429.5881667182939, + "width": 177.318893432617, + "height": 67.50000000000003, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b0B", + "roundness": null, + "seed": 1330642426, + "version": 116, + "versionNonce": 2119552870, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "text": "ActualState\nOfWorld", + "fontSize": 27.00000000000001, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "ActualStateOfWorld", + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "u_32dn-kd1lX55epy64nr", + "type": "rectangle", + "x": 661.9556488242224, + "y": -723.912251608167, + "width": 174.4876246099369, + "height": 85.12085070267926, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b0C", + "roundness": { + "type": 3 + }, + "seed": 1599221434, + "version": 838, + "versionNonce": 373146106, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false + }, + { + "id": "zSCx0Uf_rKrJOKIw7FrOa", + "type": "text", + "x": 663.5548447952619, + "y": -712.4691967425833, + "width": 174.9321308392529, + "height": 63.036454119867855, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b0D", + "roundness": null, + "seed": 961562490, + "version": 265, + "versionNonce": 1190326950, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "text": "DesiredState\nOfWorld", + "fontSize": 25.214581647947142, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "DesiredStateOfWorld", + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "VrH7b-M5cR2BsCIkr-zaT", + "type": "rectangle", + "x": 348.2056488242224, + "y": -442.662251608167, + "width": 186.84291217863057, + "height": 91.14816977974549, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b0E", + "roundness": { + "type": 3 + }, + "seed": 93145146, + "version": 808, + "versionNonce": 199717562, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false + }, + { + "id": "QtTGEEUv1ethZCAz5OVOc", + "type": "text", + "x": 349.91808220189796, + "y": -430.4089259062139, + "width": 187.31889343261696, + "height": 67.50000000000003, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b0F", + "roundness": null, + "seed": 1810641146, + "version": 235, + "versionNonce": 512339430, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "text": "DesiredState\nOfWorld", + "fontSize": 27.00000000000001, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "DesiredStateOfWorld", + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "Zwo94OH_h58otATQSJmZv", + "type": "rectangle", + "x": -234.9900841068229, + "y": -189.5022716007561, + "width": 154.11117226197052, + "height": 380.3384700055038, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b0G", + "roundness": { + "type": 3 + }, + "seed": 535822778, + "version": 490, + "versionNonce": 714935162, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false + }, + { + "id": "mSEyEXaSnRvHIkGN1B-t-", + "type": "text", + "x": -217.70197183384516, + "y": -230.00584892601637, + "width": 115.82518183404316, + "height": 26.67308750687952, + "angle": 0, + "strokeColor": "#1971c2", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b0H", + "roundness": null, + "seed": 1824242298, + "version": 444, + "versionNonce": 572981542, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "text": "Pod source", + "fontSize": 21.338470005503613, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "Pod source", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "BO9iKadTwEQHxRHkPOte5", + "type": "text", + "x": -176.21050237869895, + "y": -113.4345775996544, + "width": 32.327750945524315, + "height": 26.67308750687952, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b0I", + "roundness": null, + "seed": 1091722042, + "version": 327, + "versionNonce": 950111290, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "text": "file", + "fontSize": 21.338470005503613, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "file", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "eqhIk_TIwCKDziL3hU0kr", + "type": "text", + "x": -205.71092160490116, + "y": -27.48796229970958, + "width": 93.867874347055, + "height": 26.67308750687952, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b0J", + "roundness": null, + "seed": 995550202, + "version": 376, + "versionNonce": 1161292902, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "text": "apiserver", + "fontSize": 21.338470005503613, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "apiserver", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "QVZNk1iU8s34gJRmGgiIw", + "type": "text", + "x": -182.99099142112573, + "y": 66.65815767827644, + "width": 45.17352624115351, + "height": 26.67308750687952, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b0K", + "roundness": null, + "seed": 898389178, + "version": 449, + "versionNonce": 1004008698, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "text": "http", + "fontSize": 21.338470005503613, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "http", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "M3eMfDu8L64f9q0VaHM0o", + "type": "ellipse", + "x": -212.0215920870105, + "y": -35.638072371256385, + "width": 108.17418822234471, + "height": 48.90066042927912, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b0L", + "roundness": { + "type": 2 + }, + "seed": 1364569466, + "version": 385, + "versionNonce": 92893094, + "isDeleted": false, + "boundElements": [ + { + "id": "VCz_tY7kQBBALVmSZ76Bo", + "type": "arrow" + } + ], + "updated": 1740428120752, + "link": null, + "locked": false + }, + { + "id": "1Sj3Q60ja4rPwIg1ttId4", + "type": "ellipse", + "x": -209.0579156973563, + "y": 56.53226334696137, + "width": 108.17418822234471, + "height": 48.90066042927912, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b0M", + "roundness": { + "type": 2 + }, + "seed": 66448954, + "version": 446, + "versionNonce": 96683450, + "isDeleted": false, + "boundElements": [ + { + "id": "ibLSi3B7FN3GGvwFJK30O", + "type": "arrow" + } + ], + "updated": 1740428120752, + "link": null, + "locked": false + }, + { + "id": "bl7rCd4HIqyIoL9A_U6G6", + "type": "ellipse", + "x": -210.5397538921843, + "y": -124.54836406085542, + "width": 108.17418822234471, + "height": 48.90066042927912, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b0N", + "roundness": { + "type": 2 + }, + "seed": 575674106, + "version": 398, + "versionNonce": 524847846, + "isDeleted": false, + "boundElements": [ + { + "id": "fAdvygBvuRdzARoB5JXka", + "type": "arrow" + } + ], + "updated": 1740428120752, + "link": null, + "locked": false + }, + { + "id": "SCVRvXh07kJi8Yn3-ZoIf", + "type": "text", + "x": 49.3699397696123, + "y": -18.596933130750585, + "width": 121.09262188673699, + "height": 28.15492570170616, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b0O", + "roundness": null, + "seed": 1827088314, + "version": 424, + "versionNonce": 1065778810, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "text": "sync Loop", + "fontSize": 22.523940561364928, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "sync Loop", + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "Txxl34qz6qCBeOy_GXtsk", + "type": "text", + "x": 42.48670307191742, + "y": -234.94530957544066, + "width": 128.42196719096688, + "height": 44.45514584479921, + "angle": 0, + "strokeColor": "#1971c2", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b0P", + "roundness": null, + "seed": 467542138, + "version": 569, + "versionNonce": 1090666022, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "text": "Kubelet", + "fontSize": 35.56411667583938, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "Kubelet", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "ZpgqWrF-BqX3k4Fsef2dC", + "type": "rectangle", + "x": 28.777114572318624, + "y": -193.9477861852365, + "width": 1327.7270225646696, + "height": 856.502476609799, + "angle": 0, + "strokeColor": "#1971c2", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b0Q", + "roundness": { + "type": 3 + }, + "seed": 1794638138, + "version": 782, + "versionNonce": 1977917242, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false + }, + { + "id": "ttZPu4TJwkQkWPzyS9GCB", + "type": "diamond", + "x": 27.29527637749152, + "y": -52.679211611762184, + "width": 143.73830489818405, + "height": 103.72867363786479, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b0R", + "roundness": { + "type": 2 + }, + "seed": 630704634, + "version": 372, + "versionNonce": 1067682150, + "isDeleted": false, + "boundElements": [ + { + "id": "XbHDnr_mhNVm1L4DBuYkx", + "type": "arrow" + }, + { + "id": "fAdvygBvuRdzARoB5JXka", + "type": "arrow" + }, + { + "id": "VCz_tY7kQBBALVmSZ76Bo", + "type": "arrow" + }, + { + "id": "ibLSi3B7FN3GGvwFJK30O", + "type": "arrow" + } + ], + "updated": 1740428120752, + "link": null, + "locked": false + }, + { + "id": "Y6dKmujmL5WvN2A38siHn", + "type": "text", + "x": 255.4983583807948, + "y": -95.15857319679435, + "width": 204.7425372176733, + "height": 26.67308750687952, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b0S", + "roundness": null, + "seed": 851475130, + "version": 427, + "versionNonce": 624994298, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "text": "Pod desired state ", + "fontSize": 21.338470005503613, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "Pod desired state ", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "wIlsHREDEHMJz6ylpygtc", + "type": "text", + "x": 276.7077694980212, + "y": -23.82877132557678, + "width": 150.80111872509107, + "height": 30.423087506879487, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b0T", + "roundness": null, + "seed": 555029370, + "version": 390, + "versionNonce": 1249471654, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "text": "Pod manager", + "fontSize": 24.338470005503574, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "Pod manager", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "XbHDnr_mhNVm1L4DBuYkx", + "type": "arrow", + "x": 174.64331590547363, + "y": -4.2813969025000915, + "width": 79.37320428049415, + "height": 0.5287899385003294, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b0U", + "roundness": { + "type": 2 + }, + "seed": 853054522, + "version": 683, + "versionNonce": 1167956154, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 79.37320428049415, + -0.5287899385003294 + ] + ], + "lastCommittedPoint": null, + "startBinding": { + "elementId": "jnY1GStAOpB--uVRrlHX3", + "focus": 1.146580060410401, + "gap": 2.4608306696372892, + "fixedPoint": null + }, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": "arrow", + "elbowed": false + }, + { + "id": "pBqD001ZCzyoK80K-aOVi", + "type": "arrow", + "x": 62.36544698838907, + "y": -169.74442900306622, + "width": 1213.625481563018, + "height": 4.44551458447992, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b0V", + "roundness": { + "type": 2 + }, + "seed": 1777204474, + "version": 582, + "versionNonce": 523298790, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 1213.625481563018, + 4.44551458447992 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": "arrow", + "elbowed": false + }, + { + "id": "n937at02hoYQtpNRuvPSP", + "type": "text", + "x": 462.461759591582, + "y": -191.47805586052436, + "width": 178.75230361527016, + "height": 26.67308750687952, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b0W", + "roundness": null, + "seed": 332942778, + "version": 442, + "versionNonce": 1453224314, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "text": "sync Pod process", + "fontSize": 21.338470005503613, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "sync Pod process", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "69AsLzDjRkp8zFTSdxZ8P", + "type": "arrow", + "x": 579.0792639668766, + "y": -18.60533552720608, + "width": 62.991230817156854, + "height": 56.97700280207295, + "angle": 1.5584631529856443, + "strokeColor": "#1971c2", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b0X", + "roundness": { + "type": 2 + }, + "seed": 1438287482, + "version": 678, + "versionNonce": 1037499174, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 12.16097614618228, + -45.83755985287382 + ], + [ + 62.991230817156854, + -56.97700280207295 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": "arrow", + "elbowed": false + }, + { + "id": "GnZhYo52LX9kiP66J3pre", + "type": "arrow", + "x": 504.63576876473917, + "y": -19.832470066904534, + "width": 62.991230817156854, + "height": 56.97700280207295, + "angle": 0.016520820351773935, + "strokeColor": "#1971c2", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b0Y", + "roundness": { + "type": 2 + }, + "seed": 945268538, + "version": 849, + "versionNonce": 1803956794, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 12.16097614618228, + -45.83755985287382 + ], + [ + 62.991230817156854, + -56.97700280207295 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": "arrow", + "elbowed": false + }, + { + "id": "fRMCbmrh4bx0RbJ55D18V", + "type": "arrow", + "x": 503.8517122709668, + "y": 56.288730362070964, + "width": 62.991230817156854, + "height": 56.97700280207295, + "angle": 4.682996152598207, + "strokeColor": "#1971c2", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b0Z", + "roundness": { + "type": 2 + }, + "seed": 873639930, + "version": 777, + "versionNonce": 483960422, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 12.16097614618228, + -45.83755985287382 + ], + [ + 62.991230817156854, + -56.97700280207295 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": "arrow", + "elbowed": false + }, + { + "id": "czOksOaqXBQmXGSZQKpxZ", + "type": "arrow", + "x": 579.7842480005197, + "y": 55.56012869969982, + "width": 62.991230817156854, + "height": 56.97700280207295, + "angle": 3.141053819964336, + "strokeColor": "#1971c2", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b0a", + "roundness": { + "type": 2 + }, + "seed": 1022271674, + "version": 948, + "versionNonce": 926407418, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 12.16097614618228, + -45.83755985287382 + ], + [ + 62.991230817156854, + -56.97700280207295 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": "arrow", + "elbowed": false + }, + { + "id": "6twiScyWX_7LsV7b2qmGn", + "type": "text", + "x": 470.878276144907, + "y": -138.625826911707, + "width": 205.297358276166, + "height": 53.34617501375904, + "angle": 0, + "strokeColor": "#1971c2", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b0b", + "roundness": null, + "seed": 1317960058, + "version": 410, + "versionNonce": 1560471974, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "text": "Waiting for volume\n mounting/attaching", + "fontSize": 21.338470005503613, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "Waiting for volume\n mounting/attaching", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "NSLifVqAPo_Or5a6ErTqL", + "type": "arrow", + "x": 444.51186980318516, + "y": -7.217477534756654, + "width": 42.973307649972554, + "height": 0.45020253630936313, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b0c", + "roundness": { + "type": 2 + }, + "seed": 2016754234, + "version": 492, + "versionNonce": 406219706, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 42.973307649972554, + 0.45020253630936313 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": "arrow", + "elbowed": false + }, + { + "id": "BFC-VkjSwHmL8DGc8VTiv", + "type": "arrow", + "x": 658.1247746304011, + "y": -11.42389359444951, + "width": 71.12823335167872, + "height": 0.45020253630936313, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b0d", + "roundness": { + "type": 2 + }, + "seed": 1757799162, + "version": 632, + "versionNonce": 2105722086, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 71.12823335167872, + 0.45020253630936313 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": "arrow", + "elbowed": false + }, + { + "id": "xcAc55vOEsjD3FYm4JVEI", + "type": "text", + "x": 516.2807326595134, + "y": -21.964179412910198, + "width": 117.53857533565662, + "height": 24.995610980195014, + "angle": 0.016520820351773935, + "strokeColor": "#2f9e44", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b0e", + "roundness": null, + "seed": 2059629498, + "version": 343, + "versionNonce": 614786170, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "text": "Infinite loop", + "fontSize": 19.99648878415601, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "Infinite loop", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "oQ3vhHTge1fFNKtK-vzxK", + "type": "text", + "x": 1128.3411116427292, + "y": -30.45163868936379, + "width": 90.77382260597089, + "height": 26.67308750687952, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b0f", + "roundness": null, + "seed": 1079045242, + "version": 668, + "versionNonce": 266680358, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "text": "with CRI", + "fontSize": 21.338470005503613, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "with CRI", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "mxUi--yi64fDnQ2a5RLxz", + "type": "arrow", + "x": 961.7401603100766, + "y": -12.669580351442164, + "width": 34.082278481012715, + "height": 0.45020253630936313, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b0g", + "roundness": { + "type": 2 + }, + "seed": 254889274, + "version": 829, + "versionNonce": 910574906, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 34.082278481012715, + 0.45020253630936313 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": "arrow", + "elbowed": false + }, + { + "id": "Sa_1PzWeK8Lfe-rxU1V5b", + "type": "text", + "x": 832.5095730197067, + "y": -26.006124104883384, + "width": 111.40809386971912, + "height": 26.67308750687952, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b0h", + "roundness": null, + "seed": 214406650, + "version": 580, + "versionNonce": 1813463910, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "text": "pull secret", + "fontSize": 21.338470005503613, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "pull secret", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "NDXFSsA2nakjP5hlfcQtm", + "type": "rectangle", + "x": 763.7688592063319, + "y": -54.1610498065902, + "width": 183.74793615850328, + "height": 80.01926252063853, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b0i", + "roundness": { + "type": 3 + }, + "seed": 974571194, + "version": 523, + "versionNonce": 1987939834, + "isDeleted": false, + "boundElements": [ + { + "id": "mxUi--yi64fDnQ2a5RLxz", + "type": "arrow" + } + ], + "updated": 1740428120752, + "link": null, + "locked": false + }, + { + "id": "lCXsV4Gxf3BBY-nC_rALB", + "type": "rectangle", + "x": 1057.1728217820068, + "y": -55.642888001414576, + "width": 183.74793615850328, + "height": 80.01926252063853, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b0j", + "roundness": { + "type": 3 + }, + "seed": 2143412090, + "version": 637, + "versionNonce": 1684399782, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false + }, + { + "id": "P9r_SdozsThosa1dl2mZm", + "type": "text", + "x": 1015.6813523268606, + "y": -40.82450605314898, + "width": 26.31032928399634, + "height": 40.0096312603195, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b0k", + "roundness": null, + "seed": 973856826, + "version": 306, + "versionNonce": 1783479994, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "text": "...", + "fontSize": 32.0077050082556, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "...", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "TaYlJDEZRUu1zp2j4R4wJ", + "type": "arrow", + "x": 1255.984209681817, + "y": -17.856014033336578, + "width": 34.082278481012715, + "height": 0.45020253630936313, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b0l", + "roundness": { + "type": 2 + }, + "seed": 1154992378, + "version": 620, + "versionNonce": 2038309350, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 34.082278481012715, + 0.45020253630936313 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": "arrow", + "elbowed": false + }, + { + "id": "m2EuNMezGvsDAG9Kogpi8", + "type": "text", + "x": 1311.2587757220385, + "y": -46.010939735043394, + "width": 26.31032928399634, + "height": 40.0096312603195, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b0m", + "roundness": null, + "seed": 128489914, + "version": 355, + "versionNonce": 2119817082, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "text": "...", + "fontSize": 32.0077050082556, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "...", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "o7uKNjf5kmGoFf_g_aTRM", + "type": "text", + "x": 1304.327233364555, + "y": -194.19475921770663, + "width": 26.31032928399634, + "height": 40.0096312603195, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b0n", + "roundness": null, + "seed": 27349626, + "version": 495, + "versionNonce": 242021670, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "text": "...", + "fontSize": 32.0077050082556, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "...", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "fAdvygBvuRdzARoB5JXka", + "type": "arrow", + "x": 22.295266270153206, + "y": -0.5984064096692236, + "width": 120.97607362524182, + "height": 96.55119180123296, + "angle": 0, + "strokeColor": "#1971c2", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b0o", + "roundness": { + "type": 2 + }, + "seed": 1434776378, + "version": 923, + "versionNonce": 316987450, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + -120.97607362524182, + -96.55119180123296 + ] + ], + "lastCommittedPoint": null, + "startBinding": { + "elementId": "ttZPu4TJwkQkWPzyS9GCB", + "focus": -1.1870558826548732, + "gap": 3.1014664762745525, + "fixedPoint": null + }, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": "arrow", + "elbowed": false + }, + { + "id": "VCz_tY7kQBBALVmSZ76Bo", + "type": "arrow", + "x": 24.695423787661184, + "y": -0.7237309906240625, + "width": 121.9357558844285, + "height": 6.021518809107274, + "angle": 0, + "strokeColor": "#1971c2", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b0p", + "roundness": { + "type": 2 + }, + "seed": 1438022650, + "version": 923, + "versionNonce": 480206950, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + -121.9357558844285, + -6.021518809107274 + ] + ], + "lastCommittedPoint": null, + "startBinding": { + "elementId": "ttZPu4TJwkQkWPzyS9GCB", + "focus": -0.07266313932980888, + "gap": 1.5953039571103673, + "fixedPoint": null + }, + "endBinding": { + "elementId": "M3eMfDu8L64f9q0VaHM0o", + "focus": 0.058760047986420504, + "gap": 7.153277711835884, + "fixedPoint": null + }, + "startArrowhead": null, + "endArrowhead": "arrow", + "elbowed": false + }, + { + "id": "ibLSi3B7FN3GGvwFJK30O", + "type": "arrow", + "x": 25.78967563353808, + "y": -1.6756664390859441, + "width": 124.6084374234849, + "height": 73.56401727410552, + "angle": 0, + "strokeColor": "#1971c2", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b0q", + "roundness": { + "type": 2 + }, + "seed": 272166074, + "version": 933, + "versionNonce": 131186938, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + -124.6084374234849, + 73.56401727410552 + ] + ], + "lastCommittedPoint": null, + "startBinding": { + "elementId": "ttZPu4TJwkQkWPzyS9GCB", + "focus": 0.8518072289156754, + "gap": 1.5790710147449118, + "fixedPoint": null + }, + "endBinding": { + "elementId": "1Sj3Q60ja4rPwIg1ttId4", + "focus": 0.5981499598188146, + "gap": 4.775777121419232, + "fixedPoint": null + }, + "startArrowhead": null, + "endArrowhead": "arrow", + "elbowed": false + }, + { + "id": "jnY1GStAOpB--uVRrlHX3", + "type": "text", + "x": 172.51541947050237, + "y": -33.41531507901618, + "width": 72.74281653665105, + "height": 26.67308750687952, + "angle": 0, + "strokeColor": "#2f9e44", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b0r", + "roundness": null, + "seed": 1521436026, + "version": 311, + "versionNonce": 1742889894, + "isDeleted": false, + "boundElements": [ + { + "id": "XbHDnr_mhNVm1L4DBuYkx", + "type": "arrow" + } + ], + "updated": 1740428120752, + "link": null, + "locked": false, + "text": "update", + "fontSize": 21.338470005503613, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "update", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "_PRPs1etcmKOcGJr7Vzll", + "type": "text", + "x": 769.2362623977547, + "y": -27.48796229970958, + "width": 57.229750579179054, + "height": 26.67308750687952, + "angle": 0, + "strokeColor": "#2f9e44", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b0s", + "roundness": null, + "seed": 1583121978, + "version": 327, + "versionNonce": 1218679226, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "text": "Fetch", + "fontSize": 21.338470005503613, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "Fetch", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "lN_rasnRyP6eDPWo_0vm7", + "type": "text", + "x": 1076.4508310594651, + "y": -30.141158305684257, + "width": 54.32773001822532, + "height": 26.67308750687952, + "angle": 0, + "strokeColor": "#2f9e44", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b0t", + "roundness": null, + "seed": 606318330, + "version": 333, + "versionNonce": 845348582, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "text": "Sync ", + "fontSize": 21.338470005503613, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "Sync ", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "JUjx3SbtsLga4kBwPQLfg", + "type": "text", + "x": 396.8984838960537, + "y": 176.6039993886543, + "width": 101.1229566204531, + "height": 35.90274986952155, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b0u", + "roundness": null, + "seed": 545767354, + "version": 1006, + "versionNonce": 1484606074, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "text": "DSWOP", + "fontSize": 28.722199895617234, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "DSWOP", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "y7rtcKuePamKp9J9LtYrt", + "type": "rectangle", + "x": 367.76576063613857, + "y": 241.51254453483762, + "width": 200.05840531039073, + "height": 399.11850100524606, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b0v", + "roundness": { + "type": 3 + }, + "seed": 1068218490, + "version": 773, + "versionNonce": 1890464294, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false + }, + { + "id": "LBCxdT4uPTJ_ARaFHMKxz", + "type": "rectangle", + "x": 677.2481576125406, + "y": 233.91686371985907, + "width": 190.05840531039075, + "height": 399.11850100524606, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b0w", + "roundness": { + "type": 3 + }, + "seed": 1901238586, + "version": 808, + "versionNonce": 1579281210, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false + }, + { + "id": "Tpf7UGPHA1HjP34GawBpB", + "type": "text", + "x": 690.8877959634351, + "y": 171.08192033294745, + "width": 163.96219250159524, + "height": 35.90274986952155, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b0x", + "roundness": null, + "seed": 887054842, + "version": 1066, + "versionNonce": 2108751206, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "text": "Reconciler ", + "fontSize": 28.722199895617234, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "Reconciler ", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "UK457k3UJyb6yaBpIPoyH", + "type": "text", + "x": 398.54158252240495, + "y": 285.5038595528631, + "width": 147.6767533383615, + "height": 30.418075320387064, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b0y", + "roundness": null, + "seed": 626332346, + "version": 774, + "versionNonce": 804549626, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "text": "pod manager", + "fontSize": 24.33446025630965, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "pod manager", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "XiLi3g0eb2lIHra95lK7Y", + "type": "arrow", + "x": 460.2652464153939, + "y": 346.23512565786496, + "width": 2.066128072731317, + "height": 168.72192821620683, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b0z", + "roundness": { + "type": 2 + }, + "seed": 89566074, + "version": 2021, + "versionNonce": 1320706214, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + -2.066128072731317, + 168.72192821620683 + ] + ], + "lastCommittedPoint": null, + "startBinding": { + "elementId": "ZbpatjOAajyCoFhSt5zWP", + "focus": 1.1921881235696, + "gap": 14, + "fixedPoint": null + }, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": "arrow", + "elbowed": false + }, + { + "id": "SSZjBh79zYUZpMCpHEDvG", + "type": "text", + "x": 438.4473717584474, + "y": 430.98011645116185, + "width": 83.83537222048001, + "height": 24.458603180250307, + "angle": 1.5818437274430268, + "strokeColor": "#2f9e44", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b10", + "roundness": null, + "seed": 1260858426, + "version": 1063, + "versionNonce": 1610081466, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "text": "get pods", + "fontSize": 19.566882544200254, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "get pods", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "RIyKJZGxnrc4SyNUcjWu7", + "type": "arrow", + "x": 775.1744683218799, + "y": 340.58250656385917, + "width": 0, + "height": 168.4860108049824, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b11", + "roundness": { + "type": 2 + }, + "seed": 749311226, + "version": 1274, + "versionNonce": 661740518, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 0, + 168.4860108049824 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": "arrow", + "elbowed": false + }, + { + "id": "479GBvoM3ouPj4r4lb8Bp", + "type": "text", + "x": 411.7517726941237, + "y": 205.88189634821083, + "width": 60.57216570694151, + "height": 22.78704244493616, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b12", + "roundness": null, + "seed": 727770554, + "version": 735, + "versionNonce": 1204764026, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "text": "100 ms", + "fontSize": 18.229633955948938, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "100 ms", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "PuWJ7kEo4R8RNBxCY5fEh", + "type": "text", + "x": 740.7740261979029, + "y": 203.46508881616955, + "width": 49.563043759895486, + "height": 18.643943818584148, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b13", + "roundness": null, + "seed": 544218746, + "version": 714, + "versionNonce": 1307111206, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "text": "100 ms", + "fontSize": 14.915155054867318, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "100 ms", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "4zKGYhtG-ng_4YPT9wSuH", + "type": "rectangle", + "x": 388.8460707458721, + "y": 270.1124134036827, + "width": 163.04295879056093, + "height": 65.93183145575246, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b14", + "roundness": { + "type": 3 + }, + "seed": 1218068282, + "version": 867, + "versionNonce": 347962938, + "isDeleted": false, + "boundElements": [ + { + "id": "XiLi3g0eb2lIHra95lK7Y", + "type": "arrow" + }, + { + "id": "qNDkq0ooB5n-yjj7fmDop", + "type": "arrow" + } + ], + "updated": 1740428120752, + "link": null, + "locked": false + }, + { + "id": "TJ47peJuOBeZAJg0-NevT", + "type": "text", + "x": 772.1267018293979, + "y": 420.51910249649063, + "width": 57.78128445664359, + "height": 26.930141071288595, + "angle": 1.6016967926806451, + "strokeColor": "#2f9e44", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b15", + "roundness": null, + "seed": 1346521082, + "version": 804, + "versionNonce": 1049369190, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "text": "Fetch", + "fontSize": 21.54411285703088, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "Fetch", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "mX-nJDk3A0tJAScDS_2Db", + "type": "rectangle", + "x": 688.1017540318458, + "y": 526.2815234527652, + "width": 173.09291217863054, + "height": 91.14816977974549, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b16", + "roundness": { + "type": 3 + }, + "seed": 1600862394, + "version": 808, + "versionNonce": 1403365114, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false + }, + { + "id": "8grZH00eIk2-1nT8T9Htl", + "type": "ellipse", + "x": -67.54236809141321, + "y": -132.32335153347321, + "width": 75.07980187121606, + "height": 49.55266923500196, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b17", + "roundness": { + "type": 2 + }, + "seed": 632820090, + "version": 445, + "versionNonce": 1613225382, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false + }, + { + "id": "skfpiE6hr9cs-C6bKD_Wb", + "type": "text", + "x": -34.5072552680781, + "y": -133.3373584689498, + "width": 12.102262378413524, + "height": 55.82226230146739, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b18", + "roundness": null, + "seed": 1718342202, + "version": 410, + "versionNonce": 2097854394, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "text": "1", + "fontSize": 44.657809841173915, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "1", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "7-Kt5EaEow5ozvNnKk76d", + "type": "ellipse", + "x": 163.62439030154337, + "y": -91.89676196114942, + "width": 75.07980187121606, + "height": 49.55266923500196, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b19", + "roundness": { + "type": 2 + }, + "seed": 74021626, + "version": 493, + "versionNonce": 938031334, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false + }, + { + "id": "qrfaE-s-4UhFXRe4-uMqg", + "type": "text", + "x": 186.78058182603354, + "y": -96.86233741616434, + "width": 27.84398146835618, + "height": 48.88464070083969, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b1A", + "roundness": null, + "seed": 238291898, + "version": 474, + "versionNonce": 17805434, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "text": "2", + "fontSize": 39.10771256067176, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "2", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "ZbpatjOAajyCoFhSt5zWP", + "type": "ellipse", + "x": 465.01668164295506, + "y": 352.8053004967287, + "width": 52.479249267125496, + "height": 34.63630451630238, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b1B", + "roundness": { + "type": 2 + }, + "seed": 1240368250, + "version": 875, + "versionNonce": 492645414, + "isDeleted": false, + "boundElements": [ + { + "id": "XiLi3g0eb2lIHra95lK7Y", + "type": "arrow" + } + ], + "updated": 1740428120752, + "link": null, + "locked": false + }, + { + "id": "ngWT5x70MqSqN1S9D-GAh", + "type": "text", + "x": 478.4403211923359, + "y": 349.3344645919451, + "width": 19.97702322706437, + "height": 39.0186221188828, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b1C", + "roundness": null, + "seed": 1096541498, + "version": 850, + "versionNonce": 1400344890, + "isDeleted": false, + "boundElements": [ + { + "id": "XiLi3g0eb2lIHra95lK7Y", + "type": "arrow" + } + ], + "updated": 1740428120752, + "link": null, + "locked": false, + "text": "4", + "fontSize": 31.214897695106245, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "4", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "3jAftwpONw3o6-Umj6GP5", + "type": "ellipse", + "x": 778.6159706706198, + "y": 348.66220187037743, + "width": 52.479249267125496, + "height": 34.63630451630238, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b1D", + "roundness": { + "type": 2 + }, + "seed": 1306471930, + "version": 915, + "versionNonce": 1852880742, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false + }, + { + "id": "cxtZACwJi9MLyU8tHqmb9", + "type": "text", + "x": 790.9347839196394, + "y": 345.19136596559383, + "width": 19.29031044586398, + "height": 39.0186221188828, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b1E", + "roundness": null, + "seed": 612064954, + "version": 887, + "versionNonce": 2007325178, + "isDeleted": false, + "boundElements": [ + { + "id": "RIyKJZGxnrc4SyNUcjWu7", + "type": "arrow" + } + ], + "updated": 1740428120752, + "link": null, + "locked": false, + "text": "5", + "fontSize": 31.214897695106245, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "5", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "4GzbFfvC1bLlJe5NL7U6j", + "type": "ellipse", + "x": 661.5220237632934, + "y": -80.0420564025344, + "width": 63.22509631260294, + "height": 49.55266923500196, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b1F", + "roundness": { + "type": 2 + }, + "seed": 1641248634, + "version": 615, + "versionNonce": 1131469478, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false + }, + { + "id": "1Krl8_9PVRMWoq3kKF1LO", + "type": "text", + "x": 680.7266467682471, + "y": -81.05606333801279, + "width": 28.580266806603053, + "height": 55.82226230146739, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b1G", + "roundness": null, + "seed": 371882042, + "version": 598, + "versionNonce": 211552954, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "text": "6", + "fontSize": 44.657809841173915, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "6", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "vOGxp7tLs7sktFpOwyon8", + "type": "ellipse", + "x": 959.8654469883909, + "y": -80.04205640253622, + "width": 67.17666483214083, + "height": 45.60110071546461, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b1H", + "roundness": { + "type": 2 + }, + "seed": 1365467386, + "version": 672, + "versionNonce": 587896294, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false + }, + { + "id": "MPASaHzMfFWa1Kv1JGXpj", + "type": "text", + "x": 984.9974227726502, + "y": -81.05606333801461, + "width": 24.025287575687667, + "height": 55.82226230146739, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b1I", + "roundness": null, + "seed": 788607418, + "version": 667, + "versionNonce": 1493083002, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "text": "7", + "fontSize": 44.657809841173915, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "7", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "0jsNiq7WgvsVs2LJckjVz", + "type": "ellipse", + "x": 1254.25730169395, + "y": -82.01784066230266, + "width": 75.07980187121606, + "height": 49.55266923500196, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b1J", + "roundness": { + "type": 2 + }, + "seed": 1646717562, + "version": 700, + "versionNonce": 910879014, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false + }, + { + "id": "_f6SybWhmcui4U2B4PfdP", + "type": "text", + "x": 1273.4619246989027, + "y": -94.88655315639608, + "width": 36.70778391055511, + "height": 55.82226230146739, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b1K", + "roundness": null, + "seed": 1100450618, + "version": 716, + "versionNonce": 1460675642, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "text": "...", + "fontSize": 44.657809841173915, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "...", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "ScW06QXuV8LUtzYHyfJFT", + "type": "rectangle", + "x": 260.43781903021636, + "y": -47.71152547291513, + "width": 177.82058337919676, + "height": 80.01926252063853, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b1L", + "roundness": { + "type": 3 + }, + "seed": 1404441594, + "version": 570, + "versionNonce": 2090783846, + "isDeleted": false, + "boundElements": [ + { + "id": "qNDkq0ooB5n-yjj7fmDop", + "type": "arrow" + } + ], + "updated": 1740428120752, + "link": null, + "locked": false + }, + { + "id": "wWsnb8eCzL6yfxUk3VsAr", + "type": "rectangle", + "x": 344.9025961353341, + "y": 138.55654366998624, + "width": 541.3648871766655, + "height": 509.60113104130005, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b1M", + "roundness": { + "type": 3 + }, + "seed": 1518699706, + "version": 598, + "versionNonce": 1085508858, + "isDeleted": false, + "boundElements": [ + { + "id": "qNDkq0ooB5n-yjj7fmDop", + "type": "arrow" + } + ], + "updated": 1740428120752, + "link": null, + "locked": false + }, + { + "id": "TBpv2-SCGWwvuY0Aq0otN", + "type": "text", + "x": 485.84529349117247, + "y": 105.41175465917058, + "width": 78.20786452933027, + "height": 24.168075320386844, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b1N", + "roundness": null, + "seed": 1604902266, + "version": 498, + "versionNonce": 2144556966, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "text": "Batches", + "fontSize": 19.33446025630948, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "Batches", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "wwLKB5NFMCKNXqpjkmCiu", + "type": "text", + "x": 572.773020584696, + "y": 106.79278753462222, + "width": 177.7139976278412, + "height": 18.643943818584148, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b1O", + "roundness": null, + "seed": 1080237626, + "version": 519, + "versionNonce": 460053946, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "text": "with 100 ms sleep period", + "fontSize": 14.915155054867318, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "with 100 ms sleep period", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "Pdrcq4zSweRFuzwdzZRHY", + "type": "ellipse", + "x": 442.7744807174563, + "y": -64.22728487579752, + "width": 61.249312052834, + "height": 40.42454595486991, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b1P", + "roundness": { + "type": 2 + }, + "seed": 966215418, + "version": 534, + "versionNonce": 135623398, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false + }, + { + "id": "HlTBpU5deZ2ie5C4UWSeO", + "type": "text", + "x": 461.6650580137516, + "y": -66.30236480301483, + "width": 24.808489348643068, + "height": 45.53921398277591, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b1Q", + "roundness": null, + "seed": 1942509498, + "version": 516, + "versionNonce": 1146885754, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "text": "3", + "fontSize": 36.43137118622073, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "3", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "P8P8g1nSJhy0bLNnfjqA9", + "type": "text", + "x": 689.8141874095213, + "y": 538.5348491547184, + "width": 177.318893432617, + "height": 67.50000000000003, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b1R", + "roundness": null, + "seed": 253317242, + "version": 215, + "versionNonce": 1341269542, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "text": "ActualState\nOfWorld", + "fontSize": 27.00000000000001, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "ActualStateOfWorld", + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "bymdm6A1_etDb46P-f3Sv", + "type": "rectangle", + "x": 688.5299667737431, + "y": 244.21076426484706, + "width": 174.4876246099369, + "height": 85.12085070267926, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b1S", + "roundness": { + "type": 3 + }, + "seed": 793588026, + "version": 937, + "versionNonce": 2085041978, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false + }, + { + "id": "i_o0WI7LWM_LZu1iDutTe", + "type": "text", + "x": 690.1291627447822, + "y": 255.65381913043075, + "width": 174.9321308392529, + "height": 63.036454119867855, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b1T", + "roundness": null, + "seed": 130480634, + "version": 364, + "versionNonce": 945189222, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "text": "DesiredState\nOfWorld", + "fontSize": 25.214581647947142, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "DesiredStateOfWorld", + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "d0T9TccjfssFk5eTvZfRq", + "type": "rectangle", + "x": 374.7799667737431, + "y": 525.4607642648471, + "width": 186.84291217863057, + "height": 91.14816977974549, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b1U", + "roundness": { + "type": 3 + }, + "seed": 1737075386, + "version": 907, + "versionNonce": 1938833402, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false + }, + { + "id": "ylHfUwD4dualvlTGHzujQ", + "type": "text", + "x": 376.4924001514187, + "y": 537.7140899668002, + "width": 187.31889343261696, + "height": 67.50000000000003, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b1V", + "roundness": null, + "seed": 1161315194, + "version": 334, + "versionNonce": 2089768102, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "text": "DesiredState\nOfWorld", + "fontSize": 27.00000000000001, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "DesiredStateOfWorld", + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "qNDkq0ooB5n-yjj7fmDop", + "type": "arrow", + "x": 339.32845508651053, + "y": 45.233261853135446, + "width": 214.28571428571422, + "height": 284.28571428571377, + "angle": 0, + "strokeColor": "#f08c00", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b1W", + "roundness": { + "type": 2 + }, + "seed": 1259717690, + "version": 291, + "versionNonce": 1446654138, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + -191.42857142857156, + 265.71428571428623 + ], + [ + 22.857142857142662, + 284.28571428571377 + ] + ], + "lastCommittedPoint": null, + "startBinding": { + "elementId": "ScW06QXuV8LUtzYHyfJFT", + "focus": -0.23881224408912913, + "gap": 12.925524805411442, + "fixedPoint": null + }, + "endBinding": { + "elementId": "wWsnb8eCzL6yfxUk3VsAr", + "focus": 0.15049554965202286, + "gap": 1, + "fixedPoint": null + }, + "startArrowhead": null, + "endArrowhead": "arrow", + "elbowed": false + }, + { + "id": "bYQCNZAqKwP4phpbwHnfo", + "type": "text", + "x": 263.61416937222475, + "y": 71.51435759319884, + "width": 170.4522705078125, + "height": 26.49855524435255, + "angle": 0, + "strokeColor": "#2f9e44", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b1X", + "roundness": null, + "seed": 1661283578, + "version": 349, + "versionNonce": 1716113382, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "text": "Run immediately ", + "fontSize": 21.19884419548204, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "Run immediately ", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "zEwldJi4TqjIrLGp4an_N", + "type": "text", + "x": 175.7869184444462, + "y": 940.7229058843868, + "width": 182.919178641371, + "height": 23.249266525655816, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b1Y", + "roundness": null, + "seed": 1116306874, + "version": 669, + "versionNonce": 1474824570, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "text": "syncTerminatingPod", + "fontSize": 18.599413220524653, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "syncTerminatingPod", + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "6ero_KlXebFk_U9ssN838", + "type": "rectangle", + "x": 112.50412753854926, + "y": 819.2325358503722, + "width": 1479.72702256467, + "height": 856.502476609799, + "angle": 0, + "strokeColor": "#1971c2", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b1Z", + "roundness": { + "type": 3 + }, + "seed": 1992668794, + "version": 862, + "versionNonce": 26403622, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false + }, + { + "id": "ff-htxpsCJ1qZjgD9J7xV", + "type": "diamond", + "x": 159.02216727340874, + "y": 902.068423987731, + "width": 210.54292072380798, + "height": 106.87778101353753, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b1a", + "roundness": { + "type": 2 + }, + "seed": 1887229754, + "version": 569, + "versionNonce": 1071434298, + "isDeleted": false, + "boundElements": [ + { + "id": "2dwECiVGd6TJrQ0OJeYSG", + "type": "arrow" + } + ], + "updated": 1740428120752, + "link": null, + "locked": false + }, + { + "id": "2dwECiVGd6TJrQ0OJeYSG", + "type": "arrow", + "x": 376.1384848462676, + "y": 954.240495667379, + "width": 68.56315121828521, + "height": 0.45677259529530617, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b1b", + "roundness": { + "type": 2 + }, + "seed": 269606906, + "version": 875, + "versionNonce": 1356303974, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 68.56315121828521, + -0.45677259529530617 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": "arrow", + "elbowed": false + }, + { + "id": "Ar-KK7pVGpWuC7YAcUbus", + "type": "text", + "x": 1219.5171335185278, + "y": 818.9855628179021, + "width": 22.727053816886524, + "height": 34.56061051277542, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b1c", + "roundness": null, + "seed": 830984378, + "version": 591, + "versionNonce": 1962636026, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "text": "...", + "fontSize": 27.64848841022033, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "...", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "JSpA9Cs9MmL3Y6ytbjjfk", + "type": "text", + "x": 479.29200076853385, + "y": 1189.784321424263, + "width": 101.1229566204531, + "height": 35.90274986952155, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b1d", + "roundness": null, + "seed": 948021626, + "version": 1058, + "versionNonce": 14995878, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "text": "DSWOP", + "fontSize": 28.722199895617234, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "DSWOP", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "XCCdT8CF6RuEMk7UBhJYW", + "type": "rectangle", + "x": 450.15927750861783, + "y": 1254.6928665704463, + "width": 200.05840531039073, + "height": 399.11850100524606, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b1e", + "roundness": { + "type": 3 + }, + "seed": 474114618, + "version": 827, + "versionNonce": 164037562, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false + }, + { + "id": "lbzUPP0A4XHyDOPXhMCyD", + "type": "rectangle", + "x": 759.6416744850198, + "y": 1247.0971857554678, + "width": 190.05840531039075, + "height": 399.11850100524606, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b1f", + "roundness": { + "type": 3 + }, + "seed": 1940722426, + "version": 860, + "versionNonce": 484945126, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false + }, + { + "id": "0qjAStA8PPxQW94N0m1g_", + "type": "text", + "x": 773.2813128359144, + "y": 1184.2622423685561, + "width": 163.96219250159524, + "height": 35.90274986952155, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b1g", + "roundness": null, + "seed": 21275578, + "version": 1118, + "versionNonce": 1214413946, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "text": "Reconciler ", + "fontSize": 28.722199895617234, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "Reconciler ", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "wmslZY19A3HdW0sqiBhOB", + "type": "text", + "x": 480.9350993948851, + "y": 1298.6841815884718, + "width": 147.6767533383615, + "height": 30.418075320387064, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b1h", + "roundness": null, + "seed": 1059855482, + "version": 826, + "versionNonce": 1114447910, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "text": "pod manager", + "fontSize": 24.33446025630965, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "pod manager", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "PhZ_iCz_bL-QczddDP1py", + "type": "arrow", + "x": 542.6587632878732, + "y": 1359.4154476934737, + "width": 2.066128072731317, + "height": 168.72192821620683, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b1i", + "roundness": { + "type": 2 + }, + "seed": 1797684538, + "version": 2125, + "versionNonce": 1049681210, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + -2.066128072731317, + 168.72192821620683 + ] + ], + "lastCommittedPoint": null, + "startBinding": { + "elementId": "-GqnbnFF5C2u9RzsRUVni", + "focus": 2.780804172662859, + "gap": 14, + "fixedPoint": null + }, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": "arrow", + "elbowed": false + }, + { + "id": "jVsIMqQ1fpldzNhMv_NE_", + "type": "text", + "x": 520.8408886309267, + "y": 1444.1604384867705, + "width": 83.83537222048001, + "height": 24.458603180250307, + "angle": 1.5818437274430268, + "strokeColor": "#2f9e44", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b1j", + "roundness": null, + "seed": 311870970, + "version": 1115, + "versionNonce": 1432496998, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "text": "get pods", + "fontSize": 19.566882544200254, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "get pods", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "JH4C_wl6FjaJAvYFOuqqv", + "type": "arrow", + "x": 857.5679851943592, + "y": 1353.7628285994679, + "width": 0, + "height": 168.4860108049824, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b1k", + "roundness": { + "type": 2 + }, + "seed": 511702714, + "version": 1326, + "versionNonce": 1236608506, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 0, + 168.4860108049824 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": "arrow", + "elbowed": false + }, + { + "id": "ksZJTtT22JdWa2H-4kNAi", + "type": "text", + "x": 494.14528956660297, + "y": 1219.0622183838195, + "width": 60.57216570694151, + "height": 22.78704244493616, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b1l", + "roundness": null, + "seed": 1602555770, + "version": 787, + "versionNonce": 873713318, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "text": "100 ms", + "fontSize": 18.229633955948938, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "100 ms", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "BnjT7JZNLhwUFuulIpO8d", + "type": "text", + "x": 823.1675430703822, + "y": 1216.6454108517783, + "width": 49.563043759895486, + "height": 18.643943818584148, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b1m", + "roundness": null, + "seed": 434704442, + "version": 766, + "versionNonce": 584210106, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "text": "100 ms", + "fontSize": 14.915155054867318, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "100 ms", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "pjRcLC8zmnER9EoZ0j4C2", + "type": "rectangle", + "x": 471.2395876183514, + "y": 1283.2927354392914, + "width": 163.04295879056093, + "height": 65.93183145575246, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b1n", + "roundness": { + "type": 3 + }, + "seed": 294582522, + "version": 919, + "versionNonce": 1798244838, + "isDeleted": false, + "boundElements": [ + { + "id": "PhZ_iCz_bL-QczddDP1py", + "type": "arrow" + } + ], + "updated": 1740428120752, + "link": null, + "locked": false + }, + { + "id": "buXKciKHkmP4P9uG_aBsK", + "type": "text", + "x": 854.5202187018772, + "y": 1433.6994245320993, + "width": 57.78128445664359, + "height": 26.930141071288595, + "angle": 1.6016967926806451, + "strokeColor": "#2f9e44", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b1o", + "roundness": null, + "seed": 368691642, + "version": 856, + "versionNonce": 1787522938, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "text": "Fetch", + "fontSize": 21.54411285703088, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "Fetch", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "GHfnlY2fm9B9X-Q0kDAig", + "type": "rectangle", + "x": 770.495270904325, + "y": 1539.461845488374, + "width": 173.09291217863054, + "height": 91.14816977974549, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b1p", + "roundness": { + "type": 3 + }, + "seed": 239895162, + "version": 860, + "versionNonce": 1774247206, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false + }, + { + "id": "sgwTvjgVShtOS81HRve3X", + "type": "ellipse", + "x": 547.4101985154343, + "y": 1365.9856225323374, + "width": 52.479249267125496, + "height": 34.63630451630238, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b1q", + "roundness": { + "type": 2 + }, + "seed": 88744762, + "version": 927, + "versionNonce": 891514938, + "isDeleted": false, + "boundElements": [ + { + "id": "PhZ_iCz_bL-QczddDP1py", + "type": "arrow" + } + ], + "updated": 1740428120752, + "link": null, + "locked": false + }, + { + "id": "-GqnbnFF5C2u9RzsRUVni", + "type": "text", + "x": 560.8338380648152, + "y": 1362.5147866275538, + "width": 19.97702322706437, + "height": 39.0186221188828, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b1r", + "roundness": null, + "seed": 894807034, + "version": 902, + "versionNonce": 892749926, + "isDeleted": false, + "boundElements": [ + { + "id": "PhZ_iCz_bL-QczddDP1py", + "type": "arrow" + } + ], + "updated": 1740428120752, + "link": null, + "locked": false, + "text": "4", + "fontSize": 31.214897695106245, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "4", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "Kxq7d2CjcRmzTTevIS4Bs", + "type": "ellipse", + "x": 861.0094875430991, + "y": 1361.8425239059861, + "width": 52.479249267125496, + "height": 34.63630451630238, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b1s", + "roundness": { + "type": 2 + }, + "seed": 343022778, + "version": 967, + "versionNonce": 377313530, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false + }, + { + "id": "vmN0xh_lM9ozwUHp83Tt8", + "type": "text", + "x": 873.3283007921186, + "y": 1358.3716880012025, + "width": 19.29031044586398, + "height": 39.0186221188828, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b1t", + "roundness": null, + "seed": 1614968186, + "version": 939, + "versionNonce": 492587942, + "isDeleted": false, + "boundElements": [ + { + "id": "JH4C_wl6FjaJAvYFOuqqv", + "type": "arrow" + } + ], + "updated": 1740428120752, + "link": null, + "locked": false, + "text": "5", + "fontSize": 31.214897695106245, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "5", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "5L7r3z5ELPXZq23r3mwBW", + "type": "rectangle", + "x": 427.29611300781335, + "y": 1151.736865705595, + "width": 541.3648871766655, + "height": 509.60113104130005, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b1u", + "roundness": { + "type": 3 + }, + "seed": 705279546, + "version": 654, + "versionNonce": 773597626, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false + }, + { + "id": "rMefBgAye06ThdqbsvN8J", + "type": "text", + "x": 568.2388103636517, + "y": 1118.5920766947775, + "width": 78.20786452933027, + "height": 24.168075320386844, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b1v", + "roundness": null, + "seed": 1655365370, + "version": 550, + "versionNonce": 1885333222, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "text": "Batches", + "fontSize": 19.33446025630948, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "Batches", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "Um5P_awdXWKrKAmICICDv", + "type": "text", + "x": 655.1665374571753, + "y": 1119.9731095702327, + "width": 177.7139976278412, + "height": 18.643943818584148, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b1w", + "roundness": null, + "seed": 1722347450, + "version": 572, + "versionNonce": 857924218, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "text": "with 100 ms sleep period", + "fontSize": 14.915155054867318, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "with 100 ms sleep period", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "EJ2UR0ICrvdSBsMT9CXMC", + "type": "text", + "x": 772.2077042820006, + "y": 1551.715171190327, + "width": 177.318893432617, + "height": 67.50000000000003, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b1x", + "roundness": null, + "seed": 170322042, + "version": 267, + "versionNonce": 785259046, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "text": "ActualState\nOfWorld", + "fontSize": 27.00000000000001, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "ActualStateOfWorld", + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "Wo_scKqe_YrU4OzNaU-TO", + "type": "rectangle", + "x": 770.9234836462224, + "y": 1257.3910863004558, + "width": 174.4876246099369, + "height": 85.12085070267926, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b1y", + "roundness": { + "type": 3 + }, + "seed": 619170106, + "version": 989, + "versionNonce": 5538618, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false + }, + { + "id": "oQtPNjypqcQuSUt3sYVs8", + "type": "text", + "x": 772.5226796172615, + "y": 1268.8341411660394, + "width": 174.9321308392529, + "height": 63.036454119867855, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b1z", + "roundness": null, + "seed": 508465658, + "version": 416, + "versionNonce": 1066657126, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "text": "DesiredState\nOfWorld", + "fontSize": 25.214581647947142, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "DesiredStateOfWorld", + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "w0Cn3FeXl0ARYr9X2e5ib", + "type": "rectangle", + "x": 457.1734836462224, + "y": 1538.6410863004558, + "width": 186.84291217863057, + "height": 91.14816977974549, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b20", + "roundness": { + "type": 3 + }, + "seed": 2036220602, + "version": 959, + "versionNonce": 538184698, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false + }, + { + "id": "RMxKXz1p7TD8dSXPHYSdu", + "type": "text", + "x": 458.88591702389795, + "y": 1550.894412002409, + "width": 187.31889343261696, + "height": 67.50000000000003, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b21", + "roundness": null, + "seed": 1622793082, + "version": 386, + "versionNonce": 603867302, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "text": "DesiredState\nOfWorld", + "fontSize": 27.00000000000001, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "DesiredStateOfWorld", + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "xo8LtZtp3HSi4WHjZbu80", + "type": "text", + "x": 520.7522533510532, + "y": 907.0299652950916, + "width": 182.919178641371, + "height": 92.99706610262326, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b22", + "roundness": null, + "seed": 849632314, + "version": 851, + "versionNonce": 1482980538, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "text": "complete \nTerminating\nRuntime\nPod", + "fontSize": 18.599413220524653, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "complete \nTerminating\nRuntime\nPod", + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "LZKk4Apy3EfccPZu4VlpE", + "type": "diamond", + "x": 441.79348389714323, + "y": 892.5621397930854, + "width": 222.06038619223384, + "height": 119.54697193976126, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b23", + "roundness": { + "type": 2 + }, + "seed": 218154234, + "version": 635, + "versionNonce": 733627366, + "isDeleted": false, + "boundElements": [ + { + "id": "5GyW0y5dYWdlu05fEyBjG", + "type": "arrow" + } + ], + "updated": 1740428120752, + "link": null, + "locked": false + }, + { + "id": "5GyW0y5dYWdlu05fEyBjG", + "type": "arrow", + "x": 648.7533238172655, + "y": 953.0266000400507, + "width": 145.52065443030983, + "height": 1.8387556932136717, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b24", + "roundness": { + "type": 2 + }, + "seed": 1498551738, + "version": 1141, + "versionNonce": 921228666, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 145.52065443030983, + -1.8387556932136717 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": "arrow", + "elbowed": false + }, + { + "id": "i-lkL--Eh0uFRw0H76NBh", + "type": "ellipse", + "x": 666.1085466811155, + "y": 963.2770703346569, + "width": 99.30244195780936, + "height": 56.63342059969093, + "angle": 0, + "strokeColor": "#2f9e44", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b25", + "roundness": { + "type": 2 + }, + "seed": 1488670330, + "version": 236, + "versionNonce": 685037350, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false + }, + { + "id": "v2oyRcYP_N4Hvsj4plJhV", + "type": "text", + "x": 678.5213696824935, + "y": 969.871358138741, + "width": 74.69866532013951, + "height": 42.26951790216899, + "angle": 0, + "strokeColor": "#2f9e44", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b26", + "roundness": null, + "seed": 805269306, + "version": 272, + "versionNonce": 484709946, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "text": "container\nstopped ", + "fontSize": 16.9078071608676, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "container\nstopped ", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "ni6i3HqoZvpDs34wSzvsU", + "type": "text", + "x": 813.7091941990229, + "y": 933.5200726053363, + "width": 182.919178641371, + "height": 23.249266525655816, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b27", + "roundness": null, + "seed": 1937864698, + "version": 701, + "versionNonce": 599458406, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "text": "completeTerminating", + "fontSize": 18.599413220524653, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "completeTerminating", + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "Jn8mBR8RL4-zY91Cq48in", + "type": "diamond", + "x": 796.9444430279859, + "y": 894.8655907086822, + "width": 210.54292072380798, + "height": 106.87778101353753, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b28", + "roundness": { + "type": 2 + }, + "seed": 860121274, + "version": 604, + "versionNonce": 1262042874, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false + }, + { + "id": "GT9LdkW9kODfZF-DGReLg", + "type": "text", + "x": 1134.932420463681, + "y": 934.4902022201068, + "width": 182.919178641371, + "height": 23.249266525655816, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b29", + "roundness": null, + "seed": 116081018, + "version": 769, + "versionNonce": 255444390, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "text": "unmount volumes", + "fontSize": 18.599413220524653, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "unmount volumes", + "autoResize": false, + "lineHeight": 1.25 + }, + { + "id": "I-NMRkiTkqcABcDtGszNR", + "type": "diamond", + "x": 1107.5009212457685, + "y": 897.1690943468884, + "width": 210.54292072380798, + "height": 106.87778101353753, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b2A", + "roundness": { + "type": 2 + }, + "seed": 431555130, + "version": 654, + "versionNonce": 1852526522, + "isDeleted": false, + "boundElements": [ + { + "id": "bStYfVVM0NlpPSbNX7czz", + "type": "arrow" + } + ], + "updated": 1740428120752, + "link": null, + "locked": false + }, + { + "id": "bStYfVVM0NlpPSbNX7czz", + "type": "arrow", + "x": 1320.7987125913432, + "y": 952.0078530382552, + "width": 68.56315121828521, + "height": 0.45677259529530617, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b2B", + "roundness": { + "type": 2 + }, + "seed": 915450618, + "version": 965, + "versionNonce": 2088640742, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 68.56315121828521, + -0.45677259529530617 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": "arrow", + "elbowed": false + }, + { + "id": "IkDWVDGl6ohlm9AZ1czxE", + "type": "arrow", + "x": 1019.6654109857586, + "y": 946.2529319056675, + "width": 68.56315121828521, + "height": 0.45677259529530617, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b2C", + "roundness": { + "type": 2 + }, + "seed": 1408580538, + "version": 930, + "versionNonce": 714950778, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "points": [ + [ + 0, + 0 + ], + [ + 68.56315121828521, + -0.45677259529530617 + ] + ], + "lastCommittedPoint": null, + "startBinding": null, + "endBinding": null, + "startArrowhead": null, + "endArrowhead": "arrow", + "elbowed": false + }, + { + "id": "TGTadbAmwACCa8bA24rVL", + "type": "text", + "x": 1403.5701061532168, + "y": 923.3554414912969, + "width": 26.31032928399634, + "height": 40.0096312603195, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b2D", + "roundness": null, + "seed": 537506938, + "version": 392, + "versionNonce": 1326781478, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "text": "...", + "fontSize": 32.0077050082556, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "...", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "oIomb_L9w_B5dmEqwQIgI", + "type": "ellipse", + "x": 1460.4074238397488, + "y": 975.0435468216119, + "width": 99.30244195780936, + "height": 56.63342059969093, + "angle": 0, + "strokeColor": "#2f9e44", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b2E", + "roundness": { + "type": 2 + }, + "seed": 210834746, + "version": 300, + "versionNonce": 663890234, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false + }, + { + "id": "z5jgFyhEdminQPgLC_IGY", + "type": "text", + "x": 1472.8202468411264, + "y": 981.6378346256997, + "width": 74.66413879394531, + "height": 42.269517902169, + "angle": 0, + "strokeColor": "#2f9e44", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b2F", + "roundness": null, + "seed": 1525571066, + "version": 343, + "versionNonce": 1894489958, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "text": "container\ndeleted", + "fontSize": 16.9078071608676, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "container\ndeleted", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "cYcGGVHPHbviKemNkSQEi", + "type": "ellipse", + "x": 364.5187438830453, + "y": 884.4631329062004, + "width": 75.07980187121606, + "height": 49.55266923500196, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b2G", + "roundness": { + "type": 2 + }, + "seed": 673484474, + "version": 492, + "versionNonce": 481096186, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false + }, + { + "id": "VPhqnrcWgiDvzQcFa8Hfk", + "type": "text", + "x": 397.55385670638043, + "y": 883.449125970722, + "width": 12.102262378413524, + "height": 55.82226230146739, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b2H", + "roundness": null, + "seed": 2027333498, + "version": 457, + "versionNonce": 105824934, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "text": "1", + "fontSize": 44.657809841173915, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "1", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "f-RnsPyIFFcTNltuZurZj", + "type": "ellipse", + "x": 673.8521179064828, + "y": 884.4631329062004, + "width": 75.07980187121606, + "height": 49.55266923500196, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b2I", + "roundness": { + "type": 2 + }, + "seed": 1162324026, + "version": 481, + "versionNonce": 1559274170, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false + }, + { + "id": "xtjgmdqTQe1E8638IQBC6", + "type": "text", + "x": 696.2204826829429, + "y": 884.7824389590032, + "width": 31.790786743164062, + "height": 55.82226230146739, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b2J", + "roundness": null, + "seed": 89821434, + "version": 453, + "versionNonce": 569081318, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "text": "2", + "fontSize": 44.657809841173915, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "2", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "vxP6qM8VjCq9vRWFA7dBS", + "type": "ellipse", + "x": 1012.5187438830453, + "y": 876.4631939413566, + "width": 75.07980187121606, + "height": 49.55266923500196, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b2K", + "roundness": { + "type": 2 + }, + "seed": 1016226234, + "version": 487, + "versionNonce": 1660959610, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false + }, + { + "id": "3X1yySt5fjY-s1TSUXKmH", + "type": "text", + "x": 1045.5538567063804, + "y": 875.4491870058782, + "width": 30.406646728515625, + "height": 55.82226230146739, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b2L", + "roundness": null, + "seed": 101849722, + "version": 462, + "versionNonce": 2026819878, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "text": "3", + "fontSize": 44.657809841173915, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "3", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "Yz3D0OSYR4tc4iZGcfjVW", + "type": "ellipse", + "x": 1312.5187438830453, + "y": 883.1298199179191, + "width": 75.07980187121606, + "height": 49.55266923500196, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b2M", + "roundness": { + "type": 2 + }, + "seed": 547142458, + "version": 489, + "versionNonce": 1562295354, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false + }, + { + "id": "G6rUnv3z_AF1dJnMjr7j6", + "type": "text", + "x": 1338.887230729818, + "y": 882.1158129824407, + "width": 28.57598876953125, + "height": 55.82226230146739, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b2N", + "roundness": null, + "seed": 2056602618, + "version": 460, + "versionNonce": 375766118, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "text": "6", + "fontSize": 44.657809841173915, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "6", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "EpMSLiwsV3dr1V6ixneOy", + "type": "text", + "x": 160.51434823488898, + "y": 761.1326841990585, + "width": 128.42196719096688, + "height": 44.45514584479921, + "angle": 0, + "strokeColor": "#1971c2", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b2O", + "roundness": null, + "seed": 1040102586, + "version": 625, + "versionNonce": 959390970, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false, + "text": "Kubelet", + "fontSize": 35.56411667583938, + "fontFamily": 1, + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "Kubelet", + "autoResize": true, + "lineHeight": 1.25 + }, + { + "id": "vQo8-9yWPKwdr1Pmh_8YD", + "type": "diamond", + "x": 1459.453810433311, + "y": 929.2547406381263, + "width": 74.54292072380797, + "height": 41.544468025256556, + "angle": 0, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "fillStyle": "hachure", + "strokeWidth": 4, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "groupIds": [], + "frameId": null, + "index": "b2P", + "roundness": { + "type": 2 + }, + "seed": 1551633786, + "version": 818, + "versionNonce": 276643750, + "isDeleted": false, + "boundElements": [], + "updated": 1740428120752, + "link": null, + "locked": false + } + ], + "appState": { + "gridSize": 20, + "gridStep": 5, + "gridModeEnabled": false, + "viewBackgroundColor": "#ffffff" + }, + "files": {} +} \ No newline at end of file diff --git a/keps/sig-storage/4979-evented-desired-state-of-world-populator-kubelet-volume-manager/images/sync-loop-process-new.png b/keps/sig-storage/4979-evented-desired-state-of-world-populator-kubelet-volume-manager/images/sync-loop-process-new.png new file mode 100644 index 00000000000..368099cdd7f Binary files /dev/null and b/keps/sig-storage/4979-evented-desired-state-of-world-populator-kubelet-volume-manager/images/sync-loop-process-new.png differ diff --git a/keps/sig-storage/4979-evented-desired-state-of-world-populator-kubelet-volume-manager/images/sync-loop-process.png b/keps/sig-storage/4979-evented-desired-state-of-world-populator-kubelet-volume-manager/images/sync-loop-process.png new file mode 100644 index 00000000000..f7f5c572d05 Binary files /dev/null and b/keps/sig-storage/4979-evented-desired-state-of-world-populator-kubelet-volume-manager/images/sync-loop-process.png differ diff --git a/keps/sig-storage/4979-evented-desired-state-of-world-populator-kubelet-volume-manager/images/sync-terminating-new-process.png b/keps/sig-storage/4979-evented-desired-state-of-world-populator-kubelet-volume-manager/images/sync-terminating-new-process.png new file mode 100644 index 00000000000..8623e29ab10 Binary files /dev/null and b/keps/sig-storage/4979-evented-desired-state-of-world-populator-kubelet-volume-manager/images/sync-terminating-new-process.png differ diff --git a/keps/sig-storage/4979-evented-desired-state-of-world-populator-kubelet-volume-manager/images/sync-terminating-process.png b/keps/sig-storage/4979-evented-desired-state-of-world-populator-kubelet-volume-manager/images/sync-terminating-process.png new file mode 100644 index 00000000000..b1c4d2a362a Binary files /dev/null and b/keps/sig-storage/4979-evented-desired-state-of-world-populator-kubelet-volume-manager/images/sync-terminating-process.png differ diff --git a/keps/sig-storage/4979-evented-desired-state-of-world-populator-kubelet-volume-manager/kep.yaml b/keps/sig-storage/4979-evented-desired-state-of-world-populator-kubelet-volume-manager/kep.yaml new file mode 100644 index 00000000000..c49ad2521a8 --- /dev/null +++ b/keps/sig-storage/4979-evented-desired-state-of-world-populator-kubelet-volume-manager/kep.yaml @@ -0,0 +1,45 @@ +title: Evented desired state of world populator in kubelet volume manager +kep-number: 4979 +authors: + - "@bouaouda-achraf" +owning-sig: sig-storage +participating-sigs: + - sig-node +status: implementable +creation-date: 2024-11-24 +reviewers: + - "@xing-yang" + - "@jsafrane" + - "@SergeyKanzhelev" + - "@gnufied" +approvers: + - "@xing-yang" + - "@jsafrane" + - "@SergeyKanzhelev" + +# The target maturity stage in the current dev cycle for this KEP. +stage: alpha + +# The most recent milestone for which work toward delivery of this KEP has been +# done. This can be the current (upcoming) milestone, if it is being actively +# worked on. +latest-milestone: "v1.34" + +# The milestone at which this feature was, or is targeted to be, at each stage. +milestone: + alpha: "v1.34" + beta: TBD + stable: TBD + +# The following PRR answers are required at alpha release +# List the feature gate name and the components for which it must be enabled +feature-gates: + - name: EventedDesiredStateOfWorldPopulator + components: + - kubelet +disable-supported: true + +# The following PRR answers are required at beta release +metrics: + - evented_dswp_connection_success_count + - evented_dswp_connection_error_count