Skip to main content
Version: v0.10 🚧

mysql

Schema MySQL

MySQL describes the attributes to locally deploy or create a cloud provider
managed mysql database instance for the workload.

Attributes

Name and DescriptionTypeDefault ValueRequired
type
Type defines whether the mysql database is deployed locally or provided by
cloud vendor.
"local" | "cloud"Undefinedrequired
version
Version defines the mysql version to use.
strUndefinedrequired

Examples

Instantiate a local mysql database with version of 5.7. 

import catalog.models.schema.v1.accessories.mysql

mysql: mysql.MySQL {
type: "local"
version: "5.7"
}