diff --git a/README.md b/README.md index a0a4199..7c8bfbb 100644 --- a/README.md +++ b/README.md @@ -18,6 +18,44 @@ docker run --rm --name kitops bittrance/kitops \ --action 'echo "kitops was updated"' ``` +For a full set of commandline options, try `--help`. If you want more advanced configuration (particularly if you wan to track multiple repositories), the [example.yaml](./example.yaml) configuration file explains how. + +We also provide pre-built binaries for Linux, Windows and MacOS for scenarios where you want to run kitops on a virtual machine. You can download it from the [releases page](https://github.com/bittrance/kitops/releases). + +## How does kitops work? + +kitops is a statically compiled binary. It uses only pure Rust libraries and it therefore depends only on your platform's standard library (and an ssh binary where you want git+ssh support). It supports a wide variety of platforms and can be deployed in many different ways: + +- as a long-running process on a VM +- as a periodic job +- as a long-running container +- as a CLI tool to perform a single run + +kitops runs each task on a schedule: + +![kitops workflow](images/flow.png) + +kitops will retry the provided actions until they all succeed, thus providing a basis for eventual consistency. Actions given to kitops need to be idempotent (that is, safe to run multiple times). When kitops successfully executes all the actions of a task, it updates its state file. The state file acts as memory between executions so if kitops is run as a periodic job, you should point `--state-file` to persistent file storage. + +kitops will clone repositories that are not already present in its `--repo-dir` so you can use ephemeral storage for this, but if your repositories are large, you may want to keep repositories on persistent storage too. This allows fetching only new changes, dramatically reducing network traffic. + +## Configuration + +### GitHub integration + +To use kitops with private repositories on GitHub, you need to create a GitHub App and install it in the private repoisitories that you want kitops to track. You pass the App's ID with `--github-app-id` and the private key using `--github-private-key-file`. The app needs to have the `repo` scope. + +If you set `--github-status-context`, kitops will update the status of the commit that triggered the task. This requires the `repo:status` scope. + +```shell +docker run --rm --name kitops bittrance/kitops \ + --url https://github.com/myorg/private-repo \ + --action ./deploy.sh \ + --github-app-id 12345 \ + --github-private-key-file /path/to/private-key.pem \ + --github-status-context deploy/production +``` + ## Rationale ### Why would you want to use kitops? @@ -34,7 +72,7 @@ This model has several potential weaknesses: - Called APIs have to be accessible over the Internet (or require a VPN or similar) - It is hard to delegate responsibility for the target environment to a third party -kitops enables the environment to "pull" deployments from a git repository. +Instead, kitops enables the environment to "pull" deployments from a git repository. ![Pull-style continuous deployment](images/cd-pull-model.png) @@ -42,45 +80,14 @@ This model: - is scalable - only repository rate limiting caps the number of target environments - adheres to the Principle of Least Privilege - the pipeline has no access to the environment and the environment only needs read access to the repository. This is particularly relevant in Azure, where granting permissions to a pipeline requires extensive AAD permissions, but creating a service principal for kitops can be delegated to developers via the `Application Developer` role. +- separates concerns - the actions taken on the repository content can be kept separate from the repository content itself - is NAT-friendly - the environment only needs to be able to make outbound connections to the git server - allows a third party to take responsibility for the target environment -### How does kitops work? - -kitops is a statically compiled binary. It uses only pure Rust libraries and it therefore depends only on libc (and an ssh binary where you want git+ssh support). It supports a wide variety of platforms and can be deployed in many different ways: - -- as a long-running process on a VM -- as a periodic job -- as a long-running container -- as a CLI tool to perform a single run - -kitops runs each task on a schedule. - - - -Each time kitops successfully applies all the actions of a task, it updates its state file. The state file acts as memory between executions so if kitops is run as a periodic job, you should point --state-file to persistent file storage. - -kitops will clone repositories that are not already present in --repo-dir so you can use ephemeral storage for this, but if your repositories are large, you may want to keep repositories on persistent storage too. This allows fetching only new changes, dramatically reducing network traffic. - -## Example use cases - -### Infrastructure-as-code continuous deployment - -Use a serverless platform such as AWS Fargate or Azure Container Apps to run kitops as a periodic container job that applies infrastructure changes as they occur. Becuase kitops only takes a second to start and check for changes, this solution will typically cost a few dollars per month to run. - -This scenario still requires , manually maintained infrastructure definition for kitops itself as it does not currently have special support to update itself. - -### Roll your own container-based build servers - -One use case for Kitops is to combine it with [act](...). Kitops pullsrepo changes and simply inokes act which will give you a local runner. Act will interact with the loval Docker daemon, much like you were using GiHub-hosted runners. - -This use case requires a virtual machine, because there is currently no container orchestration platform that gives access to the local Docker socket, as required by `act`. - -kitops cannot yet coordinate execution across multiple nodes, so you will have to balance your repositories across build servers manually. - ## Alternatives - [snare](https://tratt.net/laurie/src/snare/) - tool with similar design goals, but limited to GitHub webhooks (i.e. push-based). +- [GitHub Actions Runner](https://github.com/actions/runner) - the official runner application for GitHub Actions. ## Roadmap diff --git a/example.yaml b/example.yaml new file mode 100644 index 0000000..f14bd3c --- /dev/null +++ b/example.yaml @@ -0,0 +1,45 @@ +# The configuration file consists of a list of tasks. Each task represents +# a repository that kitops will monitor for changes. +tasks: + - name: Example task + # The interval at which to check for changes in the repository. + interval: 1m + # The maximum amount of time that the task is allowed to run, + # including all actions. When the timeout is reached, kitops will + # kill outstanding actions and mark the task as failed. + timeout: 60m + git: + # The URL of the Git repository to check for changes. + url: https://example.com/some/repository + # The branch to check for changes. + branch: main + # Settings specific to GitHub. This section is optional. + github: + # The App ID of the GitHub App that kitops uses to interact with + # this repository. See README for more information. + app_id: 123456 + # Private key file for the GitHub App that you received when you + # created the app. + private_key_file: ./private-key.pem + # Context used to update the commit status on GitHub. Setting this + # value will instruct kitops to set commit status. See + # https://docs.github.com/en/rest/commits/statuses for more + # information. + status_context: example-task + # Actions for the task are run in sequence. kitops will abort the + # task if an action fails. + actions: + - name: echo + # The binary to execute. Note that there is no implicit shell. + entrypoint: /bin/bash + # Arguments to pass to the binary, as a list of strings. + args: + - -c + - echo Hello $NAME + # When true, kitops will seed the child process environment + # variabless with its own environment variables. + inherit_environment: false + # Environment variables to set for the child process. These will + # override inherited environment variables. + environment: + - NAME: World diff --git a/images/flow.png b/images/flow.png new file mode 100644 index 0000000..431003e Binary files /dev/null and b/images/flow.png differ diff --git a/images/model-comparison.excalidraw b/images/model-comparison.excalidraw index e2f686c..a6f4e23 100644 --- a/images/model-comparison.excalidraw +++ b/images/model-comparison.excalidraw @@ -6522,6 +6522,2244 @@ "containerId": null, "originalText": ".\n.\n.", "lineHeight": 1.25 + }, + { + "type": "rectangle", + "version": 1625, + "versionNonce": 1424545678, + "isDeleted": false, + "id": "D6PplvA22weLYRGc-PYZE", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 1184.4347922635036, + "y": 1230.1416690672327, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "width": 169.469737632958, + "height": 94.7692611763252, + "seed": 969601998, + "groupIds": [], + "frameId": null, + "roundness": null, + "boundElements": [ + { + "type": "text", + "id": "wnX7-M_-TgBFTg30RqMXZ" + }, + { + "id": "icC_1gc84rAciFGmrforc", + "type": "arrow" + }, + { + "id": "cNQKR04Ucld6x1IEZ2whY", + "type": "arrow" + }, + { + "id": "DCIAWFncnpc1MS_GIWl8y", + "type": "arrow" + } + ], + "updated": 1710448919503, + "link": null, + "locked": false + }, + { + "type": "text", + "version": 1758, + "versionNonce": 423802318, + "isDeleted": false, + "id": "wnX7-M_-TgBFTg30RqMXZ", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 1207.429487740139, + "y": 1265.6194662399143, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "width": 123.4803466796875, + "height": 23.813666830961637, + "seed": 202852878, + "groupIds": [], + "frameId": null, + "roundness": null, + "boundElements": [], + "updated": 1710448919503, + "link": null, + "locked": false, + "fontSize": 19.050933464769308, + "fontFamily": 1, + "text": "Run action(s)", + "textAlign": "center", + "verticalAlign": "middle", + "containerId": "D6PplvA22weLYRGc-PYZE", + "originalText": "Run action(s)", + "lineHeight": 1.25 + }, + { + "type": "line", + "version": 636, + "versionNonce": 1063935694, + "isDeleted": false, + "id": "o3vRjyutdDY5ru8GBlVq1", + "fillStyle": "cross-hatch", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 1017.2653387057899, + "y": 1271.9746397511126, + "strokeColor": "#de4c36", + "backgroundColor": "#DE4C36", + "width": 135.32428103499583, + "height": 135.32203559756115, + "seed": 1996413006, + "groupIds": [ + "kjywwK0Hm4RhPwHdbo5rD" + ], + "frameId": null, + "roundness": null, + "boundElements": [], + "updated": 1710448919503, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -59.08396765813636, + -59.08079521069494 + ], + [ + -59.08396765813636, + -59.08079521069494 + ], + [ + -60.4501980539229, + -60.19729707732026 + ], + [ + -61.96540694453253, + -60.99479840162196 + ], + [ + -63.58001280274955, + -61.473299215107524 + ], + [ + -65.2444018374719, + -61.632799476684866 + ], + [ + -66.90899252148323, + -61.47329921510761 + ], + [ + -68.52419122861039, + -60.994798401621935 + ], + [ + -70.04039223372261, + -60.19729707732014 + ], + [ + -71.40801400960427, + -59.08079521069498 + ], + [ + -83.67708673186401, + -46.81172198431187 + ], + [ + -68.11317754850931, + -31.24781380920348 + ], + [ + -68.11317754850931, + -31.24781380920348 + ], + [ + -66.73552170399981, + -31.610359066164776 + ], + [ + -65.32914696772968, + -31.7812144923679 + ], + [ + -63.91508939354291, + -31.76013609217312 + ], + [ + -62.5143850352837, + -31.54687583695486 + ], + [ + -61.148082045753206, + -31.14118166510146 + ], + [ + -59.83720034685265, + -30.542811597466198 + ], + [ + -58.60279212436878, + -29.751511555944457 + ], + [ + -57.46588536617436, + -28.76703956138949 + ], + [ + -56.4771827695331, + -27.622480212671903 + ], + [ + -55.68353956327143, + -26.379308312081633 + ], + [ + -55.084754098100404, + -25.059037822278185 + ], + [ + -54.680632790702404, + -23.683184722413728 + ], + [ + -54.470973991788526, + -22.273256925668804 + ], + [ + -54.45557605206899, + -20.85077444418143 + ], + [ + -54.63424538822669, + -19.43725325710377 + ], + [ + -55.006780350972384, + -18.054197244630846 + ], + [ + -40.007428682448314, + -3.0543172549693196 + ], + [ + -40.007428682448314, + -3.0543172549693196 + ], + [ + -38.62402583319813, + -3.4265497437813117 + ], + [ + -37.20994002811088, + -3.6053360365267544 + ], + [ + -35.78680420292672, + -3.5902728346272355 + ], + [ + -34.3762674253285, + -3.3809326415900465 + ], + [ + -32.99997069702788, + -2.976912158836555 + ], + [ + -31.6795711516794, + -2.3777879228597865 + ], + [ + -30.43670172502296, + -1.583144536124081 + ], + [ + -29.293003418769977, + -0.5925746670652643 + ], + [ + -28.580955580869748, + 0.19487387303367498 + ], + [ + -27.963852294272385, + 1.0338720374107009 + ], + [ + -27.441685493006517, + 1.917059627011863 + ], + [ + -27.014455177072037, + 2.8370804757690244 + ], + [ + -26.444820133140478, + 4.7581771215495845 + ], + [ + -26.254939096506057, + 6.738276349335354 + ], + [ + -26.444820133140396, + 8.718496566694512 + ], + [ + -27.014455177072072, + 10.639964247167196 + ], + [ + -27.441685493006553, + 11.560267404929059 + ], + [ + -27.963852294272442, + 12.443797798321787 + ], + [ + -28.5809555808697, + 13.28319926127716 + ], + [ + -29.293003418770013, + 14.071107561755282 + ], + [ + -30.080919785219805, + 14.783429642688857 + ], + [ + -30.920329314146567, + 15.400782974404683 + ], + [ + -31.803883905454093, + 15.923151424959702 + ], + [ + -32.72421932710222, + 16.3505511262971 + ], + [ + -34.6458644589493, + 16.92040395146092 + ], + [ + -36.62643151308584, + 17.110357581839445 + ], + [ + -38.607095358881125, + 16.920403951460933 + ], + [ + -40.52903893167621, + 16.350551126297077 + ], + [ + -41.44960826649987, + 15.923151424959725 + ], + [ + -42.33342903486897, + 15.40078297440464 + ], + [ + -43.17316120265844, + 14.783429642688859 + ], + [ + -43.96144860380013, + 14.071107561755401 + ], + [ + -44.99649827305956, + 12.864736656434868 + ], + [ + -45.81646074454093, + 11.549951027296249 + ], + [ + -46.42131988630122, + 10.151900373682249 + ], + [ + -46.81105956639694, + 8.695726328963815 + ], + [ + -46.98567171885695, + 7.206570526512127 + ], + [ + -46.9451482777096, + 5.709574599698428 + ], + [ + -46.68946504503998, + 4.229888247865173 + ], + [ + -46.21861395487677, + 2.7926531043837244 + ], + [ + -60.206734768175735, + -11.195463675929417 + ], + [ + -60.20832376457426, + 25.61545677179896 + ], + [ + -60.20832376457426, + 25.61545677179896 + ], + [ + -58.757699108293124, + 26.48499270452476 + ], + [ + -57.46588536617436, + 27.576600966404722 + ], + [ + -56.75383752827425, + 28.36405757247512 + ], + [ + -56.13673424167696, + 29.20307993476691 + ], + [ + -55.614567440410944, + 30.086311887211608 + ], + [ + -55.187337124476436, + 31.00638919776968 + ], + [ + -54.61770208054483, + 32.92768749283945 + ], + [ + -54.42782104391057, + 34.908117425459416 + ], + [ + -54.61770208054486, + 36.88881353514091 + ], + [ + -55.1873371244764, + 38.810926493338954 + ], + [ + -55.61456744041092, + 39.73162488370753 + ], + [ + -56.13673424167699, + 40.61560697150802 + ], + [ + -56.75383752827423, + 41.45550852470035 + ], + [ + -57.465885366174405, + 42.243989509159704 + ], + [ + -58.25383399651045, + 42.95594055540121 + ], + [ + -59.09332418515292, + 43.57296318228286 + ], + [ + -59.976999766034, + 44.0950654557763 + ], + [ + -60.89747230919875, + 44.52223930990973 + ], + [ + -62.819327156306635, + 45.09180176009733 + ], + [ + -64.79991034238608, + 45.28165053284549 + ], + [ + -66.78021121946098, + 45.091801760097326 + ], + [ + -68.70125140344064, + 44.522239309909835 + ], + [ + -69.62111093276661, + 44.09506545577625 + ], + [ + -70.504032345306, + 43.572963182282805 + ], + [ + -71.34264334304775, + 42.955940555401256 + ], + [ + -72.12956759499495, + 42.24398950915973 + ], + [ + -72.8416154328952, + 41.45551659067192 + ], + [ + -73.45871871949251, + 40.615631169422684 + ], + [ + -73.9808855207585, + 39.73167327953692 + ], + [ + -74.40811583669296, + 38.811015219025975 + ], + [ + -74.97775088062444, + 36.88898292054388 + ], + [ + -75.16763191725882, + 34.908383602521155 + ], + [ + -74.97775088062446, + 32.92805046155998 + ], + [ + -74.40811583669293, + 31.006840892177436 + ], + [ + -73.98088552075859, + 30.086787779534045 + ], + [ + -73.45871871949254, + 29.20358809097557 + ], + [ + -72.84161543289524, + 28.364581860626767 + ], + [ + -72.12956759499492, + 27.577133320527903 + ], + [ + -71.36826490172709, + 26.887299168320432 + ], + [ + -70.54462434721167, + 26.277406860303042 + ], + [ + -69.66490109239814, + 25.751634569747246 + ], + [ + -68.73535433122169, + 25.314144337980892 + ], + [ + -68.7353543312216, + -11.839842045377093 + ], + [ + -68.7353543312216, + -11.839842045377093 + ], + [ + -69.6660343614032, + -12.275432740839648 + ], + [ + -70.54625367346806, + -12.800656545329058 + ], + [ + -71.36957965509238, + -13.411218328986415 + ], + [ + -72.12956759499495, + -14.102826994938436 + ], + [ + -73.17125555885315, + -15.315340137606459 + ], + [ + -73.99463396929268, + -16.63723188769458 + ], + [ + -74.59994883844627, + -18.043033939983648 + ], + [ + -74.98743811247503, + -19.507286055225197 + ], + [ + -75.15735183649804, + -21.00451589521445 + ], + [ + -75.10991989070442, + -22.5092632207033 + ], + [ + -74.84539232021281, + -23.996055693485857 + ], + [ + -74.36400707118435, + -25.439429041329145 + ], + [ + -89.7064287083236, + -40.783435641880956 + ], + [ + -130.21921571554088, + -0.2732912485980563 + ], + [ + -130.21921571554088, + -0.2732912485980563 + ], + [ + -131.33623783733213, + 1.09470156197564 + ], + [ + -132.13411088949525, + 2.6112655358081867 + ], + [ + -132.61283468298402, + 4.22683124464173 + ], + [ + -132.77240928081358, + 5.891837326188444 + ], + [ + -132.61283468298407, + 7.5567224181623445 + ], + [ + -132.1341108894953, + 9.171909026331953 + ], + [ + -131.33623783733213, + 10.68785192035449 + ], + [ + -130.21921571554083, + 12.054985704955946 + ], + [ + -71.13419443986861, + 71.13684007854224 + ], + [ + -71.13419443986861, + 71.13684007854224 + ], + [ + -69.76765350417702, + 72.25350931407768 + ], + [ + -68.25228329413598, + 73.05113711029286 + ], + [ + -66.63762500710374, + 73.52971540121618 + ], + [ + -64.9732238734241, + 73.68923612087629 + ], + [ + -63.30862512344121, + 73.52971540121617 + ], + [ + -61.693373987498795, + 73.05113711029283 + ], + [ + -60.17701166295502, + 72.2535093140775 + ], + [ + -58.809087413139984, + 71.13684007854233 + ], + [ + -0.000524288151748209, + 12.329333595829201 + ], + [ + -0.000524288151748209, + 12.329333595829201 + ], + [ + 1.1161449473835976, + 10.961723918905093 + ], + [ + 1.9137727435987886, + 9.445208340901708 + ], + [ + 2.3923510345221697, + 7.829432916807553 + ], + [ + 2.551871754182265, + 6.164067899525854 + ], + [ + 2.39235103452217, + 4.498783541959778 + ], + [ + 1.9137727435987353, + 2.883237998055237 + ], + [ + 1.1161449473835452, + 1.367085388772311 + ], + [ + -0.0005242881517655425, + -3.0457082168811045e-14 + ] + ] + }, + { + "type": "arrow", + "version": 301, + "versionNonce": 546395406, + "isDeleted": false, + "id": "gxmt3WhOB9xpZE0PkQjZM", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 589.8264982908147, + "y": 1217.957686566026, + "strokeColor": "#f08c00", + "backgroundColor": "transparent", + "width": 325.5211070967663, + "height": 87.41909589877827, + "seed": 844799630, + "groupIds": [], + "frameId": null, + "roundness": { + "type": 2 + }, + "boundElements": [], + "updated": 1710448919503, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": "arrow", + "points": [ + [ + 0, + 0 + ], + [ + 164.48593044112226, + -79.14132272212545 + ], + [ + 325.5211070967663, + 8.277773176652822 + ] + ] + }, + { + "type": "arrow", + "version": 436, + "versionNonce": 439921170, + "isDeleted": false, + "id": "cNQKR04Ucld6x1IEZ2whY", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 985.5129323589692, + "y": 1218.1837009098963, + "strokeColor": "#f08c00", + "backgroundColor": "transparent", + "width": 279.51105662372447, + "height": 80.51758832782201, + "seed": 316906702, + "groupIds": [], + "frameId": null, + "roundness": { + "type": 2 + }, + "boundElements": [], + "updated": 1710448919656, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": { + "elementId": "D6PplvA22weLYRGc-PYZE", + "focus": 0.5454730921532235, + "gap": 10.807716895509998 + }, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": "arrow", + "points": [ + [ + 0, + 0 + ], + [ + 154.13366908468757, + -79.36733706599573 + ], + [ + 279.51105662372447, + 1.1502512618262948 + ] + ] + }, + { + "type": "arrow", + "version": 695, + "versionNonce": 1566494098, + "isDeleted": false, + "id": "DCIAWFncnpc1MS_GIWl8y", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 1288.3524708569917, + "y": 1218.507157547673, + "strokeColor": "#f08c00", + "backgroundColor": "transparent", + "width": 282.2277322237688, + "height": 81.05552886324853, + "seed": 1848824590, + "groupIds": [], + "frameId": null, + "roundness": { + "type": 2 + }, + "boundElements": [], + "updated": 1710448919656, + "link": null, + "locked": false, + "startBinding": { + "elementId": "D6PplvA22weLYRGc-PYZE", + "focus": -0.5399162108075857, + "gap": 11.634511519559624 + }, + "endBinding": { + "elementId": "sZb8W1dcUWSzdzP8Dnwd9", + "focus": 0.15691665170449784, + "gap": 9.265298985322257 + }, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": "arrow", + "points": [ + [ + 0, + 0 + ], + [ + 154.13366908468754, + -79.36733706599573 + ], + [ + 282.2277322237688, + 1.6881917972528073 + ] + ] + }, + { + "type": "arrow", + "version": 1306, + "versionNonce": 1760694546, + "isDeleted": false, + "id": "KL4cXUNoZS4ACHcT50eWp", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 3.141592653589793, + "x": 932.7435868871263, + "y": 1420.2010827967815, + "strokeColor": "#f08c00", + "backgroundColor": "transparent", + "width": 654.3205046118852, + "height": 49.046978398939274, + "seed": 2126594382, + "groupIds": [], + "frameId": null, + "roundness": { + "type": 2 + }, + "boundElements": [], + "updated": 1710448919656, + "link": null, + "locked": false, + "startBinding": { + "elementId": "4RYTwaKhjdPDxqXfH4_qk", + "focus": -0.8585091582142983, + "gap": 17.718402134433177 + }, + "endBinding": { + "elementId": "I83KzUcbwM2c_qDXncd0u", + "focus": -0.012244183915200288, + "gap": 4.16825934367678 + }, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": "arrow", + "points": [ + [ + 0, + 0 + ], + [ + 46.70010765317931, + -39.053517647840785 + ], + [ + 200.6168067490279, + -47.432880386289135 + ], + [ + 458.197079579083, + -49.046978398939274 + ], + [ + 654.3205046118852, + -45.63662535467585 + ] + ] + }, + { + "type": "arrow", + "version": 1317, + "versionNonce": 472544402, + "isDeleted": false, + "id": "icC_1gc84rAciFGmrforc", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 3.141592653589793, + "x": 932.7716385171037, + "y": 1418.5932391045123, + "strokeColor": "#f08c00", + "backgroundColor": "transparent", + "width": 344.6691028503736, + "height": 85.30146595417463, + "seed": 1206380430, + "groupIds": [], + "frameId": null, + "roundness": { + "type": 2 + }, + "boundElements": [], + "updated": 1710448919656, + "link": null, + "locked": false, + "startBinding": { + "elementId": "D6PplvA22weLYRGc-PYZE", + "focus": -0.1435075404130975, + "gap": 7.554292104502224 + }, + "endBinding": { + "elementId": "I83KzUcbwM2c_qDXncd0u", + "focus": -0.06677586341444758, + "gap": 2.923216445496692 + }, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": "arrow", + "points": [ + [ + 0, + 0 + ], + [ + 6.134231791873925, + -59.81306561495325 + ], + [ + 66.629453996396, + -83.87870958319533 + ], + [ + 200.62273676642613, + -85.30146595417463 + ], + [ + 344.6691028503736, + -82.92450792275775 + ] + ] + }, + { + "type": "arrow", + "version": 1356, + "versionNonce": 1149031118, + "isDeleted": false, + "id": "tMagZyGEeG5kOPnS-ChWX", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 3.141592653589793, + "x": 935.8128230126845, + "y": 1416.5225718674828, + "strokeColor": "#f08c00", + "backgroundColor": "transparent", + "width": 17.943535548575866, + "height": 70.06747065258082, + "seed": 2044708302, + "groupIds": [], + "frameId": null, + "roundness": { + "type": 2 + }, + "boundElements": [], + "updated": 1710449122972, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": { + "elementId": "I83KzUcbwM2c_qDXncd0u", + "focus": 1.1141858671583609, + "gap": 4.552156195270015 + }, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": "arrow", + "points": [ + [ + 0, + 0 + ], + [ + 1.0211815680693235, + -39.63769933607864 + ], + [ + 17.943535548575866, + -70.06747065258082 + ] + ] + }, + { + "type": "arrow", + "version": 1142, + "versionNonce": 292234706, + "isDeleted": false, + "id": "5VSBGazlT8-J3dxghzNad", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 3.141592653589793, + "x": 601.2425708999326, + "y": 1366.9613057205074, + "strokeColor": "#f08c00", + "backgroundColor": "transparent", + "width": 131.24406590584798, + "height": 49.63425490054588, + "seed": 1438768142, + "groupIds": [], + "frameId": null, + "roundness": { + "type": 2 + }, + "boundElements": [], + "updated": 1710448919656, + "link": null, + "locked": false, + "startBinding": { + "elementId": "I83KzUcbwM2c_qDXncd0u", + "focus": -0.051587710152066896, + "gap": 4.613906037269125 + }, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": "arrow", + "points": [ + [ + 0, + 0 + ], + [ + 74.81655742843535, + 2.2000517041543057 + ], + [ + 131.24406590584798, + 49.63425490054588 + ] + ] + }, + { + "type": "rectangle", + "version": 2905, + "versionNonce": 690237646, + "isDeleted": false, + "id": "4RYTwaKhjdPDxqXfH4_qk", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 1536.304177304128, + "y": 1232.0070087821018, + "strokeColor": "#000000", + "backgroundColor": "#cfaa93", + "width": 89.56590457043107, + "height": 122.06034082666724, + "seed": 294070862, + "groupIds": [ + "vCxFwGnSsgUb1YgPeemMB", + "topozAbr9D666St8oW8oE" + ], + "frameId": null, + "roundness": null, + "boundElements": [ + { + "id": "KL4cXUNoZS4ACHcT50eWp", + "type": "arrow" + } + ], + "updated": 1710448919503, + "link": null, + "locked": false + }, + { + "type": "rectangle", + "version": 883, + "versionNonce": 82629966, + "isDeleted": false, + "id": "cnrmB_B_s2fcDf9GR-6Jm", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "angle": 0, + "x": 1555.563820558601, + "y": 1240.414343968485, + "strokeColor": "#000", + "backgroundColor": "#c8e8fa", + "width": 51.044035206826905, + "height": 14.837717658178223, + "seed": 1007202446, + "groupIds": [ + "vCxFwGnSsgUb1YgPeemMB", + "topozAbr9D666St8oW8oE" + ], + "frameId": null, + "roundness": { + "type": 1 + }, + "boundElements": [], + "updated": 1710448919503, + "link": null, + "locked": false + }, + { + "type": "rectangle", + "version": 935, + "versionNonce": 729873294, + "isDeleted": false, + "id": "9klrO2NNw0lmXkNP-ZYHB", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "angle": 0, + "x": 1571.1261130318874, + "y": 1221.62515246687, + "strokeColor": "#000", + "backgroundColor": "#c8e8fa", + "width": 19.59423158321675, + "height": 28.95769605733511, + "seed": 553610958, + "groupIds": [ + "vCxFwGnSsgUb1YgPeemMB", + "topozAbr9D666St8oW8oE" + ], + "frameId": null, + "roundness": { + "type": 1 + }, + "boundElements": [], + "updated": 1710448919503, + "link": null, + "locked": false + }, + { + "type": "ellipse", + "version": 780, + "versionNonce": 825645518, + "isDeleted": false, + "id": "foBTEy82IT7uEAfPYhfQ5", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "angle": 0, + "x": 1571.0750914316272, + "y": 1217.977997345602, + "strokeColor": "#000", + "backgroundColor": "#c8e8fa", + "width": 19.57730264912207, + "height": 17.80775944028223, + "seed": 755262734, + "groupIds": [ + "vCxFwGnSsgUb1YgPeemMB", + "topozAbr9D666St8oW8oE" + ], + "frameId": null, + "roundness": { + "type": 2 + }, + "boundElements": [], + "updated": 1710448919503, + "link": null, + "locked": false + }, + { + "type": "rectangle", + "version": 942, + "versionNonce": 220590094, + "isDeleted": false, + "id": "9zAkVuyrhCggQ3Aj_MRK1", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "angle": 0, + "x": 1557.8501893330767, + "y": 1242.3442483252202, + "strokeColor": "#ff00", + "backgroundColor": "#c8e8fa", + "width": 46.56471203276487, + "height": 10.998054611078144, + "seed": 1368429390, + "groupIds": [ + "vCxFwGnSsgUb1YgPeemMB", + "topozAbr9D666St8oW8oE" + ], + "frameId": null, + "roundness": null, + "boundElements": [], + "updated": 1710448919503, + "link": null, + "locked": false + }, + { + "type": "rectangle", + "version": 1160, + "versionNonce": 1799929422, + "isDeleted": false, + "id": "mFeiJEBbJuLTN7KDcE0_e", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "angle": 0, + "x": 1573.147077913799, + "y": 1226.640440176615, + "strokeColor": "#ff00", + "backgroundColor": "#c8e8fa", + "width": 15.449800762818384, + "height": 22.485011438455334, + "seed": 1761409422, + "groupIds": [ + "vCxFwGnSsgUb1YgPeemMB", + "topozAbr9D666St8oW8oE" + ], + "frameId": null, + "roundness": null, + "boundElements": [], + "updated": 1710448919503, + "link": null, + "locked": false + }, + { + "type": "ellipse", + "version": 827, + "versionNonce": 276284558, + "isDeleted": false, + "id": "sZb8W1dcUWSzdzP8Dnwd9", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "angle": 0, + "x": 1577.6547177238085, + "y": 1224.104519307954, + "strokeColor": "#ff00", + "backgroundColor": "#000", + "width": 6.252036155582374, + "height": 6.252036155582374, + "seed": 444766158, + "groupIds": [ + "vCxFwGnSsgUb1YgPeemMB", + "topozAbr9D666St8oW8oE" + ], + "frameId": null, + "roundness": { + "type": 2 + }, + "boundElements": [ + { + "id": "DCIAWFncnpc1MS_GIWl8y", + "type": "arrow" + } + ], + "updated": 1710448919503, + "link": null, + "locked": false + }, + { + "type": "line", + "version": 831, + "versionNonce": 398358798, + "isDeleted": false, + "id": "aZViTW2l7WMX2xSGdxIFJ", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 1560.8110270345087, + "y": 1269.3450734782366, + "strokeColor": "#000", + "backgroundColor": "#000", + "width": 44.08438838992761, + "height": 0.28247957539360574, + "seed": 1044016654, + "groupIds": [ + "vCxFwGnSsgUb1YgPeemMB", + "topozAbr9D666St8oW8oE" + ], + "frameId": null, + "roundness": { + "type": 2 + }, + "boundElements": [], + "updated": 1710448919503, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 44.08438838992761, + -0.28247957539360574 + ] + ] + }, + { + "type": "line", + "version": 870, + "versionNonce": 65546062, + "isDeleted": false, + "id": "cIjyQpmVtqzbsn1lvj7Zf", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 1559.705639251513, + "y": 1282.5954306123974, + "strokeColor": "#000", + "backgroundColor": "#000", + "width": 44.08438838992761, + "height": 0.28247957539360574, + "seed": 1092451406, + "groupIds": [ + "vCxFwGnSsgUb1YgPeemMB", + "topozAbr9D666St8oW8oE" + ], + "frameId": null, + "roundness": { + "type": 2 + }, + "boundElements": [], + "updated": 1710448919503, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 44.08438838992761, + -0.28247957539360574 + ] + ] + }, + { + "type": "line", + "version": 945, + "versionNonce": 323095950, + "isDeleted": false, + "id": "nLGvA5JqIkDht6-ieMrvz", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 1560.1074725082326, + "y": 1293.9895894095725, + "strokeColor": "#000", + "backgroundColor": "#000", + "width": 44.08438838992761, + "height": 0.28247957539360574, + "seed": 151306894, + "groupIds": [ + "vCxFwGnSsgUb1YgPeemMB", + "topozAbr9D666St8oW8oE" + ], + "frameId": null, + "roundness": { + "type": 2 + }, + "boundElements": [], + "updated": 1710448919503, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 44.08438838992761, + -0.28247957539360574 + ] + ] + }, + { + "type": "line", + "version": 913, + "versionNonce": 1661283278, + "isDeleted": false, + "id": "pN7Jcefj0v66qTCBlY4-P", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 1561.2146858454946, + "y": 1308.1370831965826, + "strokeColor": "#000", + "backgroundColor": "#000", + "width": 24.954563724127702, + "height": 0.5004542767352346, + "seed": 1487487182, + "groupIds": [ + "vCxFwGnSsgUb1YgPeemMB", + "topozAbr9D666St8oW8oE" + ], + "frameId": null, + "roundness": { + "type": 2 + }, + "boundElements": [], + "updated": 1710448919503, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 24.954563724127702, + 0.5004542767352346 + ] + ] + }, + { + "type": "rectangle", + "version": 4300, + "versionNonce": 21660174, + "isDeleted": false, + "id": "DAlw0ceL-evPf4_hKxUy4", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 3.1428892639607486, + "x": 1546.7504707670428, + "y": 1250.3248312678402, + "strokeColor": "#000000", + "backgroundColor": "#edf2f9", + "width": 69.35521400350929, + "height": 90.07386288348037, + "seed": 866383630, + "groupIds": [ + "KvnjPg6ARcBlNRk5X5g4r", + "vCxFwGnSsgUb1YgPeemMB", + "topozAbr9D666St8oW8oE" + ], + "frameId": null, + "roundness": null, + "boundElements": [], + "updated": 1710448919503, + "link": null, + "locked": false + }, + { + "type": "line", + "version": 2851, + "versionNonce": 1359679566, + "isDeleted": false, + "id": "sTmgjY6D83BwbHpSKylqO", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 3.1428892639607486, + "x": 1616.080369830074, + "y": 1318.4574621352922, + "strokeColor": "#000", + "backgroundColor": "#d0d6df", + "width": 25.664975046139052, + "height": 21.553521077317715, + "seed": 1114498382, + "groupIds": [ + "KvnjPg6ARcBlNRk5X5g4r", + "vCxFwGnSsgUb1YgPeemMB", + "topozAbr9D666St8oW8oE" + ], + "frameId": null, + "roundness": null, + "boundElements": [], + "updated": 1710448919503, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + -0.24192090318968643, + 21.553521077317715 + ], + [ + -25.664975046139052, + 21.265933621806415 + ], + [ + 0, + 0 + ] + ] + }, + { + "type": "line", + "version": 3174, + "versionNonce": 1847580302, + "isDeleted": false, + "id": "mwM9PJhmikww7Ua8vtgeK", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 0, + "opacity": 100, + "angle": 6.28019770066282, + "x": 1621.1886686527498, + "y": 1317.345017733136, + "strokeColor": "transparent", + "backgroundColor": "#cfaa93", + "width": 30.86949060454456, + "height": 29.45437307570422, + "seed": 912264078, + "groupIds": [ + "KvnjPg6ARcBlNRk5X5g4r", + "vCxFwGnSsgUb1YgPeemMB", + "topozAbr9D666St8oW8oE" + ], + "frameId": null, + "roundness": null, + "boundElements": [], + "updated": 1710448919503, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 0.14387229582856598, + 27.970254678368658 + ], + [ + -29.62590955519679, + 28.033147720534462 + ], + [ + 1.2435810493477646, + -1.4212253551697582 + ] + ] + }, + { + "type": "text", + "version": 735, + "versionNonce": 289526990, + "isDeleted": false, + "id": "0hImMEa-_mLFYWdpOtpZN", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 1548.334398688632, + "y": 1271.4550967194948, + "strokeColor": "#000", + "backgroundColor": "#000", + "width": 67.72598707288584, + "height": 47.627333661923274, + "seed": 766732750, + "groupIds": [ + "topozAbr9D666St8oW8oE" + ], + "frameId": null, + "roundness": { + "type": 2 + }, + "boundElements": [], + "updated": 1710448919503, + "link": null, + "locked": false, + "fontSize": 19.050933464769308, + "fontFamily": 1, + "text": "Update\nState", + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "Update\nState", + "lineHeight": 1.25 + }, + { + "type": "text", + "version": 238, + "versionNonce": 231563666, + "isDeleted": false, + "id": "7HpbB92MFYOVAu9ZqLkmx", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 668.0435840949851, + "y": 1109.2332876742003, + "strokeColor": "#f08c00", + "backgroundColor": "transparent", + "width": 159.32638549804688, + "height": 23.813666830961637, + "seed": 394330126, + "groupIds": [], + "frameId": null, + "roundness": null, + "boundElements": [], + "updated": 1710449131924, + "link": null, + "locked": false, + "fontSize": 19.050933464769308, + "fontFamily": 1, + "text": "--interval passed", + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "--interval passed", + "lineHeight": 1.25 + }, + { + "type": "text", + "version": 261, + "versionNonce": 888240462, + "isDeleted": false, + "id": "QcUZ21EX6_F1AMfjY9bPN", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 1074.4057361573502, + "y": 1110.7069955738023, + "strokeColor": "#f08c00", + "backgroundColor": "transparent", + "width": 133.4897448591626, + "height": 23.813666830961637, + "seed": 398577230, + "groupIds": [], + "frameId": null, + "roundness": null, + "boundElements": [], + "updated": 1710448919503, + "link": null, + "locked": false, + "fontSize": 19.05093346476931, + "fontFamily": 1, + "text": "Changes found", + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "Changes found", + "lineHeight": 1.25 + }, + { + "type": "text", + "version": 336, + "versionNonce": 995172238, + "isDeleted": false, + "id": "vnO3s5VlYiE4h6NNwsjUS", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 1354.240249418851, + "y": 1108.7299496879268, + "strokeColor": "#f08c00", + "backgroundColor": "transparent", + "width": 172.81082676354347, + "height": 23.813666830961637, + "seed": 1800328334, + "groupIds": [], + "frameId": null, + "roundness": null, + "boundElements": [], + "updated": 1710448919503, + "link": null, + "locked": false, + "fontSize": 19.050933464769308, + "fontFamily": 1, + "text": "Actions successful", + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "Actions successful", + "lineHeight": 1.25 + }, + { + "type": "text", + "version": 427, + "versionNonce": 1524311630, + "isDeleted": false, + "id": "oZjU21QQFIWhPfyJG08N0", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 1292.4501379180215, + "y": 1359.8081814037776, + "strokeColor": "#f08c00", + "backgroundColor": "transparent", + "width": 128.69915771484375, + "height": 47.627333661923274, + "seed": 1273041614, + "groupIds": [], + "frameId": null, + "roundness": null, + "boundElements": [], + "updated": 1710449108836, + "link": null, + "locked": false, + "fontSize": 19.050933464769308, + "fontFamily": 1, + "text": "Actions failed\n(or --timeout)", + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "Actions failed\n(or --timeout)", + "lineHeight": 1.25 + }, + { + "type": "text", + "version": 475, + "versionNonce": 1013093518, + "isDeleted": false, + "id": "YoVihEO8tpD6tdYOQtuT8", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 970.7032412445096, + "y": 1355.53063299425, + "strokeColor": "#f08c00", + "backgroundColor": "transparent", + "width": 127.803955078125, + "height": 47.627333661923274, + "seed": 1410435342, + "groupIds": [], + "frameId": null, + "roundness": null, + "boundElements": [], + "updated": 1710449122972, + "link": null, + "locked": false, + "fontSize": 19.050933464769308, + "fontFamily": 1, + "text": "No changees\n(or --timeout)", + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "No changees\n(or --timeout)", + "lineHeight": 1.25 + }, + { + "type": "diamond", + "version": 2873, + "versionNonce": 1964370062, + "isDeleted": false, + "id": "I83KzUcbwM2c_qDXncd0u", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 2, + "opacity": 100, + "angle": 0, + "x": 742.5595398072338, + "y": 1381.0638023771594, + "strokeColor": "#495057", + "backgroundColor": "transparent", + "width": 182.89714660226406, + "height": 70.10853821292814, + "seed": 1666791246, + "groupIds": [], + "frameId": null, + "roundness": null, + "boundElements": [ + { + "type": "arrow", + "id": "k1LzCKgZ-2WmIApxzaDzm" + }, + { + "id": "tMagZyGEeG5kOPnS-ChWX", + "type": "arrow" + }, + { + "id": "KL4cXUNoZS4ACHcT50eWp", + "type": "arrow" + }, + { + "id": "icC_1gc84rAciFGmrforc", + "type": "arrow" + }, + { + "id": "5VSBGazlT8-J3dxghzNad", + "type": "arrow" + } + ], + "updated": 1710448919503, + "link": null, + "locked": false + }, + { + "type": "text", + "version": 2635, + "versionNonce": 1241359886, + "isDeleted": false, + "id": "iG87Sbp6m33RxKSXHLSDI", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 2, + "opacity": 100, + "angle": 0, + "x": 781.2564226723792, + "y": 1403.3252073206527, + "strokeColor": "#495057", + "backgroundColor": "transparent", + "width": 105.19914064033945, + "height": 23.813666830961637, + "seed": 34676110, + "groupIds": [], + "frameId": null, + "roundness": null, + "boundElements": [ + { + "id": "KL4cXUNoZS4ACHcT50eWp", + "type": "arrow" + } + ], + "updated": 1710448919503, + "link": null, + "locked": false, + "fontSize": 19.050933464769308, + "fontFamily": 1, + "text": "--once-only?", + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "--once-only?", + "lineHeight": 1.25 + }, + { + "type": "text", + "version": 3217, + "versionNonce": 1606005838, + "isDeleted": false, + "id": "2ItV1AtwSwtQYjUHaDZq8", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 2, + "opacity": 100, + "angle": 6.2581208643144315, + "x": 820.3067279646509, + "y": 1500.0429390047111, + "strokeColor": "#5c940d", + "backgroundColor": "transparent", + "width": 20.389158634931338, + "height": 16.19329344505391, + "seed": 1165114318, + "groupIds": [ + "kT7t8BWauEVDBZbljmu6N" + ], + "frameId": null, + "roundness": null, + "boundElements": [], + "updated": 1710448919503, + "link": null, + "locked": false, + "fontSize": 12.711194696322712, + "fontFamily": 1, + "text": "Yes", + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "Yes", + "lineHeight": 1.2739395337669208 + }, + { + "type": "ellipse", + "version": 3261, + "versionNonce": 2002385550, + "isDeleted": false, + "id": "6nAlu11ZGts0sxjU02sdG", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 2, + "opacity": 100, + "angle": 2.57969569492513, + "x": 809.1076361426851, + "y": 1486.4350394937262, + "strokeColor": "#5c940d", + "backgroundColor": "transparent", + "width": 43.35616828411354, + "height": 43.91379592009876, + "seed": 865440270, + "groupIds": [ + "kT7t8BWauEVDBZbljmu6N" + ], + "frameId": null, + "roundness": null, + "boundElements": [ + { + "type": "arrow", + "id": "k1LzCKgZ-2WmIApxzaDzm" + } + ], + "updated": 1710448919503, + "link": null, + "locked": false + }, + { + "type": "arrow", + "version": 6603, + "versionNonce": 1937070418, + "isDeleted": false, + "id": "k1LzCKgZ-2WmIApxzaDzm", + "fillStyle": "solid", + "strokeWidth": 2, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 2.57969569492513, + "x": 826.2961468172776, + "y": 1480.514535806592, + "strokeColor": "#5c940d", + "backgroundColor": "#fff", + "width": 13.708865563224302, + "height": 22.564721627511474, + "seed": 661921870, + "groupIds": [], + "frameId": null, + "roundness": { + "type": 2 + }, + "boundElements": [], + "updated": 1710448919657, + "link": null, + "locked": false, + "startBinding": { + "elementId": "I83KzUcbwM2c_qDXncd0u", + "focus": 0.024327967515952377, + "gap": 5.222898792543219 + }, + "endBinding": { + "elementId": "6nAlu11ZGts0sxjU02sdG", + "focus": 0.11353028063479567, + "gap": 4.060443611315101 + }, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": null, + "points": [ + [ + 0, + 0 + ], + [ + 13.708865563224302, + -22.564721627511474 + ] + ] + }, + { + "type": "arrow", + "version": 724, + "versionNonce": 1965956430, + "isDeleted": false, + "id": "xtrWIvEkHxJ3UnxIFyyIM", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 577.9105933666281, + "y": 1233.8900341837195, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "width": 124.13243345143356, + "height": 132.992498257591, + "seed": 887547534, + "groupIds": [], + "frameId": null, + "roundness": { + "type": 2 + }, + "boundElements": [], + "updated": 1710448919503, + "link": null, + "locked": false, + "startBinding": null, + "endBinding": null, + "lastCommittedPoint": null, + "startArrowhead": null, + "endArrowhead": "arrow", + "points": [ + [ + 0, + 0 + ], + [ + -28.98086021607388, + 22.356942372327165 + ], + [ + -40.127690903413935, + 67.9486535310398 + ], + [ + -21.636642553350377, + 113.17984590422778 + ], + [ + 22.129406669348672, + 131.12362089265812 + ], + [ + 69.70706462677249, + 108.56173216531747 + ], + [ + 84.00474254801962, + 54.55880656691333 + ], + [ + 53.182574885644904, + 5.423858662989734 + ], + [ + 4.2181252307858665, + -1.868877364932877 + ] + ] + }, + { + "type": "text", + "version": 161, + "versionNonce": 341394318, + "isDeleted": false, + "id": "KBPLqx25v8Pu0JGN2O5z4", + "fillStyle": "solid", + "strokeWidth": 1, + "strokeStyle": "solid", + "roughness": 1, + "opacity": 100, + "angle": 0, + "x": 573.6924014748074, + "y": 1287.3745653708334, + "strokeColor": "#1e1e1e", + "backgroundColor": "transparent", + "width": 48.846548636765526, + "height": 23.813666830961637, + "seed": 212264142, + "groupIds": [], + "frameId": null, + "roundness": null, + "boundElements": [], + "updated": 1710448919503, + "link": null, + "locked": false, + "fontSize": 19.050933464769308, + "fontFamily": 1, + "text": "Idling", + "textAlign": "left", + "verticalAlign": "top", + "containerId": null, + "originalText": "Idling", + "lineHeight": 1.25 } ], "appState": {