restrict user create piplines in system namespaces #98
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
on: pull_request | |
jobs: | |
e2e: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
k3s_version: ["v1.26.11+k3s2","v1.27.8+k3s2","v1.28.4+k3s2"] | |
steps: | |
- name: Setup Kubernetes | |
run: curl -sfL https://get.k3s.io | INSTALL_K3S_VERSION="${{ matrix.k3s_version }}" K3S_KUBECONFIG_MODE=777 sh - | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: '1.22' | |
- name: Run tests | |
run: make e2e KUBECONFIG=/etc/rancher/k3s/k3s.yaml |