github.com/oam-dev/kubevela@v1.9.11/.krew.yaml (about) 1 apiVersion: krew.googlecontainertools.github.com/v1alpha2 2 kind: Plugin 3 metadata: 4 name: vela 5 spec: 6 version: "{{ .TagName }}" 7 platforms: 8 - selector: 9 matchLabels: 10 os: linux 11 arch: amd64 12 {{addURIAndSha "https://github.com/oam-dev/kubevela/releases/download/{{ .TagName }}/kubectl-vela-{{ .TagName }}-linux-amd64.tar.gz" .TagName }} 13 files: 14 - from: "*/kubectl-vela" 15 to: "." 16 - from: "*/LICENSE" 17 to: "." 18 bin: "kubectl-vela" 19 - selector: 20 matchLabels: 21 os: darwin 22 arch: amd64 23 {{addURIAndSha "https://github.com/oam-dev/kubevela/releases/download/{{ .TagName }}/kubectl-vela-{{ .TagName }}-darwin-amd64.tar.gz" .TagName }} 24 files: 25 - from: "*/kubectl-vela" 26 to: "." 27 - from: "*/LICENSE" 28 to: "." 29 bin: "kubectl-vela" 30 - selector: 31 matchLabels: 32 os: windows 33 arch: amd64 34 {{addURIAndSha "https://github.com/oam-dev/kubevela/releases/download/{{ .TagName }}/kubectl-vela-{{ .TagName }}-windows-amd64.zip" .TagName }} 35 files: 36 - from: "*/kubectl-vela.exe" 37 to: "." 38 - from: "*/LICENSE" 39 to: "." 40 bin: "kubectl-vela.exe" 41 shortDescription: Easily interact with KubeVela 42 homepage: https://kubevela.io 43 description: | 44 kubectl vela is a kubectl plugin from the KubeVela project. KubeVela is 45 a modern application platform that is fully self-service, and adapts to 46 your needs when you grow. This plugin allows you to better view, manage 47 and maintain KubeVela applications.