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/ketall): windows support #4033

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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions pkgs/corneliusweig/ketall/registry.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,13 @@ packages:
repo_owner: corneliusweig
repo_name: ketall
description: Like `kubectl get all`, but get really all resources
supported_if: not ((GOOS == "linux") and (GOARCH == "arm64"))
asset: "ketall-{{.Arch}}-{{.OS}}.tar.gz"
supported_if: GOOS == "darwin" or GOARCH == "amd64"
files:
- name: ketall
src: "ketall-{{.Arch}}-{{.OS}}"
- name: kubectl-get_all
src: "ketall-{{.Arch}}-{{.OS}}"
asset: "ketall-{{.Arch}}-{{.OS}}.tar.gz"
overrides:
- goos: windows
asset: "ketall-amd64-windows.zip"
8 changes: 7 additions & 1 deletion registry.json
Original file line number Diff line number Diff line change
Expand Up @@ -2373,9 +2373,15 @@
"src": "ketall-{{.Arch}}-{{.OS}}"
}
],
"overrides": [
{
"asset": "ketall-amd64-windows.zip",
"goos": "windows"
}
],
"repo_name": "ketall",
"repo_owner": "corneliusweig",
"supported_if": "not ((GOOS == \"linux\") and (GOARCH == \"arm64\"))",
"supported_if": "GOOS == \"darwin\" or GOARCH == \"amd64\"",
"type": "github_release"
},
{
Expand Down
7 changes: 5 additions & 2 deletions registry.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1575,13 +1575,16 @@ packages:
repo_owner: corneliusweig
repo_name: ketall
description: Like `kubectl get all`, but get really all resources
supported_if: not ((GOOS == "linux") and (GOARCH == "arm64"))
asset: "ketall-{{.Arch}}-{{.OS}}.tar.gz"
supported_if: GOOS == "darwin" or GOARCH == "amd64"
files:
- name: ketall
src: "ketall-{{.Arch}}-{{.OS}}"
- name: kubectl-get_all
src: "ketall-{{.Arch}}-{{.OS}}"
asset: "ketall-{{.Arch}}-{{.OS}}.tar.gz"
overrides:
- goos: windows
asset: "ketall-amd64-windows.zip"
- name: corneliusweig/rakkess/access-matrix
type: github_release
repo_owner: corneliusweig
Expand Down