Created
March 29, 2019 16:46
-
-
Save Pandry/090207d9f018ad589a9b41a8a2984e71 to your computer and use it in GitHub Desktop.
A Concourse CI pipeline to build the pipeline
This file contains 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
resources: | |
- name: atomic-containers-repo | |
type: git | |
source: | |
uri: https://github.com/projectatomic/atomic-system-containers.git | |
branch: master | |
- name: dockerhub-ovirt-ga | |
type: docker-image | |
source: | |
repository: pandry/containerd-ovirt-ga | |
username: ((docker.DOCKERHUB_USERNAME)) | |
password: ((docker.DOCKERHUB_PASSWORD)) | |
- name: 1w | |
type: time | |
source: {interval: 1w} | |
jobs: | |
- name: build-docker-image | |
serial: true | |
plan: | |
- get: atomic-containers-repo | |
trigger: true | |
- get: 1w | |
trigger: true | |
- put: dockerhub-ovirt-ga | |
params: | |
build: atomic-containers-repo/ovirt-guest-agent-centos |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment