Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Job awaiter status regression #2298

Closed
lblackstone opened this issue Feb 1, 2023 · 0 comments · Fixed by #2299
Closed

Job awaiter status regression #2298

lblackstone opened this issue Feb 1, 2023 · 0 comments · Fixed by #2299
Labels
area/await-logic impact/usability Something that impacts users' ability to use the product easily and intuitively kind/bug Some behavior is incorrect or out of spec resolution/fixed This issue was fixed

Comments

@lblackstone
Copy link
Member

What happened?

#1856 appears to have caused a regression in the status output shown for Job resources.

Expected Behavior

#633 shows an example of how this looked previously.

Steps to reproduce

Run the following program and observe that no intermediate status is reported for the Job resource.

import * as k8s from "@pulumi/kubernetes";

new k8s.batch.v1.Job("foo", {
    spec: {
        template: {
            spec: {
                containers: [
                    {
                        name: "pi",
                        image: "perl:5.34.0",
                        command: ["perl",  "-Mbignum=bpi", "-wle", "print bpi(2000)"],
                    }
                ],
                restartPolicy: "Never"
            }
        },
    }
};

Output of pulumi about

pulumi about
CLI
Version      3.53.1
Go Version   go1.19.5
Go Compiler  gc

Plugins
NAME        VERSION
kubernetes  3.23.1
nodejs      unknown

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).

@lblackstone lblackstone added impact/usability Something that impacts users' ability to use the product easily and intuitively kind/bug Some behavior is incorrect or out of spec area/await-logic labels Feb 1, 2023
@pulumi-bot pulumi-bot added the resolution/fixed This issue was fixed label Feb 6, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area/await-logic impact/usability Something that impacts users' ability to use the product easily and intuitively kind/bug Some behavior is incorrect or out of spec resolution/fixed This issue was fixed
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants