Set the correct priority class for node-agent (#216) #156
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: sync | |
on: | |
push: | |
branches: | |
- 'main' | |
jobs: | |
cloudflare-registry: | |
permissions: | |
contents: read | |
runs-on: ubuntu-latest | |
container: us.gcr.io/ksoc-public/kubernetes-toolkit:1.29.4 | |
steps: | |
- name: clone repo | |
uses: actions/checkout@v4 | |
- name: repo add | |
run: helm repo add falcosecurity https://falcosecurity.github.io/charts | |
- name: repo update | |
run: helm repo update | |
- name: sync registry | |
run: make sync-repo-cloudflare | |
env: | |
AWS_ACCESS_KEY_ID: ${{ secrets.CLOUDFLARE_R2_ACCESS_KEY_ID }} | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.CLOUDFLARE_R2_SECRET_ACCESS_KEY }} |