minor release #167
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: istio-authorizer chart test | |
on: | |
push: | |
tags-ignore: | |
- "*" | |
branches: | |
- 'release/**' | |
paths: | |
- 'charts/istio-authorizer/Chart.yaml' | |
pull_request: | |
paths: | |
- 'charts/istio-authorizer/**' | |
- 'tests/**' | |
env: | |
CHART: istio-authorizer | |
jobs: | |
lint: | |
name: Linters | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Helm lint | |
run: make helm-lint | |
- name: Kubeeval lint | |
run: make lint-kubeeval | |
- name: Check kubernetes APIs | |
run: make check-kube-apis | |
test: | |
name: Tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Prepare | |
env: | |
DOCKER_USER: ${{ secrets.DOCKER_USER }} | |
DOCKER_PWD: ${{ secrets.DOCKER_PWD }} | |
run: make prepare | |
- name: Verify | |
run: CHART=acp make verify | |
- name: install-istio | |
run: make install-istio | |
- name: install | |
run: NAMESPACE=istio-authorizer make install | |
- name: wait | |
run: NAMESPACE=istio-authorizer make wait-for-daemonset | |
- name: update-istio-configmap | |
run: make update-istio-configmap | |
- name: install-example-httpbin | |
run: make install-example-httpbin | |
- name: wait for httpbin | |
run: CHART=httpbin NAMESPACE=default make wait | |
- name: Helm tests | |
run: NAMESPACE=istio-authorizer make helm-test | |
- name: Debug | |
if: failure() | |
run: make debug |