2021-11-11 14:37:58 +02:00
|
|
|
# Krew Plugin Manifests
|
|
|
|
|
|
|
|
After releasing to GitHub or GitLab, GoReleaser can generate and publish a _Krew Plugin Manifest_ into a repository that you have access to.
|
|
|
|
|
|
|
|
Check their [website](https://krew.sigs.k8s.io) for more information.
|
|
|
|
|
|
|
|
The `krews` section specifies how the plugins should be created:
|
|
|
|
|
|
|
|
```yaml
|
2021-12-23 02:52:01 +02:00
|
|
|
# .goreleaser.yaml
|
2021-11-11 14:37:58 +02:00
|
|
|
krews:
|
|
|
|
-
|
|
|
|
# Name template of the recipe
|
|
|
|
# Default to project name
|
|
|
|
name: myproject
|
|
|
|
|
|
|
|
# IDs of the archives to use.
|
|
|
|
# Defaults to all.
|
|
|
|
ids:
|
|
|
|
- foo
|
|
|
|
- bar
|
|
|
|
|
|
|
|
# GOARM to specify which 32-bit arm version to use if there are multiple versions
|
|
|
|
# from the build section. Krew plugin supports at this moment only one 32-bit version.
|
|
|
|
# Default is 6 for all artifacts or each id if there a multiple versions.
|
|
|
|
goarm: 6
|
|
|
|
|
|
|
|
# NOTE: make sure the url_template, the token and given repo (github or gitlab) owner and name are from the
|
|
|
|
# same kind. We will probably unify this in the next major version like it is done with scoop.
|
|
|
|
|
|
|
|
# GitHub/GitLab repository to push the Krew plugin to
|
|
|
|
# Gitea is not supported yet, but the support coming
|
|
|
|
index:
|
|
|
|
owner: repo-owner
|
|
|
|
name: krew-plugins
|
2022-01-31 03:30:07 +02:00
|
|
|
|
|
|
|
# Optionally a branch can be provided.
|
|
|
|
# Defaults to the default repository branch.
|
2021-11-11 14:37:58 +02:00
|
|
|
branch: main
|
2022-01-31 03:30:07 +02:00
|
|
|
|
2021-11-11 14:37:58 +02:00
|
|
|
# Optionally a token can be provided, if it differs from the token provided to GoReleaser
|
2022-01-31 03:30:07 +02:00
|
|
|
token: "{{ .Env.HOMEBREW_TAP_GITHUB_TOKEN }}"
|
2021-11-11 14:37:58 +02:00
|
|
|
|
|
|
|
# Template for the url which is determined by the given Token (github or gitlab)
|
|
|
|
# Default for github is "https://github.com/<repo_owner>/<repo_name>/releases/download/{{ .Tag }}/{{ .ArtifactName }}"
|
|
|
|
# Default for gitlab is "https://gitlab.com/<repo_owner>/<repo_name>/-/releases/{{ .Tag }}/downloads/{{ .ArtifactName }}"
|
|
|
|
# Default for gitea is "https://gitea.com/<repo_owner>/<repo_name>/releases/download/{{ .Tag }}/{{ .ArtifactName }}"
|
|
|
|
url_template: "http://github.mycompany.com/foo/bar/releases/{{ .Tag }}/{{ .ArtifactName }}"
|
|
|
|
|
|
|
|
# Git author used to commit to the repository.
|
|
|
|
# Defaults are shown.
|
|
|
|
commit_author:
|
|
|
|
name: goreleaserbot
|
|
|
|
email: goreleaser@carlosbecker.com
|
|
|
|
|
|
|
|
# The project name and current git tag are used in the format string.
|
|
|
|
commit_msg_template: "Krew plugin update for {{ .ProjectName }} version {{ .Tag }}"
|
|
|
|
|
|
|
|
# Your app's homepage.
|
|
|
|
# Default is empty.
|
|
|
|
homepage: "https://example.com/"
|
|
|
|
|
|
|
|
# Template of your app's description.
|
|
|
|
# The usual guideline for this is to wrap the line at 80 chars.
|
|
|
|
#
|
|
|
|
# Default is empty.
|
|
|
|
description: "Software to create fast and easy drum rolls."
|
|
|
|
|
|
|
|
# Template of your app's short description.
|
|
|
|
# The usual guideline for this is to be at most 50 chars long.
|
|
|
|
#
|
|
|
|
# Default is empty.
|
|
|
|
short_description: "Software to create fast and easy drum rolls."
|
|
|
|
|
|
|
|
# Caveats for the user of your binary.
|
|
|
|
# The usual guideline for this is to wrap the line at 80 chars.
|
|
|
|
#
|
|
|
|
# Default is empty.
|
|
|
|
caveats: "How to use this binary"
|
|
|
|
|
|
|
|
# Setting this will prevent goreleaser to actually try to commit the updated
|
|
|
|
# krew plugin - instead, the plugin file will be stored on the dist folder only,
|
|
|
|
# leaving the responsibility of publishing it to the user.
|
|
|
|
# If set to auto, the release will not be uploaded to the Krew plugin
|
|
|
|
# in case there is an indicator for prerelease in the tag e.g. v1.0.0-rc1
|
|
|
|
# Default is false.
|
|
|
|
skip_upload: true
|
|
|
|
```
|
|
|
|
|
|
|
|
!!! tip
|
|
|
|
Learn more about the [name template engine](/customization/templates/).
|
|
|
|
|
|
|
|
## Limitations
|
|
|
|
|
|
|
|
- Only one binary per archive is allowed;
|
|
|
|
- Binary releases (when `archives.format` is set to `binary`) are not allowed;
|
|
|
|
- Only one `GOARM` build is allowed;
|