-
Notifications
You must be signed in to change notification settings - Fork 99
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(libs/crossplane): update grafana provider to v0.20.0 (#476)
- Loading branch information
Showing
1 changed file
with
6 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
local config = import 'jsonnet/config.jsonnet'; | ||
|
||
local upbound_aws_crds = import './upbound_aws_crds.libsonnet'; | ||
local upbound_gcp_crds = import './upbound_gcp_crds.libsonnet'; | ||
local upbound_azure_crds = import './upbound_azure_crds.libsonnet'; | ||
local upbound_gcp_crds = import './upbound_gcp_crds.libsonnet'; | ||
|
||
config.new( | ||
name='crossplane', | ||
|
@@ -90,23 +90,23 @@ config.new( | |
|
||
// Grafana | ||
{ | ||
output: 'provider-grafana/0.18', | ||
output: 'provider-grafana/0.20', | ||
prefix: '^io\\.crossplane\\.grafana\\..*', | ||
crds: ['https://github.com/grafana/crossplane-provider-grafana/releases/download/v0.18.0/crds.yaml'], | ||
crds: ['https://github.com/grafana/crossplane-provider-grafana/releases/download/v0.20.0/crds.yaml'], | ||
localName: 'crossplane_grafana', | ||
}, | ||
|
||
// Upbound official providers | ||
// https://marketplace.upbound.io/ | ||
// WARNING: When bumping the version, ensure that you also update the | ||
// WARNING: When bumping the version, ensure that you also update the | ||
// version in the Makefile and run `make upbound_aws_crds.libsonnet` to update the CRDs list. | ||
{ | ||
output: 'upbound-provider-aws/1.14', | ||
prefix: '^io\\.upbound\\.aws\\..*', | ||
crds: ['https://raw.githubusercontent.com/crossplane-contrib/provider-upjet-aws/v1.14.0/package/crds/%s' % crd for crd in upbound_aws_crds], | ||
localName: 'upbound_aws', | ||
}, | ||
// WARNING: When bumping the version, ensure that you also update the | ||
// WARNING: When bumping the version, ensure that you also update the | ||
// version in the Makefile and run `make upbound_azure_crds.libsonnet` to update the CRDs list. | ||
{ | ||
output: 'upbound-provider-azure/1.3', | ||
|
@@ -120,7 +120,7 @@ config.new( | |
crds: ['https://doc.crds.dev/raw/github.com/upbound/[email protected]'], | ||
localName: 'upbound_azuread', | ||
}, | ||
// WARNING: When bumping the version, ensure that you also update the | ||
// WARNING: When bumping the version, ensure that you also update the | ||
// version in the Makefile and run `make upbound_gcp_crds.libsonnet` to update the CRDs list. | ||
{ | ||
output: 'upbound-provider-gcp/1.8', | ||
|
@@ -129,7 +129,6 @@ config.new( | |
localName: 'upbound_gcp', | ||
}, | ||
{ | ||
|
||
output: 'provider-terraform/0.10', | ||
prefix: '^io\\.upbound\\.tf\\..*', | ||
crds: ['https://doc.crds.dev/raw/github.com/upbound/[email protected]'], | ||
|