
This patch adds in a tekton zuul job and fixes/adjusts the existing linting and building, which currently does not perform the advertised checks. This is the final patch of the chain of patches in order: 0. https://review.opendev.org/#/c/759865/ : tekton-pipelines 1. https://review.opendev.org/#/c/759598/ : tekton-triggers 2. https://review.opendev.org/#/c/759764/ : tektnon-dashboard Change-Id: Ie7bd9efd42fd13fe8e5e83f290f72ed00ba9dea1 Signed-off-by: Tin Lam <tin@irrational.io>
16 lines
309 B
Bash
Executable File
16 lines
309 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -eux
|
|
|
|
NS="tekton-pipelines"
|
|
|
|
kubectl create ns $NS
|
|
|
|
for ele in tekton-pipelines tekton-triggers tekton-dashboard; do
|
|
helm upgrade --install $ele ./charts/$ele --namespace $NS
|
|
done
|
|
|
|
kubectl wait --for=condition=ready pod --timeout=120s --namespace $NS --all
|
|
|
|
kubectl --namespace $NS get pod
|