nginx/pipeline/pipeline.yaml
2021-06-29 03:52:58 +01:00

33 lines
831 B
YAML

apiVersion: tekton.dev/v1alpha1
kind: Pipeline
metadata:
name: cdci-nginx
namespace: cdci-librecloud-online
spec:
#serviceAccount: build-bot
resources:
- name: source-repo
type: git
#resourceRef:
# name: librecloud-nginx-git
- name: target-image
type: image
#resourceRef:
# name: librecloud-nginx-img
tasks:
- name: build-nginx-img
taskRef:
name: nginx-build-image-from-git-source
params:
- name: pathToDockerFile
value: /workspace/source/src
- name: pathToContext
value: /workspace/source/src #configure: may change according to your source
resources:
inputs:
- name: source
resource: source-repo
outputs:
- name: builtImage
resource: target-image