mirror of
https://github.com/kubevela/kubevela.git
synced 2026-05-06 09:27:16 +00:00
Signed-off-by: Qiang Zheng <zhengq20018@cmbchina.com>
Fix: step group documentation update and bug fix of firstExecuteTime not record
Signed-off-by: Qiang Zheng <zhengq20018@cmbchina.com>
(cherry picked from commit 751dd181be)
Co-authored-by: Qiang Zheng <zhengq20018@cmbchina.com>
32 lines
747 B
YAML
32 lines
747 B
YAML
apiVersion: core.oam.dev/v1beta1
|
|
kind: Application
|
|
metadata:
|
|
name: example
|
|
namespace: default
|
|
spec:
|
|
components:
|
|
- name: express-server
|
|
type: webservice
|
|
properties:
|
|
image: crccheck/hello-world
|
|
port: 8000
|
|
- name: express-server2
|
|
type: webservice
|
|
properties:
|
|
image: crccheck/hello-world
|
|
port: 8000
|
|
|
|
workflow:
|
|
steps:
|
|
- name: step
|
|
type: step-group
|
|
subSteps:
|
|
- name: apply-sub-step1
|
|
type: apply-component
|
|
properties:
|
|
component: express-server
|
|
- name: apply-sub-step2
|
|
type: apply-component
|
|
properties:
|
|
component: express-server2
|