update keydb 6.3.3 -> 6.3.4 #58
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@v3 | |
with: | |
fetch-depth: 1 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Build image | |
run: docker build --rm -t quay.io/elisaoyj/keydb:alpine-${{ github.event.pull_request.head.sha }} ./keydb/ | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.11' | |
check-latest: true | |
- uses: azure/setup-helm@v3 | |
- uses: helm/[email protected] | |
- name: Lint chart | |
run: ct lint --chart-dirs keydb --charts keydb --validate-maintainers=false | |
- name: Create kind cluster | |
uses: helm/[email protected] | |
- name: Install required CRDs | |
run: kubectl apply -f keydb/test-crds/service-monitor.yaml | |
- name: Load image | |
run: kind -n chart-testing load docker-image quay.io/elisaoyj/keydb:alpine-${{ github.event.pull_request.head.sha }} | |
- name: Install chart | |
run: ct install --chart-dirs keydb --charts keydb --helm-extra-set-args "--set=topologySpreadConstraints=,imageRepository=quay.io/elisaoyj/keydb,imageTag=alpine-${{ github.event.pull_request.head.sha }}" | |
- 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 |