Search Criteria
Package Details: kubefwd-git 1.22.3.r3.df9078d-1
Package Actions
| Git Clone URL: | https://aur.archlinux.org/kubefwd-git.git (read-only, click to copy) |
|---|---|
| Package Base: | kubefwd-git |
| Description: | kubefwd is a command line utility built to port forward multiple services within one or more namespaces on one or more Kubernetes clusters. |
| Upstream URL: | https://github.com/txn2/kubefwd |
| Keywords: | kube-forward, kubefwd |
| Licenses: | GPL |
| Conflicts: | kubefwd |
| Provides: | kubefwd |
| Replaces: | kubefwd |
| Submitter: | berk |
| Maintainer: | berk |
| Last Packager: | berk |
| Votes: | 0 |
| Popularity: | 0.000000 |
| First Submitted: | 2022-07-28 14:59 (UTC) |
| Last Updated: | 2022-07-29 07:19 (UTC) |
Latest Comments
cjimti commented on 2026-01-04 01:06 (UTC)
Hi! I'm the upstream maintainer of kubefwd. Thanks for adding this package.
I noticed the version shows as "0.0.0" when running
kubefwd version. This can be fixed by adding ldflags to the build command:```bash build() { cd "$srcdir/kubefwd" go build -ldflags "-s -w -X main.Version=${pkgver}" -o kubefwd ./cmd/kubefwd/kubefwd.go }
This will embed the version at build time and also strip debug symbols (-s -w) for a smaller binary.
Happy to co-maintain this package if you'd like help keeping it updated.
cjimti