Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(corneliusweig/rakkess/access-matrix): windows support #4036

Merged
merged 1 commit into from
Jun 15, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 4 additions & 1 deletion pkgs/corneliusweig/rakkess/access-matrix/registry.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,11 @@ packages:
repo_owner: corneliusweig
repo_name: rakkess
description: Review Access - kubectl plugin to show an access matrix for k8s server resources
supported_if: not ((GOOS == "linux") and (GOARCH == "arm64"))
supported_if: GOOS == "darwin" or GOARCH == "amd64"
asset: "access-matrix-{{.Arch}}-{{.OS}}.tar.gz"
overrides:
- goos: windows
asset: access-matrix-amd64-windows.zip
files:
- name: kubectl-access_matrix
src: "access-matrix-{{.Arch}}-{{.OS}}"
8 changes: 7 additions & 1 deletion registry.json
Original file line number Diff line number Diff line change
Expand Up @@ -2406,9 +2406,15 @@
}
],
"name": "corneliusweig/rakkess/access-matrix",
"overrides": [
{
"asset": "access-matrix-amd64-windows.zip",
"goos": "windows"
}
],
"repo_name": "rakkess",
"repo_owner": "corneliusweig",
"supported_if": "not ((GOOS == \"linux\") and (GOARCH == \"arm64\"))",
"supported_if": "GOOS == \"darwin\" or GOARCH == \"amd64\"",
"type": "github_release"
},
{
Expand Down
5 changes: 4 additions & 1 deletion registry.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1604,8 +1604,11 @@ packages:
repo_owner: corneliusweig
repo_name: rakkess
description: Review Access - kubectl plugin to show an access matrix for k8s server resources
supported_if: not ((GOOS == "linux") and (GOARCH == "arm64"))
supported_if: GOOS == "darwin" or GOARCH == "amd64"
asset: "access-matrix-{{.Arch}}-{{.OS}}.tar.gz"
overrides:
- goos: windows
asset: access-matrix-amd64-windows.zip
files:
- name: kubectl-access_matrix
src: "access-matrix-{{.Arch}}-{{.OS}}"
Expand Down