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
| --- | |
| meta: | |
| environment: NAME | |
| service_name: NAME | |
| security_groups: | |
| - default | |
| job_templates: | |
| - name: redis | |
| release: redis | |
| stemcell: |
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
| name: redis | |
| director_uuid: 2ce88742-5da6-406e-93da-8d4fa9b8fa27 | |
| releases: | |
| - name: redis | |
| version: latest | |
| compilation: | |
| workers: 6 | |
| network: redis1 | |
| reuse_compilation_vms: true | |
| cloud_properties: |
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
| jobs: | |
| - name: job-traveling-cf-admin | |
| plan: | |
| - get: traveling-cf-admin | |
| - task: build-traveling-cf-admin | |
| file: traveling-cf-admin/ci/build.yml | |
| - put: github-release | |
| resources: | |
| - name: repo-traveling-cf-admin |
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
| #!/bin/bash | |
| ls -R $1 | awk ' | |
| /:$/&&f{s=$0;f=0} | |
| /:$/&&!f{sub(/:$/,"");s=$0;f=1;next} | |
| NF&&f{ print s"/"$0 }' |
This gist includes some https://concourse.ci job tasks
hello-world.yml- displays "hello world"display-other-task.yml- uses this task as a resource itself and displays thehello-world.ymlYAML; assumes that the gist is available in the concourse pipeline asresource-gist.display-other-task-renamed-resource-input.yml- is like the task above, but assumes the resource is now namedgistrather thanresource-gist
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
| --- | |
| name: redis-from-scratch | |
| resource_pools: | |
| - name: default | |
| network: default | |
| cloud_properties: | |
| instance_type: m3.medium | |
| jobs: |
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
| --- | |
| name: micro-aws-redis | |
| networks: | |
| - name: default | |
| type: manual | |
| cloud_properties: | |
| subnet: subnet-4e01852b | |
| range: 10.10.1.0/24 | |
| reserved: [10.10.1.1-10.10.1.3] |
This file has been truncated, but you can view the full file.
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
| package resources | |
| import ( | |
| "bytes" | |
| "compress/gzip" | |
| "fmt" | |
| "io" | |
| "strings" | |
| ) |