Files
kubevela/pkg/appfile/dryrun/testdata/diff-apprevision.yaml
Somefive dd899c2b39 Chore: remove outdated apis(v1alppha2 ApplicationConfiguration Component, and HealthScope, Rollout) (#6041)
* remove outdated api

Signed-off-by: Somefive <yd219913@alibaba-inc.com>

* fix rt test: no component rt

Signed-off-by: Somefive <yd219913@alibaba-inc.com>

* recover context.revision to component hash

Signed-off-by: Somefive <yd219913@alibaba-inc.com>

---------

Signed-off-by: Somefive <yd219913@alibaba-inc.com>
2023-06-01 09:32:49 +08:00

142 lines
5.1 KiB
YAML

apiVersion: core.oam.dev/v1beta1
kind: ApplicationRevision
metadata:
generation: 1
labels:
app.oam.dev/app-revision-hash: c2207054644744d
app.oam.dev/name: livediff-demo
name: livediff-demo-v1
namespace: default
spec:
application:
apiVersion: core.oam.dev/v1beta1
kind: Application
metadata: {}
spec:
components:
- name: myweb-1
properties:
cmd:
- sleep
- "1000"
enemies: alien
image: busybox
lives: "3"
traits:
- properties:
domain: www.example.com
http:
/: 80
type: myingress
type: myworker
- name: myweb-2
properties:
cmd:
- sleep
- "1000"
enemies: alien
image: busybox
lives: "3"
type: myworker
status: {}
applicationConfiguration:
apiVersion: core.oam.dev/v1alpha2
kind: ApplicationConfiguration
metadata: {}
spec:
components:
- componentName: myweb-1
revisionName: myweb-1-v1
traits:
- trait:
apiVersion: v1
kind: Service
metadata:
labels:
app.oam.dev/appRevision: livediff-demo-v1
app.oam.dev/component: myweb-1
app.oam.dev/name: livediff-demo
trait.oam.dev/resource: service
trait.oam.dev/type: myingress
name: myweb-1
namespace: default
spec:
ports:
- port: 80
targetPort: 80
selector:
app.oam.dev/component: myweb-1
- trait:
apiVersion: networking.k8s.io/v1beta1
kind: Ingress
metadata:
labels:
app.oam.dev/appRevision: livediff-demo-v1
app.oam.dev/component: myweb-1
app.oam.dev/name: livediff-demo
trait.oam.dev/resource: ingress
trait.oam.dev/type: myingress
name: myweb-1
namespace: default
spec:
rules:
- host: www.example.com
http:
paths:
- backend:
serviceName: myweb-1
servicePort: 80
path: /
- componentName: myweb-2
revisionName: myweb-2-v1
status:
dependency: {}
observedGeneration: 0
componentDefinitions:
myworker:
apiVersion: core.oam.dev/v1beta1
kind: ComponentDefinition
metadata: {}
spec:
schematic:
cue:
template: "output: {\n apiVersion: \"apps/v1\"\n kind: \"Deployment\"\n}\noutput:
{\n\tspec: {\n\t\tselector: matchLabels: {\n\t\t\t\"app.oam.dev/component\":
context.name\n\t\t}\n\n\t\ttemplate: {\n\t\t\tmetadata: labels: {\n\t\t\t\t\"app.oam.dev/component\":
context.name\n\t\t\t}\n\n\t\t\tspec: {\n\t\t\t\tcontainers: [{\n\t\t\t\t\tname:
\ context.name\n\t\t\t\t\timage: parameter.image\n\n\t\t\t\t\tif parameter[\"cmd\"]
!= _|_ {\n\t\t\t\t\t\tcommand: parameter.cmd\n\t\t\t\t\t}\n\t\t\t\t}]\n\t\t\t}\n\t\t}\n\t}\n}\n\nparameter:
{\n\t// +usage=Which image would you like to use for your service\n\t// +short=i\n\timage:
string\n\t// +usage=Commands to run in the container\n\tcmd?: [...string]\n}\n"
workload:
definition:
apiVersion: apps/v1
kind: Deployment
type: deployments.apps
status: {}
resourcesConfigMap:
name: livediff-demo-v1
traitDefinitions:
myingress:
apiVersion: core.oam.dev/v1beta1
kind: TraitDefinition
metadata: {}
spec:
appliesToWorkloads:
- '*'
definitionRef:
name: ""
schematic:
cue:
template: "parameter: {\n\tdomain: string\n\thttp: [string]: int\n}\n\noutputs:
{\n service: {\n apiVersion: \"v1\"\n kind: \"Service\"\n }\n ingress:
{\n apiVersion: \"networking.k8s.io/v1beta1\"\n kind: \"Ingress\"\n
\ }\n}\n\n// trait template can have multiple outputs in one trait\noutputs:
service: {\n\tmetadata:\n\t\tname: context.name\n\tspec: {\n\t\tselector:\n\t\t\t\"app.oam.dev/component\":
context.name\n\t\tports: [\n\t\t\tfor k, v in parameter.http {\n\t\t\t\tport:
\ v\n\t\t\t\ttargetPort: v\n\t\t\t},\n\t\t]\n\t}\n}\n\noutputs: ingress:
{\n\tmetadata:\n\t\tname: context.name\n\tspec: {\n\t\trules: [{\n\t\t\thost:
parameter.domain\n\t\t\thttp: {\n\t\t\t\tpaths: [\n\t\t\t\t\tfor k, v in parameter.http
{\n\t\t\t\t\t\tpath: k\n\t\t\t\t\t\tbackend: {\n\t\t\t\t\t\t\tserviceName:
context.name\n\t\t\t\t\t\t\tservicePort: v\n\t\t\t\t\t\t}\n\t\t\t\t\t},\n\t\t\t\t]\n\t\t\t}\n\t\t}]\n\t}\n}\n"
status: {}