Skip to content

Commit 1dc9d98

Browse files
authored
Reimplement kubectl plugin release workflow (#8812)
* Feat: reimplement kubectl plugin release system This commit does the following changes: - Add GitHub Actions pipeline for releasing the plugin - Removes the build/build-plugin.sh and replaces this with GoReleaser - Adds the use of krew-release-bot for automatically updating the krew release - Removes the make target for build/build-plugin.sh Signed-off-by: Ismayil Mirzali <[email protected]> * Fix: pin github actions stages with commit sha Signed-off-by: Ismayil Mirzali <[email protected]> Signed-off-by: Ismayil Mirzali <[email protected]>
1 parent c85765a commit 1dc9d98

File tree

6 files changed

+107
-147
lines changed

6 files changed

+107
-147
lines changed

.github/workflows/plugin.yaml

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
name: kubectl plugin
2+
3+
on:
4+
push:
5+
branches:
6+
- "main"
7+
paths:
8+
- "cmd/plugin/**"
9+
tags:
10+
- "v*"
11+
12+
jobs:
13+
release-plugin:
14+
runs-on: ubuntu-latest
15+
steps:
16+
- name: Checkout
17+
uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b # v3.0.2
18+
with:
19+
fetch-depth: 0
20+
21+
- name: Set up Go
22+
uses: actions/setup-go@b22fbbc2921299758641fab08929b4ac52b32923 # v3.2.0
23+
with:
24+
go-version: 1.18
25+
26+
- name: Run GoReleaser
27+
uses: goreleaser/goreleaser-action@68acf3b1adf004ac9c2f0a4259e85c5f66e99bef # v3.0.0
28+
with:
29+
version: latest
30+
args: release --rm-dist
31+
env:
32+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
33+
34+
- name: Update new version in krew-index
35+
uses: rajatjindal/krew-release-bot@92da038bbf995803124a8e50ebd438b2f37bbbb0 # v0.0.43
36+
with:
37+
krew_template_file: cmd/plugin/krew.yaml

.goreleaser.yaml

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
project_name: ingress-nginx
2+
release:
3+
github:
4+
owner: kubernetes
5+
name: ingress-nginx
6+
builds:
7+
- id: ingress-nginx
8+
goos:
9+
- darwin
10+
- linux
11+
- windows
12+
goarch:
13+
- arm64
14+
- amd64
15+
env:
16+
- CGO_ENABLED=0
17+
- GO111MODULE=on
18+
main: cmd/plugin/main.go
19+
binary: kubectl-ingress-nginx
20+
ldflags: |
21+
-s -w
22+
-X k8s.io/ingress-nginx/version.COMMIT={{ .Commit }}
23+
-X k8s.io/ingress-nginx/version.RELEASE={{ .Tag }}
24+
archives:
25+
- id: ingress-nginx
26+
builds:
27+
- ingress-nginx
28+
name_template: "kubectl-{{ .ProjectName }}_{{ .Os }}_{{ .Arch }}"
29+
format: tar.gz

Makefile

-12
Original file line numberDiff line numberDiff line change
@@ -127,18 +127,6 @@ build: ## Build ingress controller, debug tool and pre-stop hook.
127127
build/build.sh
128128

129129

130-
.PHONY: build-plugin
131-
build-plugin: ## Build ingress-nginx krew plugin.
132-
@build/run-in-docker.sh \
133-
PKG=$(PKG) \
134-
MAC_OS=$(MAC_OS) \
135-
ARCH=$(ARCH) \
136-
COMMIT_SHA=$(COMMIT_SHA) \
137-
REPO_INFO=$(REPO_INFO) \
138-
TAG=$(TAG) \
139-
build/build-plugin.sh
140-
141-
142130
.PHONY: clean
143131
clean: ## Remove .gocache directory.
144132
rm -rf bin/ .gocache/ .cache/

build/build-plugin.sh

-84
This file was deleted.

cmd/plugin/ingress-nginx.yaml.tmpl

-51
This file was deleted.

cmd/plugin/krew.yaml

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
apiVersion: krew.googlecontainertools.github.com/v1alpha2
2+
kind: Plugin
3+
metadata:
4+
name: ingress-nginx
5+
spec:
6+
shortDescription: Interact with ingress-nginx
7+
description: |
8+
The official kubectl plugin for ingress-nginx.
9+
version: {{ .TagName }}
10+
homepage: https://kubernetes.github.io/ingress-nginx/kubectl-plugin/
11+
platforms:
12+
- selector:
13+
matchLabels:
14+
os: darwin
15+
arch: arm64
16+
{{addURIAndSha "https://github.com/kubernetes/ingress-nginx/releases/download/{{ .TagName }}/kubectl-ingress-nginx_darwin_arm64.tar.gz" .TagName }}
17+
bin: kubectl-ingress-nginx
18+
- selector:
19+
matchLabels:
20+
os: darwin
21+
arch: amd64
22+
{{addURIAndSha "https://github.com/kubernetes/ingress-nginx/releases/download/{{ .TagName }}/kubectl-ingress-nginx_darwin_amd64.tar.gz" .TagName }}
23+
bin: kubectl-ingress-nginx
24+
selector:
25+
matchLabels:
26+
os: linux
27+
arch: amd64
28+
{{addURIAndSha "https://github.com/kubernetes/ingress-nginx/releases/download/{{ .TagName }}/kubectl-ingress-nginx_linux_amd64.tar.gz" .TagName }}
29+
bin: kubectl-ingress-nginx
30+
- selector:
31+
matchLabels:
32+
os: linux
33+
arch: arm64
34+
{{addURIAndSha "https://github.com/kubernetes/ingress-nginx/releases/download/{{ .TagName }}/kubectl-ingress-nginx_linux_arm64.tar.gz" .TagName }}
35+
bin: kubectl-ingress-nginx
36+
- selector:
37+
matchLabels:
38+
os: windows
39+
arch: amd64
40+
{{addURIAndSha "https://github.com/kubernetes/ingress-nginx/releases/download/{{ .TagName }}/kubectl-ingress-nginx_windows_amd64.tar.gz" .TagName }}
41+
bin: kubectl-ingress-nginx.exe

0 commit comments

Comments
 (0)