This commit is contained in:
Kevin M. Gates 2021-10-12 12:42:34 -05:00 коммит произвёл GitHub
Родитель 936125e690
Коммит 2ffaa5014c
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 3 добавлений и 3 удалений

6
.github/workflows/kubepug.yml поставляемый
Просмотреть файл

@ -14,8 +14,8 @@ jobs:
- name: Install Helm and Kubepug binaries
run: |
mkdir -p ~/bin
curl -sSL https://github.com/rikatz/kubepug/archive/refs/tags/v1.2.1.tar.gz | tar xvfz - --overwrite -C ~/bin/
mkdir -p bin
curl -sSL https://github.com/rikatz/kubepug/archive/refs/tags/v1.2.1.tar.gz | tar xvfz - --overwrite -C bin/
curl -sSL https://get.helm.sh/helm-${HELM_VERSION}-linux-amd64.tar.gz | tar xvfz - -C ~/bin/ --wildcards --strip 1 '*/helm'
# nothing
- name: Run Kubepug with your Helm Charts Repository
@ -24,4 +24,4 @@ jobs:
pwd
echo "directory files:"
ls
find charts -type d | xargs -t -n1 -I% /bin/bash -c '~/bin/helm template % --api-versions ${K8S_TARGET_VERSION} | ~/bin/kubepug --error-on-deprecated --error-on-deleted --k8s-version ${K8S_TARGET_VERSION} --input-file /dev/stdin'
find charts -type d | xargs -t -n1 -I% /bin/bash -c 'bin/helm template % --api-versions ${K8S_TARGET_VERSION} | bin/kubepug --error-on-deprecated --error-on-deleted --k8s-version ${K8S_TARGET_VERSION} --input-file /dev/stdin'