update redis exporter image to v1.66.0 #72
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: Pull Request | |
on: | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
- reopened | |
jobs: | |
helm-chart: | |
runs-on: elisa-normal | |
timeout-minutes: 15 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 1 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.12' | |
check-latest: true | |
- uses: azure/setup-helm@v4 | |
- uses: helm/[email protected] | |
- name: Lint chart | |
run: ct lint --chart-dirs keydb --charts keydb --validate-maintainers=false | |
- name: Create kind cluster | |
uses: helm/kind-action@v1 | |
- name: Install required CRDs | |
run: kubectl apply -f keydb/test-crds/service-monitor.yaml | |
- name: Install chart | |
run: ct install --chart-dirs keydb --charts keydb --helm-extra-set-args "--set=topologySpreadConstraints=" | |
- name: Notify failure | |
if: failure() | |
env: | |
MATTERMOST_WEBHOOK_URL: ${{ secrets.MATTERMOST_WEBHOOK_URL }} | |
MATTERMOST_TEXT: "${{ github.repository }} PR build. Please check [here](${{ github.event.pull_request.html_url }}/checks)." | |
run: | | |
send-to-mattermost |