Last active
January 19, 2021 23:11
-
-
Save jrussett/e0839ed10c060c8267170cc9a6dda390 to your computer and use it in GitHub Desktop.
Example Concourse pipeline manifest
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
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