dazzling-sundown-39670
08/22/2023, 5:25 PMconst registryImage = docker.getRegistryImage(
{
name: "meisnate12/plex-meta-manager",
},
dockerProviderOpts
);
const image = new docker.RemoteImage(
name,
{
name: "meisnate12/plex-meta-manager",
pullTriggers: [
registryImage.then((registryImage) => registryImage.sha256Digest),
],
},
dockerProviderOpts
);
But it still wants to update the image every pulumi up
, if I select details
it shows this:
image: "sha256:9bf92ccb981db90633aef0366ba0d4cc3ee9f50d8d9f2b25599f7e84eeb355fc" => "meisnate12/plex-meta-manager"
rhythmic-kangaroo-13964
08/23/2023, 2:31 AMdazzling-sundown-39670
08/23/2023, 6:37 AMrhythmic-kangaroo-13964
08/23/2023, 6:58 AMmeisnate12/plex-meta-manager:#{GIT_SHA}#
, so in pipeline, if there is no new commit, Git SHA remains the same and it won't cause building of new image and replacement of image for pods in K8s cluster (for my case)dazzling-sundown-39670
08/23/2023, 7:13 AM