big-architect-71258
08/30/2022, 1:04 PMlimited-rainbow-51650
08/30/2022, 1:23 PMbig-architect-71258
08/30/2022, 1:27 PMlimited-rainbow-51650
08/30/2022, 1:29 PMbig-architect-71258
08/30/2022, 1:31 PMlimited-rainbow-51650
08/30/2022, 1:33 PMPulumi Time Provider
(the “old” name). If you create a new tag, the daily cron job in the registry will detect the new release and create a new PR in the registry repo to publish the new tag into the registry.big-architect-71258
08/30/2022, 2:08 PM--no-sign
at the end of the command like you did. Tag is still `verified`on GitHub.pulumi plugin install resource time
error: 404 HTTP error fetching plugin from <https://api.github.com/repos/pulumi/pulumi-time/releases/latest>. If this is a private GitHub repository, try providing a token via the GITHUB_TOKEN environment variable. See: <https://github.com/settings/tokens>
Is there a REST endpoint to query the registry?limited-rainbow-51650
08/31/2022, 3:22 PMbig-architect-71258
08/31/2022, 3:33 PMgithub://
download URLs are only supported after 3.35.3astra
provider, the only difference is that the astra
provider omits the repository from the download URL: <github://api.github.com/pulumiverse>
.
The spec states that it's perfectly valid to add the provider repository as well: github://${github api host}/{organization}[/{repository}]
.pulumi plugin install resource astra
shows the same 404
error.pulumi plugin install resource upstash
pulumi plugin install resource time --server <github://api.github.com/pulumiverse/pulumi-time>
pulumi
CLI uses the "default" (standard?) download path <https://api.github.com/repos/pulumi/pulumi-time/releases/latest>
instead of querying the registry for the download URL of the provider, if no --server
argument is passed.limited-rainbow-51650
08/31/2022, 3:54 PMpackage.json
, so the install script should correctly know where to download the plugin binary from:
https://github.com/pulumiverse/pulumi-time/blob/main/sdk/nodejs/package.json#L28big-architect-71258
08/31/2022, 3:55 PMpulumi plugin install
looks up the correct download url.name: Time
runtime: yaml
description: A YAML sample to show the usage of the Pulumi Time provider
configuration: {}
variables: {}
resources:
rotation:
type: time:Rotating
properties:
rotationMinutes: 1
outputs: {}
limited-rainbow-51650
08/31/2022, 5:15 PMpluginDownloadURL
in a Pulumi YAML project is merged into the code base 3 weeks ago:
https://github.com/pulumi/pulumi-yaml/pull/296
I’m trying to track down if it is already in a release. It is definitely not documented yet here: https://www.pulumi.com/docs/reference/yaml/