Skip to content

Commit

Permalink
Merge branch 'master' into qualify-pulumi-types
Browse files Browse the repository at this point in the history
  • Loading branch information
lblackstone committed Nov 17, 2022
2 parents 59f71a5 + 201bb40 commit 2f0101c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Expand Up @@ -2,6 +2,8 @@

- Add allowNullValues boolean option to pass Null values through helm configs without having them
scrubbed (https://github.com/pulumi/pulumi-kubernetes/issues/2089)
- Add allowNullValues boolean option to pass Null values through helm configs without having them scrubbed (https://github.com/pulumi/pulumi-kubernetes/issues/2089)
- For SSA conflicts, add a note to the error message about how to resolve (https://github.com/pulumi/pulumi-kubernetes/issues/2235)
- Make room for the `resource` API in Kubernetes 1.26.0 by qualifying the type of the same name in
.NET code templates (https://github.com/pulumi/pulumi-kubernetes/pull/2237)

Expand Down
4 changes: 4 additions & 0 deletions provider/pkg/await/await.go
Expand Up @@ -196,6 +196,10 @@ func Creation(c CreateConfig) (*unstructured.Unstructured, error) {
}
outputs, err = client.Patch(
c.Context, c.Inputs.GetName(), types.ApplyPatchType, objYAML, options)

if errors.IsConflict(err) {
err = fmt.Errorf(`use the "pulumi.com/patchForce" annotation if you want to overwrite the existing values: %w`, err)
}
} else {
var options metav1.CreateOptions
if c.Preview {
Expand Down

0 comments on commit 2f0101c

Please sign in to comment.