We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 275c09a commit 16ece6bCopy full SHA for 16ece6b
libs/nats/config.jsonnet
@@ -0,0 +1,17 @@
1
+local config = import 'jsonnet/config.jsonnet';
2
+local versions = [
3
+ { version: '0.20', tag: 'v0.20.1' },
4
+];
5
+
6
+config.new(
7
+ name='nats',
8
+ specs=[
9
+ {
10
+ output: v.version,
11
+ prefix: '^io\\.nats\\.jetstream\\..*',
12
+ crds: ['https://github.com/nats-io/nack/releases/download/%(tag)/crds.yml' % { tag: v.tag }],
13
+ localName: 'nats',
14
+ }
15
+ for v in versions
16
+ ]
17
+)
0 commit comments