Skip to content

Commit 16ece6b

Browse files
committed
feat: add nats support
1 parent 275c09a commit 16ece6b

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

libs/nats/config.jsonnet

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)