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
Create a Pulumi YAML file with the above content.
Run pulumi convert as above.
Expected Behavior
I would expect my index.ts to look something like this:
import * as pulumi from "@pulumi/pulumi";
const img = new docker.Image("guins-image", {
imageName: "gsaenger/test-yaml:tag1",
skipPush: true,
build: {
context: ".",
dockerfile: "Dockerfile",
}
export const imageName = guinsImage.imageName;
Actual Behavior
Only dependency and package output is generated:
import * as pulumi from "@pulumi/pulumi";
export const imageName = guinsImage.imageName;
Output of pulumi about
n/a
Additional context
PCL also generates only the output block
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:
11570: testing: Allow plugin testing users to define their own plugin sets r=AaronFriel a=AaronFriel
Updating Pulumi YAML to address pulumi/pulumi-yaml#421 and pulumi/pulumi-yaml#422, requires testing against the Docker v4.0.0-alpha.0 schema. That required updating this repo, and using Go workspaces/module replacement to allow the deploytest plugin loader to find the prerelease schema.
This change allows Pulumi YAML to define its own set of required plugins, decoupling the two repos and preventing the catch-22 here.
Because this repo will need to support the new example being authored which will serve as a test of #421 and #422, this also adds Docker v4.0.0-alpha.0 as a schema.
Co-authored-by: Aaron Friel <mayreply@aaronfriel.com>
borsbot
added a commit
to pulumi/pulumi
that referenced
this issue
Dec 7, 2022
11570: testing: Allow plugin testing users to define their own plugin sets r=AaronFriel a=AaronFriel
Updating Pulumi YAML to address pulumi/pulumi-yaml#421 and pulumi/pulumi-yaml#422, requires testing against the Docker v4.0.0-alpha.0 schema. That required updating this repo, and using Go workspaces/module replacement to allow the deploytest plugin loader to find the prerelease schema.
This change allows Pulumi YAML to define its own set of required plugins, decoupling the two repos and preventing the catch-22 here.
Because this repo will need to support the new example being authored which will serve as a test of #421 and #422, this also adds Docker v4.0.0-alpha.0 as a schema.
Co-authored-by: Aaron Friel <mayreply@aaronfriel.com>
What happened?
I have a YAML source file:
I ran the following:
Steps to reproduce
Create a Pulumi YAML file with the above content.
Run
pulumi convert
as above.Expected Behavior
I would expect my
index.ts
to look something like this:Actual Behavior
Only dependency and package output is generated:
Output of
pulumi about
n/a
Additional context
PCL also generates only the output block
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: