You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
One of Docker examples sporadically hits this error:
import * as gcp from "@pulumi/gcp";
import * as docker from "@pulumi/docker";
// Create a private GCR registry.
const registry = new gcp.container.Registry("my-registry");
const registryUrl = registry.id.apply(_ =>
gcp.container.getRegistryRepository().then(reg => reg.repositoryUrl));
// Get registry info (creds and endpoint).
const imageName = registryUrl.apply(url => `${url}/myapp`);
// Build and publish the image.
const image = new docker.Image("my-image", {
build: {
context: "app"
},
imageName: imageName,
});
// Export the resulting image name
export const fullImageName = image.imageName;
export const repoDigest = image.repoDigest;
Log output
N/A
Affected Resource(s)
gcp.container.Registry
Output of pulumi about
N/A
Additional context
No response
Contributing
Vote on this issue by adding a 👍 reaction.
To contribute a fix for this issue, leave a comment (and link to your pull request, if you've opened one already).
The text was updated successfully, but these errors were encountered:
Describe what happened
Container Registry is deprecated and periodically fails. We could make this an official deprecation in pulumi-gcp.
Upstream issue has not been resolved as yet:
hashicorp/terraform-provider-google#19661
Sample program
One of Docker examples sporadically hits this error:
Log output
N/A
Affected Resource(s)
gcp.container.Registry
Output of
pulumi about
N/A
Additional context
No response
Contributing
Vote on this issue by adding a 👍 reaction.
To contribute a fix for this issue, leave a comment (and link to your pull request, if you've opened one already).
The text was updated successfully, but these errors were encountered: