Feat: support list runtime cluster (#2720)

This commit is contained in:
Somefive
2021-11-17 09:45:03 +08:00
committed by GitHub
parent b3423116bf
commit 55070033eb
10 changed files with 217 additions and 3 deletions

View File

@@ -0,0 +1,21 @@
apiVersion: core.oam.dev/v1beta1
kind: Application
metadata:
name: runtime-app
namespace: default
spec:
components:
- name: default-webservice
type: webservice
properties:
image: crccheck/hello-world
port: 8000
workflow:
steps:
# by default, this step will deploy this application to all runtime clusters
- name: deploy-all
type: deploy2runtime
# uncomment the following part to deploy this application only to selected clusters
# properties:
# clusters: ["cluster-a", "cluster-b"]