https://github.com/andreibarbuoz/uipath-config
UiPath process configuration model
https://github.com/andreibarbuoz/uipath-config
config orchestrator powershell uipath
Last synced: 10 months ago
JSON representation
UiPath process configuration model
- Host: GitHub
- URL: https://github.com/andreibarbuoz/uipath-config
- Owner: AndreiBarbuOz
- Created: 2020-02-21T00:37:32.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2020-02-23T09:38:36.000Z (about 6 years ago)
- Last Synced: 2025-06-21T15:05:09.182Z (10 months ago)
- Topics: config, orchestrator, powershell, uipath
- Language: PowerShell
- Homepage:
- Size: 2.93 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.MD
Awesome Lists containing this project
README
# UiPath Orchestator configuration model
## Abstract
The result of RPA dev work is a combination of
* workflows (organized as projects or libraries)
* Orchestrator state
Orchestrator performs several functions vital to the overall automation process. It acts as a configuration server for the Robots, message queue and others. The success of an automation is dependent not only on the project itself, but on the synchronised work between the workflow files and the configuration assets residing on the server.
For this, the **State** of the configuration existing on the Orchestrator needs to be captured and then replicated as the project is progressed through different environments

We use a _desired state_ configuration in the project, describing the configuration needed on the Orchestrator. A `.json` file will contain a structure such as this:
```json
{
"assets": [
{
"Name": "foo",
"ValueType": "Text",
"Value": "bar"
},
{
"Name": "foo2",
"ValueType": "Boolean",
"Value": "true"
},
{
"Name": "foo3",
"ValueType": "Integer",
"Value": 8
}
],
"queues": [
{
"Name": "queue-name-1"
}
]
}
```
Based on this desired state, a difference between current Orchestrator state and desired one is built. This state will highlight the changes that take place, offering a way for understanding the impact of the application of the new state:
```json
{
"assets": {
"create": [
{
"NewValue": 8,
"Name": "foo3",
"NewType": "Integer"
}
],
"modify": [
{
"OldType": 4,
"OldValue": "5",
"NewValue": "true",
"Name": "foo2",
"NewType": "Boolean"
}
]
},
"queues": {
"create": [
{
"QueueName": "queue-name-1"
}
]
}
}
```
Deployment pipelines will have separate stages to progress the package containing the build artifact and Orchestrator state.
- build artifacts
- build the UiPath package
- create the changes to be applied
- progress artifacts to UAT/Test/QA
- manually or programatically validate changes to be applied
- apply changes
- upload package to UAT/Test/QA Orchestrator
- perform tests, automated or manual
- progress arficats to Prod
- apply changes to Prod
- upload package

## Installation
The [UiPath Orchestrator PoSh](https://github.com/UiPath/orchestrator-powershell) library needs to be installed.
## Execution
A sample execution of the functions can be found in [doc manipulation template](https://github.com/AndreiBarbuOz/uipath-doc-manipulation)