- package: tis-headlamp
- name: Headlamp
- version: 0.31.1-1
- categories: Utilities
- maintainer: WAPT Team,Tranquil IT,
- licence: opensource_free,wapt_public
- target_os: windows
- architecture: x64
- signature_date:
- size: 119.67 Mo
package : tis-headlamp
version : 0.31.1-1
architecture : x64
section : base
priority : optional
name : Headlamp
categories : Utilities
maintainer : WAPT Team,Tranquil IT,
description : Headlamp is an easy-to-use and extensible Kubernetes GUI
depends :
conflicts :
maturity : PROD
locale :
target_os : windows
min_wapt_version : 2.3
sources :
installed_size :
impacted_process :
description_fr : Headlamp est une interface utilisateur graphique Kubernetes facile à utiliser et extensible
description_pl : Headlamp to łatwy w użyciu i rozszerzalny graficzny interfejs użytkownika Kubernetes
description_de : Headlamp ist eine einfach zu bedienende und erweiterbare grafische Kubernetes-Benutzeroberfläche
description_es : Headlamp es una interfaz gráfica de usuario de Kubernetes fácil de usar y extensible
description_pt : O Headlamp é uma interface gráfica de utilizador Kubernetes fácil de utilizar e extensível
description_it : Headlamp è un'interfaccia grafica Kubernetes facile da usare ed estensibile
description_nl : Headlamp is een gebruiksvriendelijke en uitbreidbare grafische gebruikersinterface voor Kubernetes
description_ru : Headlamp - это простой в использовании и расширяемый графический пользовательский интерфейс Kubernetes
audit_schedule :
editor :
keywords :
licence : opensource_free,wapt_public
homepage :
package_uuid : 3ddffc70-0384-4e6d-b052-2ff4d32fd10a
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version :
max_os_version :
icon_sha256sum : 1f0c3421edbb3772bdd6527ef409633fdd37ef618f01ef2521161244951c5ef7
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date : 2025-06-10T17:05:39.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 : pWS/P3PYti2upEjz/nTlFpbJ8tbNM+x8rD8VnISGszcicUpnQzFrO4HY1W1+QExQhId6oOfN+2M9YfXBng3+X/kO9zUAKu0+tPXT10sr90neb0/4bt8d5nHKm7xfAryseSRlk/efv4s9ygjtrW6fkN/u9b10auLeQx1+XysPq2+AXbR448CXuyTd1RftGuTiL25FVWa5LKXa5m4gseOHq9YHorjEtcz5RsRfR3ERHHLfjUWAjc5RSFHYEIHj0Z3Vsfyi1Y5Zi46ubH2AmfvPmG8OVwgc5mq1416JBR01PS9NThtfgPmpX9Yh5PiFt4Qispy4nn5+5aGWuTgQmrjAKg==
# -*- coding: utf-8 -*-
from setuphelpers import *
r"""
Usable WAPT package functions: install(), uninstall(), session_setup(), audit(), update_package()
"""
# Declaring global variables - Warnings: 1) WAPT context is only available in package functions; 2) Global variables are not persistent between calls
def install():
# Declaring local variables
bin_name = glob.glob('Headlamp-*.exe')[0]
# Installing the software
install_exe_if_needed(bin_name,
silentflags='/S /ALLUSERS',
key='d24ad94a-d320-5504-bf77-34b71a6f1c7d',
min_version=control.get_software_version()
)
# -*- coding: utf-8 -*-
from setuphelpers import *
from setupdevhelpers import *
import json
# Declaring global variables - Warnings: 1) WAPT context is only available in package functions; 2) Global variables are not persistent between calls
def update_package():
result = False
proxies = get_proxies()
if not proxies:
proxies = get_proxies_from_wapt_console()
git_repo = "headlamp-k8s/headlamp"
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('.exe') :
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('*.exe'):
if f != filename:
remove_file(f)
version =get_version_from_binary(filename)
control.set_software_version(version)
control.save_control_to_wapt()
a5d99a9df519b7352de03b6e6e661b5936c3b7575abb3cbf8eb1ec0019d2f9a7 : Headlamp-0.31.1-win-x64.exe
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
049527b81ba7e41c69690eb181a335dc35695dbf7e7c2044e8afa520305f9e8c : WAPT/control
1f0c3421edbb3772bdd6527ef409633fdd37ef618f01ef2521161244951c5ef7 : WAPT/icon.png
c4c952b4392b7cc39e4ee91bc6ec00ef5ad6c7a5025b345e1dff586a17cc9e92 : luti.json
d0cbe5817488f8a8f78ed72d7a3c09aa091941ea47e2be6ac4ad8f5e8dd2fffc : setup.py
72ff37127dd1f928e9b2e77a59f9f8236764c3cfbcc0aedd74cdf86d8309d293 : update_package.py