tis-headlamp icon

Headlamp

Paquet d’installation silencieuse pour Headlamp

0.29.0-1

  • package: tis-headlamp
  • name: Headlamp
  • version: 0.29.0-1
  • categories: Utilities
  • maintainer: WAPT Team,Tranquil IT,
  • licence: opensource_free,wapt_public
  • target_os: windows
  • architecture: x64
  • signature_date:
  • size: 115.71 Mo

package           : tis-headlamp
version           : 0.29.0-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      : 0b40c029-639d-4bb2-8057-e7c497960985
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-03-03T17:00:20.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         : e9jNXR8+PqBMAdzOOayNYLWuZL12ZCwFRCiYURnHMVF6mbN2t7ZSfGPtr55zip8pLpFfSPylrniNbvqztIx6Xi4aV+98l6sDdaPKUYH6ymZzeSLhO838RyTbltG6iqeZzK0vVLSSaRyxACsmk3WLWsYfHu4/011vvt9WVAXlfFoOK3taGktUKuAmSMB/emwld9y7BnOuEew9s3yQRxiBv3La3w/HbYDDw5B/fYmcAtVeGHVGxLscmTapwBAcGRQIEI9W256AydJ8n6Z4xGMGk/Z+UaKO1s2pnnTLYx+6aiIt6rkT99TdNPkyiUmro9bXHGVj2QMwk3OPEJeJ5PPHXw==

# -*- 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()

132c89612c6a7151a0721448203f5c8bfed2897543b33c55e5a73c38829329f0 : Headlamp-0.29.0-win-x64.exe
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
ebfbc85d531817a72f9aa0ec7fb3e77a96cd78572f61d738b68f2480815bdbea : WAPT/control
1f0c3421edbb3772bdd6527ef409633fdd37ef618f01ef2521161244951c5ef7 : WAPT/icon.png
64c73e1d78fce4fb3d5cc8469af7d9cf03bc0b342d00451bcc3ecceeead9d591 : luti.json
d0cbe5817488f8a8f78ed72d7a3c09aa091941ea47e2be6ac4ad8f5e8dd2fffc : setup.py
72ff37127dd1f928e9b2e77a59f9f8236764c3cfbcc0aedd74cdf86d8309d293 : update_package.py