51 lines
1.5 KiB
YAML
51 lines
1.5 KiB
YAML
# Tekton Kaniko Build Task for Bakery-IA CI/CD
|
|
# This task builds and pushes container images using Kaniko
|
|
|
|
apiVersion: tekton.dev/v1beta1
|
|
kind: Task
|
|
metadata:
|
|
name: kaniko-build
|
|
namespace: {{ .Values.namespace }}
|
|
labels:
|
|
app.kubernetes.io/name: {{ .Values.labels.app.name }}
|
|
app.kubernetes.io/component: build
|
|
spec:
|
|
workspaces:
|
|
- name: source
|
|
description: Workspace containing the source code
|
|
- name: docker-credentials
|
|
description: Docker registry credentials
|
|
params:
|
|
- name: services
|
|
type: string
|
|
description: Comma-separated list of services to build
|
|
- name: registry
|
|
type: string
|
|
description: Container registry URL
|
|
- name: git-revision
|
|
type: string
|
|
description: Git revision to tag images with
|
|
results:
|
|
- name: build-status
|
|
description: Status of the build operation
|
|
steps:
|
|
- name: build-and-push
|
|
image: gcr.io/kaniko-project/executor:v1.15.0
|
|
env:
|
|
- name: DOCKER_CONFIG
|
|
value: /tekton/home/.docker
|
|
command:
|
|
- /kaniko/executor
|
|
args:
|
|
- --dockerfile=$(workspaces.source.path)/Dockerfile
|
|
- --destination=$(params.registry)/$(params.service):$(params.git-revision)
|
|
- --context=$(workspaces.source.path)
|
|
- --cache=true
|
|
- --cache-repo=$(params.registry)/cache
|
|
resources:
|
|
limits:
|
|
cpu: 2000m
|
|
memory: 4Gi
|
|
requests:
|
|
cpu: 500m
|
|
memory: 1Gi |