Skip to content

Commit

Permalink
Merge pull request #4033 from aquaproj/feat/ketall-windows
Browse files Browse the repository at this point in the history
feat(corneliusweig/ketall): windows support
  • Loading branch information
suzuki-shunsuke committed Jun 15, 2022
2 parents b75de30 + 7c3b816 commit 2db04ec
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 5 deletions.
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

0 comments on commit 2db04ec

Please sign in to comment.