Release/v2.207.0 light metrics #5
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: k8s | |
permissions: | |
contents: read | |
on: | |
pull_request: | |
paths: | |
- Cargo.lock | |
- Dockerfile | |
- "**/*.rs" | |
- "**/*.toml" | |
- justfile | |
- .github/workflows/k8s.yml | |
jobs: | |
k3d-linkerd-install: | |
timeout-minutes: 20 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: linkerd/dev/actions/setup-tools@v40 | |
- name: Install linkerd CLI (edge) | |
id: linkerd | |
run: | | |
scurl https://run.linkerd.io/install-edge | sh | |
echo "PATH=$PATH:$HOME/.linkerd2/bin" >> "$GITHUB_ENV" | |
export PATH="$PATH:$HOME/.linkerd2/bin" | |
tag=$(linkerd version --client --short) | |
echo "linkerd $tag" | |
echo "LINKERD_TAG=$tag" >> "$GITHUB_ENV" | |
- uses: actions/checkout@8f4b7f84864484a7bf31766abe9204da3cbe65b3 | |
- run: just docker | |
- run: just-k3d create | |
- run: just k3d-load-linkerd | |
- run: just linkerd-install | |
- run: just linkerd-check-contol-plane-proxy | |
env: | |
TMPDIR: ${{ runner.temp }} |