charts/pipelines-library/templates/pipelines/python/python3.8/gerrit-review-lib.yaml (52 lines of code) (raw):

{{ if has "gerrit" .Values.global.gitProviders }} {{ if (index .Values.pipelines.deployableResources.python "python3.8" ) }} apiVersion: tekton.dev/v1 kind: Pipeline metadata: name: gerrit-python-python-3.8-lib-review labels: app.edp.epam.com/pipelinetype: review {{- include "edp-tekton.labels" . | nindent 4 }} spec: description: "The Review pipeline for building Python" workspaces: - name: shared-workspace - name: ssh-creds params: - name: pipelineUrl default: https://portal-{{ .Release.Namespace }}.{{ .Values.global.dnsWildCard }}/c/main/pipelines/$(context.pipelineRun.namespace)/$(context.pipelineRun.name) type: string - name: git-source-url default: "https://github.com/epmd-edp/python-python-python-3.8" description: git url to clone type: string - name: git-source-revision description: 'git revision to checkout (branch, tag, sha, ref…)' default: "edp" type: string - name: git-refspec description: Refspec to fetch before checking out revision. default: "" type: string - name: CODEBASE_NAME default: "python-app" description: "Project name" type: string - name: image default: '{{ include "edp-tekton.registry" . }}/python:3.8-slim' description: "python image version" type: string - name: targetBranch description: Target branch of Merge Request - name: changeNumber description: Change number from Merge Request - name: patchsetNumber description: Patchset number from Merge Request tasks: {{- include "gerrit-review-start" . | nindent 4 }} {{- include "get-cache" $ | nindent 4 }} {{ include "python-review-gerrit-common" . | nindent 4 }} {{- include "save-cache" $ | nindent 4 }} {{ include "gerrit-review-vote" . | nindent 2 }} {{ end }} {{ end }}