
Argocd-cli
Silent install package for Argocd-cli
2.14.16-1
- package: tis-argocd-cli
- name: Argocd-cli
- version: 2.14.16-1
- maintainer: WAPT Team,Tranquil IT,Amel FRADJ
- licence: Apache-2.0 license
- target_os: windows
- architecture: x64
- signature_date:
- size: 77.75 Mo
- homepage : https://argoproj.github.io/
package : tis-argocd-cli
version : 2.14.16-1
architecture : x64
section : base
priority : optional
name : Argocd-cli
categories :
maintainer : WAPT Team,Tranquil IT,Amel FRADJ
description : Argo CD is a GitOps declarative continuous delivery tool for Kubernetes
depends :
conflicts :
maturity : PROD
locale :
target_os : windows
min_wapt_version :
sources :
installed_size :
impacted_process :
description_fr : Argo CD est un outil de livraison continue déclaratif GitOps pour Kubernetes
description_pl : Argo CD to deklaratywne narzędzie GitOps do ciągłego dostarczania dla Kubernetes
description_de : Argo CD ist ein deklaratives GitOps-Tool zur kontinuierlichen Lieferung für Kubernetes
description_es : Argo CD es una herramienta de entrega continua declarativa de GitOps para Kubernetes
description_pt : O Argo CD é uma ferramenta de entrega contínua declarativa do GitOps para Kubernetes
description_it : Argo CD è uno strumento di continuous delivery dichiarativo GitOps per Kubernetes
description_nl : Argo CD is een GitOps declaratieve continuous delivery tool voor Kubernetes
description_ru : Argo CD - это декларативный инструмент непрерывной доставки GitOps для Kubernetes
audit_schedule :
editor :
keywords :
licence : Apache-2.0 license
homepage : https://argoproj.github.io/
package_uuid : 99deb8bd-876e-48e3-8454-d6303c346110
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version :
max_os_version :
icon_sha256sum : 8ff8f27adcae8dbcf586c4ff9f58aea49453f1cd23cac2ed6850b99fabd4ae1f
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date : 2025-09-10T00:27:09.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 : NT7qJLlFtmWM+0JIn1/7VYQIgQBqn5lofGQ93eE432/NUgnhwA55DG2DyPaM1/tnLzIZhHYeL/TXzdLzY2ztXuy6VcpxwmHyIWfYcIeg3L3KvBFDh6DCiJL2KiEAq+/dd/EULLKCSkmIHgpK+v00TTxoyn0UIv2H14/ydPiD4COuXtDQbtTEvbHix25b80IWRwV3p39gAP06UtPkK6JlP9oKQfNXjqrgW3tdpv0BjDUazvNcJeecv6neT2jXHDtW1U7lg4FyA9eUOMiU6jug08D2HDuM6px30rBR7yfVkd1fS9h84fO+D6NEc9Le/3XqZwEB70xhOcV5AIJwbLkz3w==
# -*- coding: utf-8 -*-
from setuphelpers import *
import glob
app_name = "argocd"
app_dir = makepath(programfiles, app_name)
def install():
bin_name = glob.glob('*.exe')[0]
app_path = makepath(app_dir, bin_name)
# Installing software
killalltasks(ensure_list(control.impacted_process))
if isdir(app_dir) and force:
remove_tree(app_dir)
mkdirs(app_dir)
filecopyto(bin_name, app_path)
add_to_system_path(app_dir)
def uninstall():
# Uninstalling software
killalltasks(ensure_list(control.impacted_process))
for uninstall in installed_softwares('argocd'):
uninstall_string = uninstall.get("uninstall_string", "")
print(f"Uninstalling argocd: {uninstall_string}")
run(f"{uninstall_string} --uninstall --uninstall -s")
wait_uninstallkey_absent(uninstall['key'],max_loop=600)
if isdir(app_dir):
remove_tree(app_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()
update_dict = {
"x64" :"argocd-windows-amd64.exe"
}
git_repo = "argoproj/argo-cd"
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") and update_dict[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("*.exe"):
if f != filename:
remove_file(f)
control.set_software_version(version)
control.save_control_to_wapt()
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
fd8107a7fd9017064f4fe84189de6c25ebc91592e74c765be1b76561f09fa4e0 : WAPT/control
8ff8f27adcae8dbcf586c4ff9f58aea49453f1cd23cac2ed6850b99fabd4ae1f : WAPT/icon.png
ca34ddea5ad0e71e435e73c671b942401c8ae0899a27d30fdb86e5f4ae6300b4 : argocd-windows-amd64.exe
903671c24238c6b1ae25006250fba2655e75364b16140e13d2cbf82d89a3e6d9 : luti.json
c4ff15220b171f9cc456fa84d56297fc7bb32c692be11edcdbfd6ce87d2fd493 : setup.py
f469320d3d2af183e3b76eef96eac6d46c3d0e1ef95c3fa80b84b80de37715b0 : update_package.py