Contributions de Lli
Résultats pour Lli discuter journal des blocages téléversements journaux journal des abus
Un utilisateur avec 323 modifications. Compte créé le 29 janvier 2023.
5 juin 2025
- 15:015 juin 2025 à 15:01 diff hist +30 Accueil update fosstodon actuelle Balise : Éditeur visuel
- 14:555 juin 2025 à 14:55 diff hist −56 Grrrr DevOps Pipeline... premier gros crash 😤/en Page créée avec « </syntaxhighlight>WorkArround<syntaxhighlight lang="powershell"> $azAccountsVersion = (Get-Module -ListAvailable -Name Az.Accounts | Sort-Object Version -Descending | Select-Object -First 1).Version $dexResourceUrl = 'https://database.windows.net/' if ($azAccountsVersion -ge [Version]'5.0.0') { write-host "Az.Accounts 5.0.0 and above" $AccessTokenSecure = (Get-AzAccessToken -ResourceUrl $dexResourceUrl).Token $token = ConvertFrom-SecureString -Sec... » actuelle
- 14:555 juin 2025 à 14:55 diff hist +648 N Translations:Grrrr DevOps Pipeline... premier gros crash 😤/11/en Page créée avec « </syntaxhighlight>WorkArround<syntaxhighlight lang="powershell"> $azAccountsVersion = (Get-Module -ListAvailable -Name Az.Accounts | Sort-Object Version -Descending | Select-Object -First 1).Version $dexResourceUrl = 'https://database.windows.net/' if ($azAccountsVersion -ge [Version]'5.0.0') { write-host "Az.Accounts 5.0.0 and above" $AccessTokenSecure = (Get-AzAccessToken -ResourceUrl $dexResourceUrl).Token $token = ConvertFrom-SecureString -Sec... » actuelle
- 14:555 juin 2025 à 14:55 diff hist −56 Grrrr DevOps Pipeline... premier gros crash 😤/en Page créée avec « <syntaxhighlight lang="pwsh"> get-azaccesstoken WARNING: Upcoming breaking changes in the cmdlet 'Get-AzAccessToken' : The Token property of the output type will be changed from String to SecureString. Add the [-AsSecureString] switch to avoid the impact of this upcoming breaking change. - The change is expected to take effect in Az version : '14.0.0' - The change is expected to take effect in Az.Accounts version : '5.0.0' Note : https://aka.ms/azps-changewarnings »
- 14:555 juin 2025 à 14:55 diff hist +468 N Translations:Grrrr DevOps Pipeline... premier gros crash 😤/10/en Page créée avec « <syntaxhighlight lang="pwsh"> get-azaccesstoken WARNING: Upcoming breaking changes in the cmdlet 'Get-AzAccessToken' : The Token property of the output type will be changed from String to SecureString. Add the [-AsSecureString] switch to avoid the impact of this upcoming breaking change. - The change is expected to take effect in Az version : '14.0.0' - The change is expected to take effect in Az.Accounts version : '5.0.0' Note : https://aka.ms/azps-changewarnings » actuelle
- 14:555 juin 2025 à 14:55 diff hist −61 Grrrr DevOps Pipeline... premier gros crash 😤/en Page créée avec « Here’s the warning we should have taken seriously: » Balises : Modification par mobile Modification par le web mobile
- 14:555 juin 2025 à 14:55 diff hist +52 N Translations:Grrrr DevOps Pipeline... premier gros crash 😤/9/en Page créée avec « Here’s the warning we should have taken seriously: » actuelle
- 14:555 juin 2025 à 14:55 diff hist −59 Grrrr DevOps Pipeline... premier gros crash 😤/en Page créée avec « 🔧 Fix: you need to add the -AsPlainText parameter in some cases, or completely revise how the token is handled depending on the module version used. » Balises : Modification par mobile Modification par le web mobile
- 14:555 juin 2025 à 14:55 diff hist +151 N Translations:Grrrr DevOps Pipeline... premier gros crash 😤/8/en Page créée avec « 🔧 Fix: you need to add the -AsPlainText parameter in some cases, or completely revise how the token is handled depending on the module version used. » actuelle
- 14:545 juin 2025 à 14:54 diff hist −69 Grrrr DevOps Pipeline... premier gros crash 😤/en Page créée avec « 🎓 Lesson learned: never ignore warnings… even if they're buried deep in the logs. »
- 14:545 juin 2025 à 14:54 diff hist +86 N Translations:Grrrr DevOps Pipeline... premier gros crash 😤/7/en Page créée avec « 🎓 Lesson learned: never ignore warnings… even if they're buried deep in the logs. » actuelle
- 14:545 juin 2025 à 14:54 diff hist −73 Grrrr DevOps Pipeline... premier gros crash 😤/en Page créée avec « The worst part? Since everything runs in the backend, we don’t get any warnings, so no one saw it coming. It was only after the exports started failing that we realized what was going on. »
- 14:545 juin 2025 à 14:54 diff hist +189 N Translations:Grrrr DevOps Pipeline... premier gros crash 😤/6/en Page créée avec « The worst part? Since everything runs in the backend, we don’t get any warnings, so no one saw it coming. It was only after the exports started failing that we realized what was going on. » actuelle
- 14:545 juin 2025 à 14:54 diff hist −147 Grrrr DevOps Pipeline... premier gros crash 😤/en Page créée avec « And this Sunday… boom 💥: they updated the Az.Accounts module from version 4 to 5, with a major breaking change: The token is no longer returned as a String, but as a SecureString! The result? All the older functions that handle these tokens can’t read them anymore, and everything breaks. In production. 😩 » Balises : Modification par mobile Modification par le web mobile
- 14:545 juin 2025 à 14:54 diff hist +321 N Translations:Grrrr DevOps Pipeline... premier gros crash 😤/5/en Page créée avec « And this Sunday… boom 💥: they updated the Az.Accounts module from version 4 to 5, with a major breaking change: The token is no longer returned as a String, but as a SecureString! The result? All the older functions that handle these tokens can’t read them anymore, and everything breaks. In production. 😩 » actuelle
- 14:545 juin 2025 à 14:54 diff hist −75 Grrrr DevOps Pipeline... premier gros crash 😤/en Page créée avec « The catch? Microsoft continuously updates their backend. So the Azure Pipeline pool that runs our PowerShell scripts gets updated automatically, without any action on our part. »
- 14:545 juin 2025 à 14:54 diff hist +176 N Translations:Grrrr DevOps Pipeline... premier gros crash 😤/4/en Page créée avec « The catch? Microsoft continuously updates their backend. So the Azure Pipeline pool that runs our PowerShell scripts gets updated automatically, without any action on our part. » actuelle
- 14:535 juin 2025 à 14:53 diff hist −37 Grrrr DevOps Pipeline... premier gros crash 😤/en Page créée avec « And for that, '''we use the token obtained with the Get-AzAccessToken function<code>Get-AzAccessToken</code>'''.. » Balises : Modification par mobile Modification par le web mobile
- 14:535 juin 2025 à 14:53 diff hist +113 N Translations:Grrrr DevOps Pipeline... premier gros crash 😤/3/en Page créée avec « And for that, '''we use the token obtained with the Get-AzAccessToken function<code>Get-AzAccessToken</code>'''.. » actuelle
- 14:535 juin 2025 à 14:53 diff hist −101 Grrrr DevOps Pipeline... premier gros crash 😤/en Page créée avec « We work in a fullstack DevOps team, with scripts that call SQL procedures in thousands of Azure SQL databases, whether for maintenance, exports, cleanup… you know, the usual stuff. »
- 14:535 juin 2025 à 14:53 diff hist +182 N Translations:Grrrr DevOps Pipeline... premier gros crash 😤/2/en Page créée avec « We work in a fullstack DevOps team, with scripts that call SQL procedures in thousands of Azure SQL databases, whether for maintenance, exports, cleanup… you know, the usual stuff. » actuelle
- 14:525 juin 2025 à 14:52 diff hist −80 Grrrr DevOps Pipeline... premier gros crash 😤/en Page créée avec « I knew Microsoft had given a warning… but as usual, no one really took it seriously 😅 »
- 14:525 juin 2025 à 14:52 diff hist +90 N Translations:Grrrr DevOps Pipeline... premier gros crash 😤/1/en Page créée avec « I knew Microsoft had given a warning… but as usual, no one really took it seriously 😅 » actuelle
- 14:525 juin 2025 à 14:52 diff hist +3 355 N Grrrr DevOps Pipeline... premier gros crash 😤/en Page créée avec « Grrrr DevOps Pipeline... first major crash 😤 »
- 14:525 juin 2025 à 14:52 diff hist +47 N Translations:Grrrr DevOps Pipeline... premier gros crash 😤/Page display title/en Page créée avec « Grrrr DevOps Pipeline... first major crash 😤 » actuelle
- 14:505 juin 2025 à 14:50 diff hist +123 Grrrr DevOps Pipeline... premier gros crash 😤 Cette version a été marquée à traduire actuelle
- 14:485 juin 2025 à 14:48 diff hist +38 Grrrr DevOps Pipeline... premier gros crash 😤 Aucun résumé des modifications
- 14:115 juin 2025 à 14:11 diff hist +2 726 N Grrrr DevOps Pipeline... premier gros crash 😤 Ce week-end, un gros crash est survenu dans nos pipelines DevOps suite à la mise à jour automatique du module Az.Accounts v5 dans Azure. Le cmdlet Get-AzAccessToken retourne désormais un SecureString au lieu d’un String. Comme nos anciens scripts SQL ne savent pas le gérer, tout a planté en production. Le vrai souci : le warning existait, mais personne ne l’a vu car tout tourne dans un backend silencieux. 👉 Leçon : toujours surveiller les warnings de breaking change, même en arrière-plan. Balise : Éditeur visuel
16 mai 2025
- 14:4816 mai 2025 à 14:48 diff hist +5 Accueil Aucun résumé des modifications Balise : Éditeur visuel
- 14:4016 mai 2025 à 14:40 diff hist +33 Azure10month Aucun résumé des modifications actuelle
- 14:3816 mai 2025 à 14:38 diff hist +1 686 N Azure10month Avis (provisoire) sur le cloud Azure après 10 mois
10 novembre 2024
- 13:1010 novembre 2024 à 13:10 diff hist +13 MonNouveauJob Aucun résumé des modifications actuelle
- 11:3410 novembre 2024 à 11:34 diff hist +20 N Arch Linux Arch linux actuelle Balises : Modification par mobile Modification par le web mobile Modification par mobile en mode avancé
- 11:3310 novembre 2024 à 11:33 diff hist +20 N Alma alma actuelle Balises : Modification par mobile Modification par le web mobile Modification par mobile en mode avancé
- 11:3310 novembre 2024 à 11:33 diff hist +20 N Centos centos actuelle Balises : Modification par mobile Modification par le web mobile Modification par mobile en mode avancé
- 11:3210 novembre 2024 à 11:32 diff hist +45 N Archlinux Page créée avec « https://www.wikili.be/index.php?title=Redhat# » actuelle Balises : Modification par mobile Modification par le web mobile Modification par mobile en mode avancé
- 11:3110 novembre 2024 à 11:31 diff hist +20 N Redhat redhat actuelle Balises : Modification par mobile Modification par le web mobile Modification par mobile en mode avancé
- 11:2910 novembre 2024 à 11:29 diff hist +20 N Openshift Page créée avec « Catégorie:Cloud » actuelle Balise : Éditeur visuel : basculé
- 11:0710 novembre 2024 à 11:07 diff hist +1 453 N MonNouveauJob/en Page créée avec « With a push from a private company that offered me this opportunity, I jumped into the world of Azure SQL, Storage Accounts, Access Packages, Azure Batch, Git, and Pipelines. It’s easy to feel lost, but also to feel renewed! Gone is the comfort of well-oiled processes; here, each day is a new battle to tame the cloud. Azure is a bit like Pandora’s box: you can do everything and nothing, sometimes both at once… but what a pleasure it is to learn so much! » actuelle Balises : Modification par mobile Modification par le web mobile Modification par mobile en mode avancé
- 11:0610 novembre 2024 à 11:06 diff hist +188 N Translations:MonNouveauJob/5/en Page créée avec « So, if you’re also hesitating to change paths to learn something new, let me tell you: it’s possible, and it’s one heck of an adventure—though it’s not always easy on the ego ;-) » actuelle Balises : Modification par mobile Modification par le web mobile Modification par mobile en mode avancé
- 11:0610 novembre 2024 à 11:06 diff hist +307 N Translations:MonNouveauJob/4/en Page créée avec « Sure, I lost a bit in salary and in hierarchical responsibilities, but I gained in commute time (15-20 minutes—it’s life-changing!) and personal satisfaction. And above all, I’m lucky to keep progressing in a constantly evolving field, setting myself new challenges and staying up-to-date, even at 50! » actuelle Balises : Modification par mobile Modification par le web mobile Modification par mobile en mode avancé
- 11:0610 novembre 2024 à 11:06 diff hist +463 N Translations:MonNouveauJob/3/en Page créée avec « With a push from a private company that offered me this opportunity, I jumped into the world of Azure SQL, Storage Accounts, Access Packages, Azure Batch, Git, and Pipelines. It’s easy to feel lost, but also to feel renewed! Gone is the comfort of well-oiled processes; here, each day is a new battle to tame the cloud. Azure is a bit like Pandora’s box: you can do everything and nothing, sometimes both at once… but what a pleasure it is to learn so much! » actuelle Balises : Modification par mobile Modification par le web mobile Modification par mobile en mode avancé
- 11:0510 novembre 2024 à 11:05 diff hist +426 N Translations:MonNouveauJob/2/en Page créée avec « People often say you’re never too old to learn, but let’s be honest, it’s quite a challenge! So here it is: after years of being recognized as a “pro” in on-premises technologies—Oracle, SQL Server, Ansible, TOGAF (Archimate), security, and Veeam for backups, to name a few—I made a bold choice. At 50, I decided to trade my undisputed expert status for a deep dive into (very) murky waters: those of Azure Cloud » actuelle Balises : Modification par mobile Modification par le web mobile Modification par mobile en mode avancé
- 11:0510 novembre 2024 à 11:05 diff hist +27 N Translations:MonNouveauJob/1/en Page créée avec « My new job at 50 years old. » actuelle Balises : Modification par mobile Modification par le web mobile Modification par mobile en mode avancé
- 11:0510 novembre 2024 à 11:05 diff hist +27 N Translations:MonNouveauJob/Page display title/en Page créée avec « My new job at 50 years old. » actuelle Balises : Modification par mobile Modification par le web mobile Modification par mobile en mode avancé
- 00:4110 novembre 2024 à 00:41 diff hist +55 MonNouveauJob Cette version a été marquée à traduire
- 00:4010 novembre 2024 à 00:40 diff hist +24 MonNouveauJob Aucun résumé des modifications Balises : Modification par mobile Modification par le web mobile Modification par mobile en mode avancé
9 novembre 2024
- 23:439 novembre 2024 à 23:43 diff hist −11 Accueil Aucun résumé des modifications Balise : Éditeur visuel : basculé
- 23:379 novembre 2024 à 23:37 diff hist +115 Accueil Aucun résumé des modifications Balises : Éditeur visuel Modification par mobile Modification par le web mobile Modification par mobile en mode avancé
- 23:239 novembre 2024 à 23:23 diff hist +1 628 MonNouveauJob Aucun résumé des modifications Balises : Modification par mobile Modification par le web mobile Modification par mobile en mode avancé