github.com/olli-ai/jx/v2@v2.0.400-0.20210921045218-14731b4dd448/pkg/tekton/syntax/test_data/sidecars/jenkins-x.yml (about)

     1  pipelineConfig:
     2    pipelines:
     3      release:
     4        pipeline:
     5          options:
     6            sidecars:
     7              - name: top-level-sidecar
     8                image: top-level/sidecar:tag
     9          agent:
    10            image: some-image
    11          stages:
    12            - name: A Working Stage
    13              options:
    14                sidecars:
    15                  - name: stage-level-sidecar
    16                    image: stage-level/sidecar:latest
    17                    volumeMounts:
    18                      - name: shared-volume
    19                        mountPath: /shared
    20                volumes:
    21                  - name: shared-volume
    22                    emptyDir: {}
    23                containerOptions:
    24                  volumeMounts:
    25                    - name: shared-volume
    26                      mountPath: /mnt/shared
    27              steps:
    28                - command: echo
    29                  args:
    30                    - hello
    31                    - world
    32                  name: A Step With Spaces And Such