Skip to content

Commit

Permalink
Updates dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
scav committed Jul 5, 2022
1 parent 80f78a3 commit c608cdf
Show file tree
Hide file tree
Showing 14 changed files with 1,659 additions and 438 deletions.
16 changes: 12 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,23 @@
# Pulumi Flux Provider

The Pulumi Flux Provider lets you manage [Flux](http://fluxcd.io/) resources to bootstrap a Flux installation on Kubernetes
The Pulumi Flux Provider lets you create [Flux](http://fluxcd.io/) manifests used to bootstrap a Flux installation on Kubernetes.
This provider does not apply them, it only creates the manifests.

## Installing

This package is currently only distributed for Go through Github.
Installing plugin, replacing $TAG with the current release
```bash
pulumi plugin install resource flux $TAG --server https://github.com/scav/pulumi-flux/releases/download/$TAG/
```

### Go

To use from Go, use `go get` to grab the latest version of the library:

```bash
go get github.com/scav/pulumi-flux/sdk
```

### Node

```bash
npm install @scav/pulumi-flux
```
1,525 changes: 1,525 additions & 0 deletions examples/go.sum

Large diffs are not rendered by default.

72 changes: 36 additions & 36 deletions provider/cmd/pulumi-resource-flux/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,42 @@
"meta": {
"moduleFormat": "(.*)(?:/[^/]*)"
},
"language": {
"csharp": {
"compatibility": "tfbridge20",
"namespaces": null,
"packageReferences": {
"Pulumi": "3.*"
}
},
"go": {
"generateExtraInputTypes": true,
"generateResourceContainerTypes": true,
"importBasePath": "github.com/scav/pulumi-flux/sdk/go/flux"
},
"nodejs": {
"compatibility": "tfbridge20",
"dependencies": {
"@pulumi/pulumi": "^3.0.0"
},
"devDependencies": {
"@types/mime": "^2.0.0",
"@types/node": "^10.0.0"
},
"disableUnionOutputTypes": true,
"packageDescription": "A Pulumi package for bootstrapping Flux in Kubernetes.",
"packageName": "@scav/pulumi-flux",
"readme": "\u003e This provider is a derived work of the [Terraform Provider](https://github.com/fluxcd/terraform-provider-flux)\n\u003e distributed under [MPL 2.0](https://www.mozilla.org/en-US/MPL/2.0/). If you encounter a bug or missing feature,\n\u003e first check the [`pulumi/pulumi-flux` repo](https://github.com/pulumi/pulumi-flux/issues); however, if that doesn't turn up anything,\n\u003e please consult the source [`fluxcd/terraform-provider-flux` repo](https://github.com/fluxcd/terraform-provider-flux/issues).",
"typescriptVersion": ""
},
"python": {
"compatibility": "tfbridge20",
"readme": "\u003e This provider is a derived work of the [Terraform Provider](https://github.com/fluxcd/terraform-provider-flux)\n\u003e distributed under [MPL 2.0](https://www.mozilla.org/en-US/MPL/2.0/). If you encounter a bug or missing feature,\n\u003e first check the [`pulumi/pulumi-flux` repo](https://github.com/pulumi/pulumi-flux/issues); however, if that doesn't turn up anything,\n\u003e please consult the source [`fluxcd/terraform-provider-flux` repo](https://github.com/fluxcd/terraform-provider-flux/issues).",
"requires": {
"pulumi": "\u003e=3.0.0,\u003c4.0.0"
}
}
},
"config": {},
"provider": {
"description": "The provider type for the flux package. By default, resources use package-wide configuration\nsettings, however an explicit `Provider` instance may be created and passed during resource\nconstruction to achieve fine-grained programmatic control over provider settings. See the\n[documentation](https://www.pulumi.com/docs/reference/programming-model/#providers) for more information.\n"
Expand Down Expand Up @@ -278,41 +314,5 @@
]
}
}
},
"language": {
"csharp": {
"compatibility": "tfbridge20",
"namespaces": null,
"packageReferences": {
"Pulumi": "3.*"
}
},
"go": {
"generateExtraInputTypes": true,
"generateResourceContainerTypes": true,
"importBasePath": "github.com/scav/pulumi-flux/sdk/go/flux"
},
"nodejs": {
"compatibility": "tfbridge20",
"dependencies": {
"@pulumi/pulumi": "^3.0.0"
},
"devDependencies": {
"@types/mime": "^2.0.0",
"@types/node": "^10.0.0"
},
"disableUnionOutputTypes": true,
"packageDescription": "A Pulumi package for bootstrapping Flux in Kubernetes.",
"packageName": "@scav/pulumi-flux",
"readme": "\u003e This provider is a derived work of the [Terraform Provider](https://github.com/fluxcd/terraform-provider-flux)\n\u003e distributed under [MPL 2.0](https://www.mozilla.org/en-US/MPL/2.0/). If you encounter a bug or missing feature,\n\u003e first check the [`pulumi/pulumi-flux` repo](https://github.com/pulumi/pulumi-flux/issues); however, if that doesn't turn up anything,\n\u003e please consult the source [`fluxcd/terraform-provider-flux` repo](https://github.com/fluxcd/terraform-provider-flux/issues).",
"typescriptVersion": ""
},
"python": {
"compatibility": "tfbridge20",
"readme": "\u003e This provider is a derived work of the [Terraform Provider](https://github.com/fluxcd/terraform-provider-flux)\n\u003e distributed under [MPL 2.0](https://www.mozilla.org/en-US/MPL/2.0/). If you encounter a bug or missing feature,\n\u003e first check the [`pulumi/pulumi-flux` repo](https://github.com/pulumi/pulumi-flux/issues); however, if that doesn't turn up anything,\n\u003e please consult the source [`fluxcd/terraform-provider-flux` repo](https://github.com/fluxcd/terraform-provider-flux/issues).",
"requires": {
"pulumi": "\u003e=3.0.0,\u003c4.0.0"
}
}
}
}
28 changes: 17 additions & 11 deletions provider/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ replace (
)

require (
github.com/fluxcd/terraform-provider-flux v0.15.1
github.com/pulumi/pulumi-terraform-bridge/v3 v3.24.1
github.com/pulumi/pulumi/sdk/v3 v3.33.1
github.com/fluxcd/terraform-provider-flux v0.15.3
github.com/pulumi/pulumi-terraform-bridge/v3 v3.25.2
github.com/pulumi/pulumi/sdk/v3 v3.35.2
)

require (
Expand Down Expand Up @@ -40,6 +40,7 @@ require (
github.com/Microsoft/go-winio v0.5.2 // indirect
github.com/PuerkitoBio/purell v1.1.1 // indirect
github.com/PuerkitoBio/urlesc v0.0.0-20170810143723-de5bf2ad4578 // indirect
github.com/aead/chacha20 v0.0.0-20180709150244-8b13a72661da // indirect
github.com/agext/levenshtein v1.2.3 // indirect
github.com/apparentlymart/go-cidr v1.1.0 // indirect
github.com/apparentlymart/go-textseg/v13 v13.0.0 // indirect
Expand All @@ -65,18 +66,19 @@ require (
github.com/dimchansky/utfbom v1.1.1 // indirect
github.com/djherbis/times v1.5.0 // indirect
github.com/dustin/go-humanize v1.0.0 // indirect
github.com/edsrzf/mmap-go v1.1.0 // indirect
github.com/emirpasic/gods v1.12.0 // indirect
github.com/ettle/strcase v0.1.1 // indirect
github.com/evanphx/json-patch v4.12.0+incompatible // indirect
github.com/fatih/color v1.13.0 // indirect
github.com/fluxcd/flux2 v0.31.1 // indirect
github.com/fluxcd/kustomize-controller/api v0.26.1 // indirect
github.com/fluxcd/flux2 v0.31.3 // indirect
github.com/fluxcd/kustomize-controller/api v0.26.2 // indirect
github.com/fluxcd/pkg/apis/acl v0.0.3 // indirect
github.com/fluxcd/pkg/apis/kustomize v0.4.2 // indirect
github.com/fluxcd/pkg/apis/meta v0.14.2 // indirect
github.com/fluxcd/pkg/kustomize v0.5.2 // indirect
github.com/fluxcd/pkg/untar v0.1.0 // indirect
github.com/fluxcd/source-controller/api v0.25.5 // indirect
github.com/fluxcd/source-controller/api v0.25.9 // indirect
github.com/gedex/inflector v0.0.0-20170307190818-16278e9db813 // indirect
github.com/go-errors/errors v1.0.1 // indirect
github.com/go-logr/logr v1.2.3 // indirect
Expand Down Expand Up @@ -114,7 +116,7 @@ require (
github.com/hashicorp/go-uuid v1.0.3 // indirect
github.com/hashicorp/go-version v1.4.0 // indirect
github.com/hashicorp/hcl v1.0.0 // indirect
github.com/hashicorp/hcl/v2 v2.11.1 // indirect
github.com/hashicorp/hcl/v2 v2.12.0 // indirect
github.com/hashicorp/hil v0.0.0-20190212132231-97b3a9cdfa93 // indirect
github.com/hashicorp/logutils v1.0.0 // indirect
github.com/hashicorp/terraform-plugin-go v0.9.0 // indirect
Expand Down Expand Up @@ -155,6 +157,7 @@ require (
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/modern-go/reflect2 v1.0.2 // indirect
github.com/monochromegane/go-gitignore v0.0.0-20200626010858-205db1a8cc00 // indirect
github.com/natefinch/atomic v1.0.1 // indirect
github.com/opentracing/basictracer-go v1.1.0 // indirect
github.com/opentracing/opentracing-go v1.2.0 // indirect
github.com/pgavlin/goldmark v1.1.33-0.20200616210433-b5eb04559386 // indirect
Expand All @@ -163,9 +166,9 @@ require (
github.com/pkg/term v1.1.0 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/posener/complete v1.2.3 // indirect
github.com/pulumi/pulumi-java/pkg v0.2.0 // indirect
github.com/pulumi/pulumi-yaml v0.3.0 // indirect
github.com/pulumi/pulumi/pkg/v3 v3.33.1 // indirect
github.com/pulumi/pulumi-java/pkg v0.4.0 // indirect
github.com/pulumi/pulumi-yaml v0.5.2 // indirect
github.com/pulumi/pulumi/pkg/v3 v3.35.2 // indirect
github.com/pulumi/terraform-diff-reader v0.0.0-20201211191010-ad4715e9285e // indirect
github.com/rivo/uniseg v0.2.0 // indirect
github.com/rjeczalik/notify v0.9.2 // indirect
Expand All @@ -174,6 +177,8 @@ require (
github.com/ryanuber/go-glob v1.0.0 // indirect
github.com/sabhiram/go-gitignore v0.0.0-20210923224102-525f6e181f06 // indirect
github.com/santhosh-tekuri/jsonschema/v5 v5.0.0 // indirect
github.com/segmentio/asm v1.1.3 // indirect
github.com/segmentio/encoding v0.3.5 // indirect
github.com/sergi/go-diff v1.2.0 // indirect
github.com/spf13/afero v1.6.0 // indirect
github.com/spf13/cast v1.4.1 // indirect
Expand Down Expand Up @@ -216,7 +221,7 @@ require (
google.golang.org/api v0.74.0 // indirect
google.golang.org/appengine v1.6.7 // indirect
google.golang.org/genproto v0.0.0-20220405205423-9d709892a2bf // indirect
google.golang.org/grpc v1.45.0 // indirect
google.golang.org/grpc v1.47.0 // indirect
google.golang.org/protobuf v1.28.0 // indirect
gopkg.in/AlecAivazis/survey.v1 v1.8.9-0.20200217094205-6773bdf39b7f // indirect
gopkg.in/inf.v0 v0.9.1 // indirect
Expand All @@ -231,6 +236,7 @@ require (
k8s.io/klog/v2 v2.60.1 // indirect
k8s.io/kube-openapi v0.0.0-20220401212409-b28bf2818661 // indirect
k8s.io/utils v0.0.0-20220210201930-3a6ce19ff2f9 // indirect
lukechampine.com/frand v1.4.2 // indirect
sigs.k8s.io/controller-runtime v0.11.2 // indirect
sigs.k8s.io/json v0.0.0-20211208200746-9f7c6b3444d2 // indirect
sigs.k8s.io/kustomize/api v0.11.5 // indirect
Expand Down
Loading

0 comments on commit c608cdf

Please sign in to comment.