apiVersion: core.oam.dev/v1beta1 kind: Application metadata: name: testapp spec: components: - name: express-server type: webservice properties: cmd: - node - server.js image: oamdev/testapp:v1 port: 8080 traits: - type: "init-container" properties: name: "install-container" image: "busybox" command: - wget - "-O" - "/work-dir/index.html" - http://info.cern.ch mountName: "workdir" appMountPath: "/usr/share/nginx/html" initMountPath: "/work-dir"