-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add make target for krew Signed-off-by: Dominique Vernier <[email protected]> * Update changelog and version Signed-off-by: Dominique Vernier <[email protected]>
- Loading branch information
Showing
6 changed files
with
79 additions
and
9 deletions.
There are no files selected for viewing
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
# Copyright Contributors to the Open Cluster Management project | ||
|
||
apiVersion: krew.googlecontainertools.github.com/v1alpha2 | ||
kind: Plugin | ||
metadata: | ||
name: clusteradm | ||
spec: | ||
version: {{ .TagName }} | ||
homepage: https://github.com/open-cluster-management-io/clusteradm | ||
shortDescription: Provides commands for OCM. | ||
description: | | ||
This plugin allows you to manage clusters on the open-cluster-management platform. | ||
platforms: | ||
- selector: | ||
matchLabels: | ||
os: darwin | ||
arch: amd64 | ||
{{addURIAndSha "https://github.com/open-cluster-management-io/clusteradm/releases/download/{{ .TagName }}/clusteradm_darwin_amd64.tar.gz" .TagName }} | ||
bin: clusteradm | ||
- selector: | ||
matchLabels: | ||
os: linux | ||
arch: amd64 | ||
{{addURIAndSha "https://github.com/open-cluster-management-io/clusteradm/releases/download/{{ .TagName }}/clusteradm_linux_amd64.tar.gz" .TagName }} | ||
bin: clusteradm | ||
- selector: | ||
matchLabels: | ||
os: linux | ||
arch: arm64 | ||
{{addURIAndSha "https://github.com/open-cluster-management-io/clusteradm/releases/download/{{ .TagName }}/clusteradm_linux_arm64.tar.gz" .TagName }} | ||
bin: clusteradm | ||
- selector: | ||
matchLabels: | ||
os: windows | ||
arch: amd64 | ||
{{addURIAndSha "https://github.com/open-cluster-management-io/clusteradm/releases/download/{{ .TagName }}/clusteradm_windows_amd64.zip" .TagName }} | ||
bin: clusteradm.exe |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,13 @@ | ||
[comment]: # ( Copyright Contributors to the Open Cluster Management project ) | ||
# Release Content | ||
## Additions | ||
- Add `clusteradm install addons` and `clusteradm enable addons` [Add subcommand to enable application management addon](https://github.com/open-cluster-management-io/clusteradm/issues/45) | ||
- [Add a watch to monitor the deployment of the join on the spoke cluster #9](https://github.com/open-cluster-management-io/clusteradm/issues/9) | ||
- [Add unjoin feature #49](https://github.com/open-cluster-management-io/clusteradm/issues/49) | ||
|
||
## Breaking Changes | ||
|
||
## Changes | ||
|
||
- Add a check to verify the readyness of the CRD | ||
|
||
## Bug Fixes |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
0.1.0-alpha.5 | ||
0.1.0-alpha.6 |