github.com/oam-dev/kubevela@v1.9.11/docs/examples/app-with-probe/app-with-probe.yaml (about)

     1  apiVersion: core.oam.dev/v1beta1
     2  kind: Application
     3  metadata:
     4    name: my-website
     5  spec:
     6    components:
     7      - name: frontend
     8        type: webservice
     9        properties:
    10          image: oamdev/testapp:v1
    11          cmd: ["node", "server.js"]
    12          port: 8080
    13          livenessProbe:
    14            httpGet:
    15              path: /
    16              port: 8080