-
Notifications
You must be signed in to change notification settings - Fork 3
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
Update build and package names #59
Conversation
mjeffryes
commented
Jun 19, 2024
- Migrate this provider to the pulumi namespace
- Update build system with ci-mgmt (including enabling respectSchemaVersion and PyPackage for codegen)
- Upgrade tfbridge and pu/pu
- regenerate SDKs
Does the PR have any schema changes?Looking good! No breaking changes found. Maintainer note: consult the runbook for dealing with any breaking changes. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would merge this now, and then we should be able to iterate with a smaller diff.
provider/resources.go
Outdated
@@ -25,7 +25,7 @@ const ( | |||
serviceMod = "service" | |||
) | |||
|
|||
func preConfigureCallback(vars resource.PropertyMap, c shim.ResourceConfig) error { | |||
func preConfigureCallback(_ resource.PropertyMap, _ shim.ResourceConfig) error { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We can just delete this function (not passing it to tfbridge.Info
).
.ci-mgmt.yaml
Outdated
provider: harness | ||
major-version: 0 | ||
makeTemplate: bridged | ||
generate-nightly-test-workflow: true |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we need the nightly workflow for this provider? We normally save that for tier 1 providers.
We don't maintain a CHANGELOG anymore. We just use GH's releases. You can just delete CHANGELOG.md and that will make the "Update Changelog" bot happy. |
with [Update build and package names · pulumi-harness/59](pulumi/pulumi-harness#59), the harness provider should be ready to add to the fleet. --------- Co-authored-by: Ian Wahbe <[email protected]>