diff --git a/examples/src/powershell/microservice/readme.md b/examples/src/powershell/microservice/readme.md new file mode 100644 index 0000000..64b3ed5 --- /dev/null +++ b/examples/src/powershell/microservice/readme.md @@ -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
in well known location} + D --> |Yes| G(Use file) + E --> |Yes| F(Download file) + E --> |No| I(Throw error and exit) + F --> G + +``` +