Adding decision tree
parent
742a800a63
commit
6f40c4edb4
|
|
@ -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
|
||||
|
||||
```
|
||||
|
||||
Loading…
Reference in New Issue