https://github.com/andreibarbuoz/cicd-uipath-library
AWS CodePipeline for automatic testing and deployment of UiPath libraries
https://github.com/andreibarbuoz/cicd-uipath-library
Last synced: 2 months ago
JSON representation
AWS CodePipeline for automatic testing and deployment of UiPath libraries
- Host: GitHub
- URL: https://github.com/andreibarbuoz/cicd-uipath-library
- Owner: AndreiBarbuOz
- Created: 2019-03-15T07:55:55.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2019-03-17T07:01:16.000Z (about 6 years ago)
- Last Synced: 2025-01-12T10:34:18.491Z (4 months ago)
- Size: 6.84 KB
- Stars: 2
- Watchers: 1
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# AWS Codepipeline project for UiPath Library deployment
This project is a model that showcases the ideas around Continuous Integration/Continuous Deployment found in most programming languages and associated with good practices and long term positive outcomes
## Content
A CloudFormation template which creates a stack that instantiates a CodePipeline. The pipeline has the function of deploying new versions of the workflows as packages, being triggered by `git push` commands into the Source repository
## Installation
### Prerequisites
* An AWS account
* A dockerized UiPath robot - a Docker image containing the UiPath robot and the PowerShell module for the Orchestrator API. This can be created using [dockerized-robot](https://github.com/AndreiBarbuOz/dockerized-robot)
* Access to an Orchestrator instance for Test purposes
* An environment created in the Orchestrator containing Robots which can be used for### Configuration
* The parameters.json file need to be updated with environment values
- RepositoryName: name of the repository where changes are tracked
- BranchName: name of the branch that is being tracked
- CodeBuildImageStackName: name of the cloudformation stack containing the CodeBuild image. The export name is `${CodeBuildImageStackName}-EcrUri`
* The `Parameter Store` in the AWS account needs to contain parameters needed for the Orchestrator connection
1. `orchestrator-url` : the url of the Orchestrator
2. `orchestrator-username` : the username to be used for authenticating with the Orchestrator
3. `orchestrator-tenant` : the tenant on the Orchestrator
4. `orchestrator-password` : password for Orchestrator authentication### Create the code deployment stack
```cmd
aws cloudformation create-stack --stack-name deploy-pipeline --template-body file://uipath-deploy.yaml --parameters file://parameters.json --capabilities CAPABILITY_NAMED_IAM
```