Difference between revisions of "YAML"
Jump to navigation
Jump to search
Line 10: | Line 10: | ||
#comment | #comment | ||
version: 1.7 | version: 1.7 | ||
* Create a list | |||
microservice: #list name | |||
- app: user-auth #items of the list | |||
port: 9000 | |||
#comment | |||
version: 1.7 | |||
deployed: true #boolean value | |||
- app: shopping-cart | |||
port: 9002 | |||
version: | |||
- 1.9 | |||
- 2.0 | |||
- 2.1 |
Revision as of 14:44, 9 August 2022
YAML
Serialization Language
Syntax
- Key value pair
- "microservice" becomes an object with directives under it.
microservice: app: user-auth port: 9000 #comment version: 1.7
- Create a list
microservice: #list name - app: user-auth #items of the list port: 9000 #comment version: 1.7 deployed: true #boolean value - app: shopping-cart port: 9002 version: - 1.9 - 2.0 - 2.1