Last active
June 8, 2021 05:24
-
-
Save resouer/3589fe10a66ddbcf8602b223da24b049 to your computer and use it in GitHub Desktop.
A sample Open Application Model (OAM) deployment plan
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apiVersion: core.oam.dev/v1 | |
kind: Application | |
metadata: | |
name: awesome-blog | |
spec: | |
components: | |
- name: web | |
type: helm-chart | |
properties: | |
image: bitnami/wordpress | |
mariadb: | |
enabled: false | |
ingress: | |
certManager: true | |
enabled: true | |
hostname: my.xyz | |
traits: | |
- type: canary | |
properties: | |
analysis: | |
stepWeight: 2 | |
- name: db | |
type: aws-rds | |
properties: | |
size: 100G |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment