Move mTLS CA cert mount out of /etc/nginx to avoid agent backup failure #2150
This file contains hidden or 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: CI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| changes: | |
| runs-on: ubuntu-latest | |
| outputs: | |
| ansible: ${{ steps.changes.outputs.ansible }} | |
| kubernetes: ${{ steps.changes.outputs.kubernetes }} | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: dorny/paths-filter@v4 | |
| id: changes | |
| with: | |
| filters: | | |
| ansible: | |
| - 'ansible/**' | |
| - 'uv.lock' | |
| kubernetes: | |
| - 'kubernetes/**' | |
| - 'uv.lock' | |
| lint: | |
| uses: ./.github/workflows/lint.yaml | |
| lint-ansible: | |
| needs: changes | |
| if: ${{ needs.changes.outputs.ansible == 'true' }} | |
| uses: ./.github/workflows/lint-ansible.yaml | |
| lint-kubernetes: | |
| needs: changes | |
| if: ${{ needs.changes.outputs.kubernetes == 'true' }} | |
| uses: ./.github/workflows/lint-kubernetes.yaml | |
| secrets: | |
| kube-config: ${{ secrets.KUBECONFIG }} |