mirror of
https://github.com/kubevela/kubevela.git
synced 2026-02-14 18:10:21 +00:00
33 lines
936 B
YAML
33 lines
936 B
YAML
apiVersion: core.oam.dev/v1alpha2
|
|
kind: ApplicationConfiguration
|
|
metadata:
|
|
name: sample-application-with-metrics
|
|
spec:
|
|
components:
|
|
- componentName: autoscale-application
|
|
traits:
|
|
- trait:
|
|
apiVersion: standard.oam.dev/v1alpha1
|
|
kind: MetricsTrait
|
|
spec:
|
|
scrapeService:
|
|
format: "prometheus"
|
|
port: 8080
|
|
path: "/metrics"
|
|
scheme: "http"
|
|
enabled: true
|
|
- trait:
|
|
apiVersion: core.oam.dev/v1alpha2
|
|
kind: ManualScalerTrait
|
|
metadata:
|
|
name: example-appconfig-trait
|
|
spec:
|
|
replicaCount: 3
|
|
- componentName: metrics-application
|
|
traits:
|
|
- trait:
|
|
apiVersion: standard.oam.dev/v1alpha1
|
|
kind: MetricsTrait
|
|
spec:
|
|
scrapeService:
|
|
port: 8080 |