AYS Blueprints
An AYS blueprint is a YAML file used as the entry point for interacting with AYS. It describes the deployment of a specific application.
It does so by defining all service instances that make up a specific application and how these AYS services instances interact with each other.
Example:
redis_redis1:
description:
- "a description"
redis_redis2:
description:
- "a description"
myapp_test:
redis: 'redis1, redis2'
The above example is about the test
application using two instances of the Redis
.