Update Helm release kube-prometheus-stack to v65 - autoclosed #1304
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: render | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
render: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
overlay: [dev, messy, production] | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
# fetch-depth: 0 needed to get all branches | |
fetch-depth: 0 | |
path: test-deploy | |
token: ${{ secrets.PUSHER_ROBOT_GITHUB_TOKEN }} | |
- name: Render | |
uses: kustomize-everything/[email protected] | |
if: github.event_name == 'pull_request' | |
with: | |
dry-run: "true" | |
environment: ${{ matrix.overlay }} | |
push-environment-regex: (dev|messy|production) | |
pr-environment-regex: false | |
working-directory: test-deploy | |
git-commit-user: Pusher Robot | |
git-commit-email: "[email protected]" | |
token: ${{ secrets.PUSHER_ROBOT_GITHUB_TOKEN }} | |
- name: Render | |
uses: kustomize-everything/[email protected] | |
if: github.event_name == 'push' | |
with: | |
dry-run: "false" | |
environment: ${{ matrix.overlay }} | |
push-environment-regex: (dev|messy|production) | |
pr-environment-regex: false | |
working-directory: test-deploy | |
git-commit-user: Pusher Robot | |
git-commit-email: "[email protected]" | |
token: ${{ secrets.PUSHER_ROBOT_GITHUB_TOKEN }} | |
- uses: docker://ghcr.io/yannh/kubeconform:master | |
with: | |
entrypoint: '/kubeconform' | |
# Ignore the prom CRDs for now | |
args: "-summary -schema-location default -ignore-missing-schemas -output json test-deploy/" |