add pipeline
This commit is contained in:
parent
aeed65257b
commit
b43595ac9e
4 changed files with 59 additions and 0 deletions
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
secrets.yml
|
1
deploy.md
Normal file
1
deploy.md
Normal file
|
@ -0,0 +1 @@
|
|||
`fly -t home set-pipeline -l secrets.yml -p fluentd -c pipeline.yml`
|
1
labels
Normal file
1
labels
Normal file
|
@ -0,0 +1 @@
|
|||
maintainer=Pim Kunis
|
56
pipeline.yml
56
pipeline.yml
|
@ -1,5 +1,21 @@
|
|||
---
|
||||
resources:
|
||||
- name: repo
|
||||
type: git
|
||||
source:
|
||||
uri: https://git.kun.is/pim/fluentd.git
|
||||
- name: my-image
|
||||
type: registry-image
|
||||
source:
|
||||
repository: git.kun.is/pim/fluentd
|
||||
username: pim
|
||||
password: ((api_key))
|
||||
tag: stable
|
||||
- name: upstream-image
|
||||
type: registry-image
|
||||
source:
|
||||
repository: fluent/fluentd
|
||||
tag: v1.16-debian-1
|
||||
- name: version
|
||||
type: semver
|
||||
source:
|
||||
|
@ -10,3 +26,43 @@ resources:
|
|||
file: version
|
||||
private_key: {{private_key}}
|
||||
icon: numeric
|
||||
|
||||
jobs:
|
||||
- name: build-and-publish-image
|
||||
plan:
|
||||
- get: repo
|
||||
trigger: true
|
||||
- get: upstream-image
|
||||
trigger: true
|
||||
- task: build-image
|
||||
privileged: true
|
||||
config:
|
||||
platform: linux
|
||||
image_resource:
|
||||
type: registry-image
|
||||
source:
|
||||
repository: concourse/oci-build-task
|
||||
inputs:
|
||||
- name: repo
|
||||
outputs:
|
||||
- name: image
|
||||
params:
|
||||
DOCKERFILE: repo/Dockerfile
|
||||
LABELS_FILE: repo/labels
|
||||
run:
|
||||
path: sh
|
||||
args:
|
||||
- -exc
|
||||
- |
|
||||
build
|
||||
ls image
|
||||
- get: version
|
||||
params:
|
||||
bump: patch
|
||||
- put: my-image
|
||||
params:
|
||||
image: image/image.tar
|
||||
additional_tags: version/version
|
||||
- put: version
|
||||
params:
|
||||
file: version/version
|
||||
|
|
Reference in a new issue