
This patchset moves all of the Tekton task script sections to use a defined entrypoint instead of an ansible-playbook command. This is a step to keeping all business logic out of the tekton tasks, i.e. the tekton tasks should work with any standard container given, not just one using Ansible. Change-Id: I5e106a8a75b79c0c2948cda638fbe532fd12fae3
38 lines
1.1 KiB
YAML
38 lines
1.1 KiB
YAML
apiVersion: tekton.dev/v1beta1
|
|
kind: Task
|
|
metadata:
|
|
name: functional
|
|
namespace: {{ $.Release.Namespace }}
|
|
spec:
|
|
description: >-
|
|
This task will deploy the CNF and run any tests specified
|
|
workspaces:
|
|
- name: k8s_cluster_data
|
|
- name: development_pipeline_data
|
|
steps:
|
|
- name: deploy-helm-charts
|
|
image: {{ $.Values.tasks.functional.functionalDeployImage }}
|
|
volumeMounts:
|
|
- mountPath: /usr/local/share/ca-certificates/harbor-ca.crt
|
|
name: harbor-ca
|
|
subPath: harbor-ca
|
|
- mountPath: /workspace/helm-creds
|
|
name: helm-publish-creds
|
|
- mountPath: $(workspaces.development_pipeline_data.path)/config
|
|
name: kubeconfig
|
|
script: |
|
|
/jarvis/functional_deploy.sh
|
|
- name: run-helm-tests
|
|
image: {{ $.Values.tasks.functional.functionalTestImage }}
|
|
script: |
|
|
/jarvis/functional_test.sh
|
|
volumes:
|
|
- name: helm-publish-creds
|
|
secret:
|
|
secretName: harbor-basic-auth
|
|
- name: harbor-ca
|
|
secret:
|
|
secretName: harbor-ca
|
|
- name: kubeconfig
|
|
secret:
|
|
secretName: kubeconfig-secret |