
k9s
Silent install package for k9s
0.50.10-1
Preprod packages are packages built on LUTI.
They remain in PREPROD usually for 5 days, after which a new VirusTotal scan is performed.
If the package passes this last check, it is promoted to PROD and published on the store.
- package: tis-k9s-cli
- name: k9s
- version: 0.50.10-1
- maintainer: Amel FRADJ
- licence: Apache-2.0, Unknown licenses found
- target_os: windows
- architecture: x64
- signature_date:
- size: 41.53 Mo
- homepage : k9scli.io
package : tis-k9s-cli
version : 0.50.10-1
architecture : x64
section : base
priority : optional
name : k9s
categories :
maintainer : Amel FRADJ
description : K9s provides a terminal user interface for interacting with your Kubernetes clusters
depends :
conflicts :
maturity : PREPROD
locale :
target_os : windows
min_wapt_version :
sources :
installed_size :
impacted_process :
description_fr : K9s fournit une interface utilisateur de terminal pour interagir avec vos clusters Kubernetes
description_pl : K9s zapewnia terminalowy interfejs użytkownika do interakcji z klastrami Kubernetes
description_de : K9s bietet eine Terminal-Benutzeroberfläche zur Interaktion mit Ihren Kubernetes-Clustern
description_es : K9s proporciona una interfaz de usuario de terminal para interactuar con sus clústeres Kubernetes
description_pt : O K9s fornece uma interface de utilizador de terminal para interagir com os seus clusters Kubernetes
description_it : K9s fornisce un'interfaccia utente terminale per interagire con i cluster Kubernetes
description_nl : K9s biedt een terminal gebruikersinterface voor interactie met je Kubernetes clusters
description_ru : K9s предоставляет терминальный пользовательский интерфейс для работы с кластерами Kubernetes
audit_schedule :
editor :
keywords :
licence : Apache-2.0, Unknown licenses found
homepage : k9scli.io
package_uuid : 9aecbd95-97f6-4305-97d3-53bacdf3eded
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version :
max_os_version :
icon_sha256sum : 8f31fe87680ca1af35e2c14a7751c946c5a95c440a2cd2e98cca82088db73430
signer : test
signer_fingerprint: b82fc8ef4a4475c0f69ac168176c2bfc58f572eb716c4eadd65e4785c155dd8e
signature_date : 2025-09-18T00:01:30.000000
signed_attributes : package,version,architecture,section,priority,name,categories,maintainer,description,depends,conflicts,maturity,locale,target_os,min_wapt_version,sources,installed_size,impacted_process,description_fr,description_pl,description_de,description_es,description_pt,description_it,description_nl,description_ru,audit_schedule,editor,keywords,licence,homepage,package_uuid,valid_from,valid_until,forced_install_on,changelog,min_os_version,max_os_version,icon_sha256sum,signer,signer_fingerprint,signature_date,signed_attributes
signature : Ubb9Pn9wISivww4Loo6/mdFNwjymve6td0f1g7rm2iad1TqY94SUg1fg1fnvKnF2gLNyqazi7aIk/gNeiGVuf5CZsofB6vHuFhKtXWWTr8fHmW2VjXvIqLP23uR8qGHNS0tsSLQeWQmfnZzF/dD1cvo1sVw9dodCMSfm6NEOWv61YpZ0opbg6dqrtx4MiJHS2LD1l9btQ0ZNhDTfFCl7prTI7ag2wyK+Us1c+M8Mv64hGaUvyTnfyGW+IetXYMAVFSBuWWQ473ySUw28mbgkvN97xCxcGzcruN22AdprpK6MCzU1WuzNzlGZ+5nCJc5mxl0AWBrSW/G2va8xWO+OGw==
# -*- coding: utf-8 -*-
from setuphelpers import *
"""
"""
app_name = "k9s "
editor_dir = makepath(programfiles, "k9s")
app_dir = makepath(editor_dir, "k9s")
app_path = makepath(app_dir, "k9s.exe")
audit_version = False
def get_installed_version(app_path):
return get_file_properties(app_path).get("FileVersion", "")
def install():
# Declaring local variables
zip_name = glob.glob(f"k9s_*.zip")[0]
unzipped_dir = "k9s"
# Installing software
killalltasks(ensure_list(control.impacted_process))
if isdir(app_dir) and force:
remove_tree(app_dir)
mkdirs(app_dir)
print("Extracting: %s to: %s" % (zip_name, unzipped_dir))
unzip(zip_name, unzipped_dir)
print('Copy k9s to %s' % app_dir)
copytree2(unzipped_dir, app_dir, onreplace=default_overwrite)
add_to_system_path(app_dir)
def audit():
# Auditing software
audit_status = "OK"
installed_version = get_installed_version(app_path)
if Version(installed_version) < Version(control.get_software_version()) and audit_version:
print("%s is installed in version (%s) instead of (%s)" % (app_name, installed_version, control.get_software_version()))
audit_status = "WARNING"
elif isdir(app_dir) and not dir_is_empty(app_dir):
print("%s (%s) is installed" % (app_name, installed_version))
audit_status = "OK"
else:
print("%s is not installed" % app_name)
audit_status = "ERROR"
return audit_status
def uninstall():
# Uninstalling software
killalltasks(ensure_list(control.impacted_process))
if isdir(app_dir):
remove_tree(app_dir)
if dir_is_empty(editor_dir):
remove_tree(editor_dir)
# -*- coding: utf-8 -*-
from setuphelpers import *
import re
def update_package():
# Declaring local variables
package_updated = False
proxies = get_proxies()
if not proxies:
proxies = get_proxies_from_wapt_console()
dict_arch = {
"x64" :"amd64.zip"
}
git_repo = "derailed/k9s"
url_api = "https://api.github.com/repos/%s/releases/latest" % git_repo
# Getting latest version information from official sources
print("API used is: %s" % url_api)
json_load = json.loads(wgets(url_api, proxies=proxies))
for download in json_load["assets"]:
if download["browser_download_url"].endswith(".zip") and dict_arch[control.architecture] in download["browser_download_url"] :
url_dl = download["browser_download_url"]
version = json_load["tag_name"].replace("v","")
filename = download["name"]
break
if not isfile(filename):
package_updated = True
wget(url_dl, filename, proxies=proxies)
# nettoyer les fichiers temporaires
for f in glob.glob("*.zip"):
if f != filename:
remove_file(f)
control.set_software_version(version)
control.save_control_to_wapt()
01ca7fe94636e5a08fcb73849d3b5df25d51e2c82f4dd1a08f01798b25899819 : WAPT/certificate.crt
e153935077de2fee25f38e747aef94fae4fe292f7f9e069f3f4a982bc15346d4 : WAPT/control
8f31fe87680ca1af35e2c14a7751c946c5a95c440a2cd2e98cca82088db73430 : WAPT/icon.png
fefca4a41d1a9f3efe14317df2cea72bc276123269bb58a82c03b74e2e3d1b1b : k9s_Windows_amd64.zip
bb8ee7fb14ceb65be91fd18029bba1c39ca899d7b1fd85db80866c2efcb3d447 : luti.json
40368e2f3075bd28a916edae054437e50002d8b95f24ef2a3b8a2c4a4fd88c45 : setup.py
692893568c530c5a42ebb25f3ce91bb2cab8283d22205f91a529e87f6613b653 : update_package.py