Skip to content
View Latzox's full-sized avatar

Highlights

  • Pro

Block or report Latzox

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
Latzox/README.md

This is my work account, which I primarily use for tasks related to SWISSPERFORM.
For my personal projects and contributions, please visit my Codeberg profile:

🔗 My Personal Git Profile on Codeberg

Feel free to reach out if you have any work-related inquiries.

Pinned Loading

  1. Automates the setup and configuratio... Automates the setup and configuration of a new Azure project such as AKS with ACR integration and GitHub federated identity for secure CI/CD workflows.
    1
    function Setup-AzureProject {
    2
        <#
    3
            .SYNOPSIS
    4
            Automates the setup and configuration of a new Azure project such as AKS with ACR integration and GitHub federated identity for secure CI/CD workflows.
    5
  2. This shell script integrates AzCopy ... This shell script integrates AzCopy to sync files from a local directory to Azure Blob Storage, ensuring that only changed files are uploaded. After syncing, the script verifies file integrity by comparing the MD5 hashes of the uploaded files with their local counterparts. It parses the AzCopy job logs to identify transferred files and performs the MD5 comparison, logging any mismatches.
    1
    #!/bin/bash
    2
    
                  
    3
    # This script performs an offsite sync of locally stored backup files and does an MD5 checksum comparison between local files and their corresponding Azure Blob Storage counterparts.
    4
    # It ensures that the files have been correctly uploaded to Azure Blob Storage by comparing their MD5 hashes.
    5