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

fix(argoproj/argo-rollouts): support arm64 and windows #4020

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/argoproj/argo-rollouts/registry.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@ packages:
- type: github_release
repo_owner: argoproj
repo_name: argo-rollouts
asset: "kubectl-argo-rollouts-{{.OS}}-amd64"
description: Progressive Delivery for Kubernetes
rosetta2: true
complete_windows_exe: false
asset: "kubectl-argo-rollouts-{{.OS}}-{{.Arch}}"
supported_if: not (GOOS == "windows" and GOARCH == "arm64")
files:
- name: kubectl-argo-rollouts
5 changes: 4 additions & 1 deletion registry.json
Original file line number Diff line number Diff line change
Expand Up @@ -1378,7 +1378,8 @@
"type": "github_release"
},
{
"asset": "kubectl-argo-rollouts-{{.OS}}-amd64",
"asset": "kubectl-argo-rollouts-{{.OS}}-{{.Arch}}",
"complete_windows_exe": false,
"description": "Progressive Delivery for Kubernetes",
"files": [
{
Expand All @@ -1387,6 +1388,8 @@
],
"repo_name": "argo-rollouts",
"repo_owner": "argoproj",
"rosetta2": true,
"supported_if": "not (GOOS == \"windows\" and GOARCH == \"arm64\")",
"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 @@ -914,8 +914,11 @@ packages:
- type: github_release
repo_owner: argoproj
repo_name: argo-rollouts
asset: "kubectl-argo-rollouts-{{.OS}}-amd64"
description: Progressive Delivery for Kubernetes
rosetta2: true
complete_windows_exe: false
asset: "kubectl-argo-rollouts-{{.OS}}-{{.Arch}}"
supported_if: not (GOOS == "windows" and GOARCH == "arm64")
files:
- name: kubectl-argo-rollouts
- type: github_release
Expand Down