mirror of
https://github.com/kubernetes-sigs/external-dns.git
synced 2025-08-06 17:46:57 +02:00
9 lines
169 B
Bash
Executable File
9 lines
169 B
Bash
Executable File
#!/bin/bash
|
|
|
|
IMAGE=$1
|
|
|
|
echo -n "image: "
|
|
crane digest "${IMAGE}"
|
|
echo "architecture"
|
|
crane manifest "${IMAGE}" | jq -r '.manifests.[] | .platform.architecture, .digest'
|