Skip to main content
Version: v0.10 🚧

postgres

Schema PostgreSQL

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

Attributes

Name and DescriptionTypeDefault ValueRequired
type
Type defines whether the postgresql 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 postgresql database with image version of 14.0. 

import catalog.models.schema.v1.accessories.postgres

postgres: postgres.PostgreSQL {
type: "local"
version: "14.0"
}