Skip to content

Commit

Permalink
fix(configurations): correct package path
Browse files Browse the repository at this point in the history
  • Loading branch information
Duologic committed Dec 2, 2024
1 parent e9bc5b3 commit 995c8b3
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
LIBRARY_VERSION:=0.0.6
LIBRARY_VERSION:=0.0.7
PROVIDER_VERSION:=0.21.0
JSONNET_BIN:=jrsonnet
CROSSPLANE?=crank
Expand Down
2 changes: 1 addition & 1 deletion docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Most of this library is generated: the Compositions/XRDs packages, Configuration
## Install

```
jb install github.com/grafana/grafana-crossplane-libsonnet/[email protected].6-0.21.0
jb install github.com/grafana/grafana-crossplane-libsonnet/[email protected].7-0.21.0
```

## Usage
Expand Down
2 changes: 1 addition & 1 deletion generator/configurations.libsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ local crossplane = import 'github.com/jsonnet-libs/crossplane-libsonnet/crosspla
local configuration(key, version) =
local conf = crossplane.pkg.v1.configuration;
conf.new(key)
+ conf.spec.withPackage('ghcr.io/grafana/crossplane/' + key + ':' + version);
+ conf.spec.withPackage('ghcr.io/grafana/crossplane/grafana-namespaced-' + key + ':' + version);

local groups =
std.set(
Expand Down
16 changes: 8 additions & 8 deletions grafanaplane/configurations.libsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
name: 'alerting',
},
spec: {
package: 'ghcr.io/grafana/crossplane/alerting:0.0.6-0.21.0',
package: 'ghcr.io/grafana/crossplane/grafana-namespaced-alerting:0.0.7-0.21.0',
},
},
cloud: {
Expand All @@ -22,7 +22,7 @@
name: 'cloud',
},
spec: {
package: 'ghcr.io/grafana/crossplane/cloud:0.0.6-0.21.0',
package: 'ghcr.io/grafana/crossplane/grafana-namespaced-cloud:0.0.7-0.21.0',
},
},
enterprise: {
Expand All @@ -35,7 +35,7 @@
name: 'enterprise',
},
spec: {
package: 'ghcr.io/grafana/crossplane/enterprise:0.0.6-0.21.0',
package: 'ghcr.io/grafana/crossplane/grafana-namespaced-enterprise:0.0.7-0.21.0',
},
},
ml: {
Expand All @@ -48,7 +48,7 @@
name: 'ml',
},
spec: {
package: 'ghcr.io/grafana/crossplane/ml:0.0.6-0.21.0',
package: 'ghcr.io/grafana/crossplane/grafana-namespaced-ml:0.0.7-0.21.0',
},
},
oncall: {
Expand All @@ -61,7 +61,7 @@
name: 'oncall',
},
spec: {
package: 'ghcr.io/grafana/crossplane/oncall:0.0.6-0.21.0',
package: 'ghcr.io/grafana/crossplane/grafana-namespaced-oncall:0.0.7-0.21.0',
},
},
oss: {
Expand All @@ -74,7 +74,7 @@
name: 'oss',
},
spec: {
package: 'ghcr.io/grafana/crossplane/oss:0.0.6-0.21.0',
package: 'ghcr.io/grafana/crossplane/grafana-namespaced-oss:0.0.7-0.21.0',
},
},
slo: {
Expand All @@ -87,7 +87,7 @@
name: 'slo',
},
spec: {
package: 'ghcr.io/grafana/crossplane/slo:0.0.6-0.21.0',
package: 'ghcr.io/grafana/crossplane/grafana-namespaced-slo:0.0.7-0.21.0',
},
},
sm: {
Expand All @@ -100,7 +100,7 @@
name: 'sm',
},
spec: {
package: 'ghcr.io/grafana/crossplane/sm:0.0.6-0.21.0',
package: 'ghcr.io/grafana/crossplane/grafana-namespaced-sm:0.0.7-0.21.0',
},
},
}
2 changes: 1 addition & 1 deletion grafanaplane/version.libsonnet
Original file line number Diff line number Diff line change
@@ -1 +1 @@
'0.0.6-0.21.0'
'0.0.7-0.21.0'

0 comments on commit 995c8b3

Please sign in to comment.