Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

for other plugins, they can access these artifacts by shared folder method and in charge of do some parse work as an example:

apiVersion: v1
kind: Pod
metadata:
    name: two-containers
spec:
    restartPolicy: Never
    volumes:
    - name: shared-data
       hostPath:
            path: /data
    containers:
     - name: sdcClientMc-container
        image: sdcClientMc
        volumeMounts:
         - name: shared-data
            mountPath: /data/artifacts/
     - name: openstackPlugin-container
        image: openstackPlugin
        volumeMounts:
         - name: shared-data
            mountPath: /pod-data

How to implement? 

the sequence flow of sdc client:

...