From 0610e0a439b56f701572cc2518916827feeac5af Mon Sep 17 00:00:00 2001 From: Victor Timofei Date: Wed, 29 Dec 2021 16:24:30 +0200 Subject: [PATCH] Configure the tekton persistent volume --- install.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/install.sh b/install.sh index 92c68f2..d61be5b 100755 --- a/install.sh +++ b/install.sh @@ -31,6 +31,11 @@ function install_tekton { -f https://storage.googleapis.com/tekton-releases/pipeline/latest/release.yaml ${KUBECTL_BIN} apply \ -f https://storage.googleapis.com/tekton-releases/triggers/latest/release.yaml + ${KUBECTL_BIN} create configmap config-artifact-pvc \ + --from-literal=size=10Gi \ + --from-literal=storageClassName=manual \ + -o yaml -n tekton-pipelines \ + --dry-run=client | ${KUBECTL_BIN} replace -f - } mkdir -pv "${INSTALL_DIR}"