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



azure/util.py [257:266]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    commands = [
        format_command(
            f"""
             kubectl create secret generic pet-blob-secret
             --from-literal accountname={args.account_name}
             --from-literal accountkey={args.account_key}
             --type=azure/blobfuse"""
        )
    ]
    run_commands(commands)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



