YAML

From rbachwiki
Revision as of 14:44, 9 August 2022 by Bacchas (talk | contribs)
Jump to navigation Jump to search

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