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

Update pulumi deps #1588

Merged
merged 2 commits into from
May 26, 2021
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
## HEAD (Unreleased)

- Automatically mark Secret data as Pulumi secrets. (https://github.com/pulumi/pulumi-kubernetes/pull/1577)
- Update pulumi dependency (https://github.com/pulumi/pulumi-kubernetes/pull/1588)
- [codegen] Automatically encrypt secret input parameters (https://github.com/pulumi/pulumi/pull/7128)
- [sdk/python] Nondeterministic import ordering fix from (https://github.com/pulumi/pulumi/pull/7126)

## 3.2.0 (May 19, 2021)

Expand Down
16 changes: 0 additions & 16 deletions provider/cmd/pulumi-gen-kubernetes/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -206,10 +206,6 @@ func writeNodeJSClient(pkg *schema.Package, outdir, templateDir string) {
panic(err)
}

// Manually override the generated file.
// TODO: remove once https://github.com/pulumi/pulumi/issues/7062 is done.
files["core/v1/secret.ts"] = mustLoadFile(filepath.Join(templateDir, "corev1", "secret.ts"))

// Internal files that don't need to be exported
files["path.ts"] = mustLoadFile(filepath.Join(templateDir, "path.ts"))
files["tests/path.ts"] = mustLoadFile(filepath.Join(templateDir, "tests", "path.ts"))
Expand Down Expand Up @@ -249,10 +245,6 @@ func writePythonClient(pkg *schema.Package, outdir string, templateDir string) {
panic(err)
}

// Manually override the generated file.
// TODO: remove once https://github.com/pulumi/pulumi/issues/7062 is done.
files["pulumi_kubernetes/core/v1/Secret.py"] = mustLoadFile(filepath.Join(templateDir, "corev1", "Secret.py"))

mustWriteFiles(outdir, files)
}

Expand Down Expand Up @@ -295,10 +287,6 @@ func writeDotnetClient(pkg *schema.Package, outdir, templateDir string) {
panic(err)
}

// Manually override the generated file.
// TODO: remove once https://github.com/pulumi/pulumi/issues/7062 is done.
files["Core/V1/Secret.cs"] = mustLoadFile(filepath.Join(templateDir, "corev1", "Secret.cs"))

for filename, contents := range files {
path := filepath.Join(outdir, filename)

Expand Down Expand Up @@ -350,10 +338,6 @@ func writeGoClient(pkg *schema.Package, outdir string, templateDir string) {
files["kubernetes/yaml/transformation.go"] = mustLoadGoFile(filepath.Join(templateDir, "yaml", "transformation.go"))
files["kubernetes/yaml/yaml.go"] = mustRenderGoTemplate(filepath.Join(templateDir, "yaml", "yaml.tmpl"), templateResources)

// Manually override the generated file.
// TODO: remove once https://github.com/pulumi/pulumi/issues/7062 is done.
files["kubernetes/core/v1/secret.go"] = mustLoadGoFile(filepath.Join(templateDir, "corev1", "secret.go"))

mustWriteFiles(outdir, files)
}

Expand Down
4 changes: 2 additions & 2 deletions provider/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ require (
github.com/onsi/ginkgo v1.12.0 // indirect
github.com/onsi/gomega v1.9.0 // indirect
github.com/pkg/errors v0.9.1
github.com/pulumi/pulumi/pkg/v3 v3.2.2-0.20210512083603-840c7a5a13c1
github.com/pulumi/pulumi/sdk/v3 v3.2.1
github.com/pulumi/pulumi/pkg/v3 v3.3.2-0.20210526220051-aeb6857f7f29
github.com/pulumi/pulumi/sdk/v3 v3.3.1
github.com/stretchr/testify v1.7.0
google.golang.org/grpc v1.34.0
helm.sh/helm/v3 v3.5.4
Expand Down
6 changes: 2 additions & 4 deletions provider/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -924,10 +924,8 @@ github.com/prometheus/procfs v0.1.3/go.mod h1:lV6e/gmhEcM9IjHGsFOCxxuZ+z1YqCvr4O
github.com/prometheus/procfs v0.2.0 h1:wH4vA7pcjKuZzjF7lM8awk4fnuJO6idemZXoKnULUx4=
github.com/prometheus/procfs v0.2.0/go.mod h1:lV6e/gmhEcM9IjHGsFOCxxuZ+z1YqCvr4OA4YeYWdaU=
github.com/prometheus/tsdb v0.7.1/go.mod h1:qhTCs0VvXwvX/y3TZrWD7rabWM+ijKTux40TwIPHuXU=
github.com/pulumi/pulumi/pkg/v3 v3.2.2-0.20210512083603-840c7a5a13c1 h1:1Zf0yK8DVBMTi4zQQFjlZwCEOxRYpHB/K9pO+VD7TwQ=
github.com/pulumi/pulumi/pkg/v3 v3.2.2-0.20210512083603-840c7a5a13c1/go.mod h1:4tJvvOrPhg3xDP7PVsgKJdh+0jcVCp2fy1cIPMsRRA8=
github.com/pulumi/pulumi/sdk/v3 v3.2.1 h1:gHeuYmOR/GSDYhGJfdTbY8SVEHyIts4pq6wiuIXZyfc=
github.com/pulumi/pulumi/sdk/v3 v3.2.1/go.mod h1:GBHyQ7awNQSRmiKp/p8kIKrGrMOZeA/k2czoM/GOqds=
github.com/pulumi/pulumi/sdk/v3 v3.3.1 h1:E64NheQ5X2fz3DcQsZ7lDV7js51GNFPnXiXWfPCACnE=
github.com/pulumi/pulumi/sdk/v3 v3.3.1/go.mod h1:GBHyQ7awNQSRmiKp/p8kIKrGrMOZeA/k2czoM/GOqds=
github.com/qri-io/starlib v0.4.2-0.20200213133954-ff2e8cd5ef8d/go.mod h1:7DPO4domFU579Ga6E61sB9VFNaniPVwJP5C4bBCu3wA=
github.com/quasilyte/go-consistent v0.0.0-20190521200055-c6f3937de18c/go.mod h1:5STLWrekHfjyYwxBRVRXNOSewLJ3PWfDJd1VyTS21fI=
github.com/rcrowley/go-metrics v0.0.0-20181016184325-3113b8401b8a/go.mod h1:bCqnVzQkZxMG4s8nGwiZ5l3QUCyqpo9Y+/ZMZ9VjZe4=
Expand Down
348 changes: 0 additions & 348 deletions provider/pkg/gen/_go-templates/corev1/secret.go

This file was deleted.

207 changes: 0 additions & 207 deletions provider/pkg/gen/dotnet-templates/corev1/Secret.cs

This file was deleted.

Loading