azure/util.py [207:215]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        commands = [
            format_command(
                f"""
                 azcopy copy "{args.source_path}"
                 "{destination}"
                 --recursive=True"""
            )
        ]
        run_commands(commands)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



azure/util.py [282:293]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    commands = [
        format_command(
            f"""
             kubectl create secret
             docker-registry pet-docker-secret
             --docker-server={args.server}
             --docker-username={args.username}
             --docker-password={args.password}
             --docker-email='test@test.com'"""
        )
    ]
    run_commands(commands)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



