Adding decision tree

pull/1/head
meerkat 2023-02-18 23:44:00 +11:00
parent 742a800a63
commit 6f40c4edb4
1 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,23 @@
# Microservice example
# Update Powershell script
The Powershell script does the following:
```mermaid
graph TD
A(Start script) --> B{Base folder supplied}
B --> |No| C(Throw error and exit)
B --> |Yes| D{Devops file supplied?}
D --> |No| E{Check if definition <br> in well known location}
D --> |Yes| G(Use file)
E --> |Yes| F(Download file)
E --> |No| I(Throw error and exit)
F --> G
```