Add snapcraft config (#2123)

* Add snapcraft config

* Update snapcraft config
mine
Aleksei Romanenko 2023-11-12 13:02:39 -05:00 committed by GitHub
parent 46a1ed0cf1
commit 79a2d50bb2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 42 additions and 0 deletions

42
snap/snapcraft.yaml Normal file
View File

@ -0,0 +1,42 @@
name: k9s
base: core20
version: 'v0.27.4'
summary: K9s is a CLI to view and manage your Kubernetes clusters.
description: |
K9s is a CLI to view and manage your Kubernetes clusters. By leveraging a terminal UI, you can easily traverse Kubernetes resources and view the state of you clusters in a single powerful session.
grade: stable
confinement: classic
architectures:
- amd64
- arm64
- armhf
- i386
plugs:
kube-config:
interface: personal-files
read:
- $HOME/.kube/config
apps:
k9s:
command: bin/k9s
plugs:
- network
- network-bind
- home
- kube-config
parts:
build:
plugin: go
source: https://github.com/derailed/k9s.git
source-tag: $SNAPCRAFT_PROJECT_VERSION
override-build: |
make test
make build
install $SNAPCRAFT_PART_BUILD/execs/k9s -D $SNAPCRAFT_PART_INSTALL/bin/k9s
build-packages:
- build-essential