github.com/oam-dev/kubevela@v1.9.11/references/docgen/def-doc/workflowstep/print-message-in-status.eg.md (about) 1 ```yaml 2 apiVersion: core.oam.dev/v1beta1 3 kind: Application 4 metadata: 5 name: print-message-in-status 6 namespace: default 7 spec: 8 components: 9 - name: express-server 10 type: webservice 11 properties: 12 image: oamdev/hello-world 13 port: 8000 14 workflow: 15 steps: 16 - name: express-server 17 type: apply-component 18 properties: 19 component: express-server 20 - name: message 21 type: print-message-in-status 22 properties: 23 message: "All addons have been enabled successfully, you can use 'vela addon list' to check them." 24 ```