Skip to content

Instantly share code, notes, and snippets.

@jrussett
Last active January 19, 2021 23:11
Show Gist options
  • Save jrussett/e0839ed10c060c8267170cc9a6dda390 to your computer and use it in GitHub Desktop.
Save jrussett/e0839ed10c060c8267170cc9a6dda390 to your computer and use it in GitHub Desktop.
Example Concourse pipeline manifest
---
resource_types: []
resources: []
jobs:
- name: sample-job
plan:
- task: sample-task
config:
platform: linux
image_resource:
type: registry-image
source:
repository: ubuntu
run:
path: /bin/bash
args:
- -c
- |
mkdir -p config
tee > example.yml <<EOF
---
key:
subkey: "value"
EOF
cat example.yml
tags: []
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment