File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change 11# libs/<name>/config.jsonnet
22local config = (import 'jsonnet/config.jsonnet' );
33local versions = ['2.8.0' , '2.9.0' , '2.10.0' ];
4- local crdFiles = ['chaosengine_crd.yaml' ,'chaosexperiment_crd.yaml' ,'chaosresults_crd.yaml' ];
4+ local crdFilesOperator = ['chaosengine_crd.yaml' ,'chaosexperiment_crd.yaml' ,'chaosresults_crd.yaml' ];
5+ local crdFilesScheduler = ['chaosschedule_crd.yaml' ];
56
67config.new(
78 name='litmus-chaos' ,
89 specs=[
910 {
10- local baseUrl = 'https://raw.githubusercontent.com/litmuschaos/chaos-operator/%s/deploy/crds' % version,
11+ local baseUrlOperator = 'https://raw.githubusercontent.com/litmuschaos/chaos-operator/%s/deploy/crds' % version,
12+ local baseUrlScheduler = 'https://raw.githubusercontent.com/litmuschaos/chaos-scheduler/%s/deploy/crds' % version,
1113 output: version,
12- crds: [ '%s/%s' % [baseUrl, crd] for crd in crdFiles],
14+ crds:
15+ [ '%s/%s' % [baseUrlOperator, crd] for crd in crdFilesOperator] +
16+ [ '%s/%s' % [baseUrlScheduler, crd] for crd in crdFilesScheduler],
1317 prefix: '^io\\ .litmuschaos\\ ..*' ,
1418 localName: 'litmus-chaos' ,
1519 }
You can’t perform that action at this time.
0 commit comments