harness-mcp-v2 3.2.4 → 3.2.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +62 -3
- package/build/config.d.ts +22 -3
- package/build/config.d.ts.map +1 -1
- package/build/config.js +10 -0
- package/build/config.js.map +1 -1
- package/build/data/examples/index.d.ts +2 -0
- package/build/data/examples/index.d.ts.map +1 -1
- package/build/data/examples/index.js +4 -0
- package/build/data/examples/index.js.map +1 -1
- package/build/data/schemas/v0/pipeline.d.ts.map +1 -1
- package/build/data/schemas/v0/pipeline.js +209 -10
- package/build/data/schemas/v0/pipeline.js.map +1 -1
- package/build/data/schemas/v0/template.d.ts.map +1 -1
- package/build/data/schemas/v0/template.js +388 -105
- package/build/data/schemas/v0/template.js.map +1 -1
- package/build/data/schemas/v1/pipeline.d.ts.map +1 -1
- package/build/data/schemas/v1/pipeline.js +11 -0
- package/build/data/schemas/v1/pipeline.js.map +1 -1
- package/build/data/schemas/v1/template.d.ts.map +1 -1
- package/build/data/schemas/v1/template.js +11 -0
- package/build/data/schemas/v1/template.js.map +1 -1
- package/build/index.js +67 -11
- package/build/index.js.map +1 -1
- package/build/prompts/create-agent.d.ts.map +1 -1
- package/build/prompts/create-agent.js +21 -1
- package/build/prompts/create-agent.js.map +1 -1
- package/build/registry/extractors.d.ts +10 -3
- package/build/registry/extractors.d.ts.map +1 -1
- package/build/registry/extractors.js +27 -9
- package/build/registry/extractors.js.map +1 -1
- package/build/registry/toolsets/chaos-descriptions.d.ts +23 -19
- package/build/registry/toolsets/chaos-descriptions.d.ts.map +1 -1
- package/build/registry/toolsets/chaos-descriptions.js +134 -48
- package/build/registry/toolsets/chaos-descriptions.js.map +1 -1
- package/build/registry/toolsets/chaos.d.ts.map +1 -1
- package/build/registry/toolsets/chaos.js +323 -56
- package/build/registry/toolsets/chaos.js.map +1 -1
- package/build/registry/toolsets/dbops.js +2 -2
- package/build/registry/toolsets/dbops.js.map +1 -1
- package/build/registry/toolsets/idp.d.ts.map +1 -1
- package/build/registry/toolsets/idp.js +0 -6
- package/build/registry/toolsets/idp.js.map +1 -1
- package/build/registry/toolsets/pipelines.d.ts.map +1 -1
- package/build/registry/toolsets/pipelines.js +6 -4
- package/build/registry/toolsets/pipelines.js.map +1 -1
- package/build/registry/toolsets/pull-requests.d.ts.map +1 -1
- package/build/registry/toolsets/pull-requests.js +47 -2
- package/build/registry/toolsets/pull-requests.js.map +1 -1
- package/build/registry/toolsets/scs.d.ts.map +1 -1
- package/build/registry/toolsets/scs.js +4 -14
- package/build/registry/toolsets/scs.js.map +1 -1
- package/build/search/embedding-content.d.ts +5 -0
- package/build/search/embedding-content.d.ts.map +1 -0
- package/build/search/embedding-content.js +31 -0
- package/build/search/embedding-content.js.map +1 -0
- package/build/search/index.d.ts +8 -0
- package/build/search/index.d.ts.map +1 -0
- package/build/search/index.js +6 -0
- package/build/search/index.js.map +1 -0
- package/build/search/local-provider.d.ts +37 -0
- package/build/search/local-provider.d.ts.map +1 -0
- package/build/search/local-provider.js +269 -0
- package/build/search/local-provider.js.map +1 -0
- package/build/search/manager.d.ts +39 -0
- package/build/search/manager.d.ts.map +1 -0
- package/build/search/manager.js +287 -0
- package/build/search/manager.js.map +1 -0
- package/build/search/null-provider.d.ts +9 -0
- package/build/search/null-provider.d.ts.map +1 -0
- package/build/search/null-provider.js +8 -0
- package/build/search/null-provider.js.map +1 -0
- package/build/search/remote-provider.d.ts +28 -0
- package/build/search/remote-provider.d.ts.map +1 -0
- package/build/search/remote-provider.js +148 -0
- package/build/search/remote-provider.js.map +1 -0
- package/build/search/routing-eval.d.ts +49 -0
- package/build/search/routing-eval.d.ts.map +1 -0
- package/build/search/routing-eval.js +80 -0
- package/build/search/routing-eval.js.map +1 -0
- package/build/search/types.d.ts +58 -0
- package/build/search/types.d.ts.map +1 -0
- package/build/search/types.js +7 -0
- package/build/search/types.js.map +1 -0
- package/build/tools/harness-execute.d.ts.map +1 -1
- package/build/tools/harness-execute.js +19 -7
- package/build/tools/harness-execute.js.map +1 -1
- package/build/tools/harness-get.d.ts +2 -1
- package/build/tools/harness-get.d.ts.map +1 -1
- package/build/tools/harness-get.js +21 -1
- package/build/tools/harness-get.js.map +1 -1
- package/build/tools/harness-list.d.ts +2 -1
- package/build/tools/harness-list.d.ts.map +1 -1
- package/build/tools/harness-list.js +22 -1
- package/build/tools/harness-list.js.map +1 -1
- package/build/tools/harness-search.d.ts +20 -1
- package/build/tools/harness-search.d.ts.map +1 -1
- package/build/tools/harness-search.js +124 -14
- package/build/tools/harness-search.js.map +1 -1
- package/build/tools/index.d.ts +2 -1
- package/build/tools/index.d.ts.map +1 -1
- package/build/tools/index.js +4 -4
- package/build/tools/index.js.map +1 -1
- package/build/utils/http-health.d.ts +11 -0
- package/build/utils/http-health.d.ts.map +1 -0
- package/build/utils/http-health.js +11 -0
- package/build/utils/http-health.js.map +1 -0
- package/build/utils/http-sessions.d.ts +8 -0
- package/build/utils/http-sessions.d.ts.map +1 -0
- package/build/utils/http-sessions.js +12 -0
- package/build/utils/http-sessions.js.map +1 -0
- package/package.json +5 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"template.d.ts","sourceRoot":"","sources":["../../../../src/data/schemas/v0/template.ts"],"names":[],"mappings":"AAGA,QAAA,MAAM,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,
|
|
1
|
+
{"version":3,"file":"template.d.ts","sourceRoot":"","sources":["../../../../src/data/schemas/v0/template.ts"],"names":[],"mappings":"AAGA,QAAA,MAAM,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CA44hJ/B,CAAC;AACF,eAAe,MAAM,CAAC"}
|
|
@@ -322,6 +322,9 @@ const schema = {
|
|
|
322
322
|
{
|
|
323
323
|
"$ref": "#/definitions/pipeline/steps/cd/K8sCanaryDeleteStepNode_template"
|
|
324
324
|
},
|
|
325
|
+
{
|
|
326
|
+
"$ref": "#/definitions/pipeline/steps/cd/K8sProgressiveCanaryRollbackStepNode_template"
|
|
327
|
+
},
|
|
325
328
|
{
|
|
326
329
|
"$ref": "#/definitions/pipeline/steps/cd/K8sCanaryStepNode_template"
|
|
327
330
|
},
|
|
@@ -20644,6 +20647,167 @@ const schema = {
|
|
|
20644
20647
|
}
|
|
20645
20648
|
}
|
|
20646
20649
|
},
|
|
20650
|
+
"K8sProgressiveCanaryRollbackStepNode_template": {
|
|
20651
|
+
"title": "K8sProgressiveCanaryRollbackStepNode_template",
|
|
20652
|
+
"type": "object",
|
|
20653
|
+
"required": [
|
|
20654
|
+
"spec",
|
|
20655
|
+
"type"
|
|
20656
|
+
],
|
|
20657
|
+
"properties": {
|
|
20658
|
+
"enforce": {
|
|
20659
|
+
"$ref": "#/definitions/pipeline/common/PolicyConfig"
|
|
20660
|
+
},
|
|
20661
|
+
"failureStrategies": {
|
|
20662
|
+
"oneOf": [
|
|
20663
|
+
{
|
|
20664
|
+
"type": "array",
|
|
20665
|
+
"items": {
|
|
20666
|
+
"$ref": "#/definitions/pipeline/common/FailureStrategyConfig"
|
|
20667
|
+
}
|
|
20668
|
+
},
|
|
20669
|
+
{
|
|
20670
|
+
"type": "string",
|
|
20671
|
+
"pattern": "^<\\+input>$",
|
|
20672
|
+
"minLength": 1
|
|
20673
|
+
}
|
|
20674
|
+
]
|
|
20675
|
+
},
|
|
20676
|
+
"strategy": {
|
|
20677
|
+
"oneOf": [
|
|
20678
|
+
{
|
|
20679
|
+
"$ref": "#/definitions/pipeline/common/StrategyConfig"
|
|
20680
|
+
},
|
|
20681
|
+
{
|
|
20682
|
+
"type": "string",
|
|
20683
|
+
"pattern": "^<\\+input>$",
|
|
20684
|
+
"minLength": 1
|
|
20685
|
+
}
|
|
20686
|
+
]
|
|
20687
|
+
},
|
|
20688
|
+
"timeout": {
|
|
20689
|
+
"type": "string",
|
|
20690
|
+
"pattern": "^(([1-9])+\\d+[s])|(((([1-9])+\\d*[mhwd])+([\\s]?\\d+[smhwd])*)|(.*<\\+.*>(?!.*\\.executionInput\\(\\)).*)|(^$))$"
|
|
20691
|
+
},
|
|
20692
|
+
"type": {
|
|
20693
|
+
"type": "string",
|
|
20694
|
+
"enum": [
|
|
20695
|
+
"K8sProgressiveCanaryRollback"
|
|
20696
|
+
]
|
|
20697
|
+
},
|
|
20698
|
+
"when": {
|
|
20699
|
+
"oneOf": [
|
|
20700
|
+
{
|
|
20701
|
+
"$ref": "#/definitions/pipeline/common/StepWhenCondition"
|
|
20702
|
+
},
|
|
20703
|
+
{
|
|
20704
|
+
"type": "string",
|
|
20705
|
+
"pattern": "^<\\+input>$",
|
|
20706
|
+
"minLength": 1
|
|
20707
|
+
}
|
|
20708
|
+
]
|
|
20709
|
+
}
|
|
20710
|
+
},
|
|
20711
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
20712
|
+
"allOf": [
|
|
20713
|
+
{
|
|
20714
|
+
"if": {
|
|
20715
|
+
"properties": {
|
|
20716
|
+
"type": {
|
|
20717
|
+
"const": "K8sProgressiveCanaryRollback"
|
|
20718
|
+
}
|
|
20719
|
+
}
|
|
20720
|
+
},
|
|
20721
|
+
"then": {
|
|
20722
|
+
"properties": {
|
|
20723
|
+
"spec": {
|
|
20724
|
+
"$ref": "#/definitions/pipeline/steps/cd/K8sProgressiveCanaryRollbackStepInfo"
|
|
20725
|
+
}
|
|
20726
|
+
}
|
|
20727
|
+
}
|
|
20728
|
+
}
|
|
20729
|
+
]
|
|
20730
|
+
},
|
|
20731
|
+
"K8sProgressiveCanaryRollbackStepInfo": {
|
|
20732
|
+
"title": "K8sProgressiveCanaryRollbackStepInfo",
|
|
20733
|
+
"allOf": [
|
|
20734
|
+
{
|
|
20735
|
+
"$ref": "#/definitions/pipeline/common/StepSpecType"
|
|
20736
|
+
},
|
|
20737
|
+
{
|
|
20738
|
+
"type": "object",
|
|
20739
|
+
"properties": {
|
|
20740
|
+
"commandFlags": {
|
|
20741
|
+
"oneOf": [
|
|
20742
|
+
{
|
|
20743
|
+
"type": "array",
|
|
20744
|
+
"items": {
|
|
20745
|
+
"$ref": "#/definitions/pipeline/steps/cd/K8sStepCommandFlag"
|
|
20746
|
+
}
|
|
20747
|
+
},
|
|
20748
|
+
{
|
|
20749
|
+
"type": "string",
|
|
20750
|
+
"pattern": "^<\\+input>((\\.)((executionInput\\(\\))|(allowedValues|selectOneFrom|selectManyFrom|default|regex)\\(.+?\\)))*$",
|
|
20751
|
+
"minLength": 1
|
|
20752
|
+
}
|
|
20753
|
+
]
|
|
20754
|
+
},
|
|
20755
|
+
"delegateSelectors": {
|
|
20756
|
+
"oneOf": [
|
|
20757
|
+
{
|
|
20758
|
+
"type": "array",
|
|
20759
|
+
"items": {
|
|
20760
|
+
"type": "string"
|
|
20761
|
+
}
|
|
20762
|
+
},
|
|
20763
|
+
{
|
|
20764
|
+
"type": "string",
|
|
20765
|
+
"pattern": "(<\\+.+>.*)",
|
|
20766
|
+
"minLength": 1
|
|
20767
|
+
}
|
|
20768
|
+
]
|
|
20769
|
+
}
|
|
20770
|
+
}
|
|
20771
|
+
}
|
|
20772
|
+
],
|
|
20773
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
20774
|
+
"type": "object",
|
|
20775
|
+
"properties": {
|
|
20776
|
+
"commandFlags": {
|
|
20777
|
+
"oneOf": [
|
|
20778
|
+
{
|
|
20779
|
+
"type": "array",
|
|
20780
|
+
"items": {
|
|
20781
|
+
"$ref": "#/definitions/pipeline/steps/cd/K8sStepCommandFlag"
|
|
20782
|
+
}
|
|
20783
|
+
},
|
|
20784
|
+
{
|
|
20785
|
+
"type": "string",
|
|
20786
|
+
"pattern": "^<\\+input>((\\.)((executionInput\\(\\))|(allowedValues|selectOneFrom|selectManyFrom|default|regex)\\(.+?\\)))*$",
|
|
20787
|
+
"minLength": 1
|
|
20788
|
+
}
|
|
20789
|
+
]
|
|
20790
|
+
},
|
|
20791
|
+
"delegateSelectors": {
|
|
20792
|
+
"oneOf": [
|
|
20793
|
+
{
|
|
20794
|
+
"type": "array",
|
|
20795
|
+
"items": {
|
|
20796
|
+
"type": "string"
|
|
20797
|
+
}
|
|
20798
|
+
},
|
|
20799
|
+
{
|
|
20800
|
+
"type": "string",
|
|
20801
|
+
"pattern": "(<\\+.+>.*)",
|
|
20802
|
+
"minLength": 1
|
|
20803
|
+
}
|
|
20804
|
+
]
|
|
20805
|
+
},
|
|
20806
|
+
"description": {
|
|
20807
|
+
"desc": "This is the description for K8sProgressiveCanaryRollbackStepInfo"
|
|
20808
|
+
}
|
|
20809
|
+
}
|
|
20810
|
+
},
|
|
20647
20811
|
"K8sCanaryStepNode_template": {
|
|
20648
20812
|
"title": "K8sCanaryStepNode_template",
|
|
20649
20813
|
"type": "object",
|
|
@@ -31133,11 +31297,20 @@ const schema = {
|
|
|
31133
31297
|
],
|
|
31134
31298
|
"properties": {
|
|
31135
31299
|
"healthSources": {
|
|
31136
|
-
"
|
|
31137
|
-
|
|
31138
|
-
|
|
31139
|
-
|
|
31140
|
-
|
|
31300
|
+
"oneOf": [
|
|
31301
|
+
{
|
|
31302
|
+
"type": "array",
|
|
31303
|
+
"items": {
|
|
31304
|
+
"$ref": "#/definitions/pipeline/steps/cd/AIVerifyNGHealthSource"
|
|
31305
|
+
},
|
|
31306
|
+
"minItems": 1
|
|
31307
|
+
},
|
|
31308
|
+
{
|
|
31309
|
+
"type": "string",
|
|
31310
|
+
"pattern": "(<\\+.+>.*)",
|
|
31311
|
+
"minLength": 1
|
|
31312
|
+
}
|
|
31313
|
+
]
|
|
31141
31314
|
},
|
|
31142
31315
|
"dataCollectionWindow": {
|
|
31143
31316
|
"description": "Data collection window as a duration string '<n>m' (minutes) or '<n>h' (hours), e.g. '30m', '1h', '2h'; may also be a runtime expression.",
|
|
@@ -31253,11 +31426,20 @@ const schema = {
|
|
|
31253
31426
|
],
|
|
31254
31427
|
"properties": {
|
|
31255
31428
|
"healthSources": {
|
|
31256
|
-
"
|
|
31257
|
-
|
|
31258
|
-
|
|
31259
|
-
|
|
31260
|
-
|
|
31429
|
+
"oneOf": [
|
|
31430
|
+
{
|
|
31431
|
+
"type": "array",
|
|
31432
|
+
"items": {
|
|
31433
|
+
"$ref": "#/definitions/pipeline/steps/cd/AIVerifyNGHealthSource"
|
|
31434
|
+
},
|
|
31435
|
+
"minItems": 1
|
|
31436
|
+
},
|
|
31437
|
+
{
|
|
31438
|
+
"type": "string",
|
|
31439
|
+
"pattern": "(<\\+.+>.*)",
|
|
31440
|
+
"minLength": 1
|
|
31441
|
+
}
|
|
31442
|
+
]
|
|
31261
31443
|
},
|
|
31262
31444
|
"dataCollectionWindow": {
|
|
31263
31445
|
"description": "Data collection window as a duration string '<n>m' (minutes) or '<n>h' (hours), e.g. '30m', '1h', '2h'; may also be a runtime expression.",
|
|
@@ -43679,6 +43861,101 @@ const schema = {
|
|
|
43679
43861
|
}
|
|
43680
43862
|
}
|
|
43681
43863
|
},
|
|
43864
|
+
"AIVerifyNGStepNode": {
|
|
43865
|
+
"title": "AIVerifyNGStepNode",
|
|
43866
|
+
"type": "object",
|
|
43867
|
+
"required": [
|
|
43868
|
+
"identifier",
|
|
43869
|
+
"name",
|
|
43870
|
+
"spec",
|
|
43871
|
+
"type"
|
|
43872
|
+
],
|
|
43873
|
+
"properties": {
|
|
43874
|
+
"description": {
|
|
43875
|
+
"type": "string",
|
|
43876
|
+
"desc": "This is the description for AIVerifyNGStepNode"
|
|
43877
|
+
},
|
|
43878
|
+
"enforce": {
|
|
43879
|
+
"$ref": "#/definitions/pipeline/common/PolicyConfig"
|
|
43880
|
+
},
|
|
43881
|
+
"failureStrategies": {
|
|
43882
|
+
"oneOf": [
|
|
43883
|
+
{
|
|
43884
|
+
"type": "array",
|
|
43885
|
+
"items": {
|
|
43886
|
+
"$ref": "#/definitions/pipeline/common/FailureStrategyConfig"
|
|
43887
|
+
}
|
|
43888
|
+
},
|
|
43889
|
+
{
|
|
43890
|
+
"type": "string",
|
|
43891
|
+
"pattern": "^<\\+input>$",
|
|
43892
|
+
"minLength": 1
|
|
43893
|
+
}
|
|
43894
|
+
]
|
|
43895
|
+
},
|
|
43896
|
+
"identifier": {
|
|
43897
|
+
"type": "string",
|
|
43898
|
+
"pattern": "^[a-zA-Z_][0-9a-zA-Z_]{0,127}$"
|
|
43899
|
+
},
|
|
43900
|
+
"name": {
|
|
43901
|
+
"type": "string",
|
|
43902
|
+
"pattern": "^[a-zA-Z_0-9-.][-0-9a-zA-Z_\\s.]{0,127}$"
|
|
43903
|
+
},
|
|
43904
|
+
"strategy": {
|
|
43905
|
+
"oneOf": [
|
|
43906
|
+
{
|
|
43907
|
+
"$ref": "#/definitions/pipeline/common/StrategyConfig"
|
|
43908
|
+
},
|
|
43909
|
+
{
|
|
43910
|
+
"type": "string",
|
|
43911
|
+
"pattern": "^<\\+input>$",
|
|
43912
|
+
"minLength": 1
|
|
43913
|
+
}
|
|
43914
|
+
]
|
|
43915
|
+
},
|
|
43916
|
+
"timeout": {
|
|
43917
|
+
"type": "string",
|
|
43918
|
+
"pattern": "^(([1-9])+\\d+[s])|(((([1-9])+\\d*[mhwd])+([\\s]?\\d+[smhwd])*)|(.*<\\+.*>(?!.*\\.executionInput\\(\\)).*)|(^$))$"
|
|
43919
|
+
},
|
|
43920
|
+
"type": {
|
|
43921
|
+
"type": "string",
|
|
43922
|
+
"enum": [
|
|
43923
|
+
"AIVerifyNG"
|
|
43924
|
+
]
|
|
43925
|
+
},
|
|
43926
|
+
"when": {
|
|
43927
|
+
"oneOf": [
|
|
43928
|
+
{
|
|
43929
|
+
"$ref": "#/definitions/pipeline/common/StepWhenCondition"
|
|
43930
|
+
},
|
|
43931
|
+
{
|
|
43932
|
+
"type": "string",
|
|
43933
|
+
"pattern": "^<\\+input>$",
|
|
43934
|
+
"minLength": 1
|
|
43935
|
+
}
|
|
43936
|
+
]
|
|
43937
|
+
}
|
|
43938
|
+
},
|
|
43939
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
43940
|
+
"allOf": [
|
|
43941
|
+
{
|
|
43942
|
+
"if": {
|
|
43943
|
+
"properties": {
|
|
43944
|
+
"type": {
|
|
43945
|
+
"const": "AIVerifyNG"
|
|
43946
|
+
}
|
|
43947
|
+
}
|
|
43948
|
+
},
|
|
43949
|
+
"then": {
|
|
43950
|
+
"properties": {
|
|
43951
|
+
"spec": {
|
|
43952
|
+
"$ref": "#/definitions/pipeline/steps/cd/AIVerifyNGStepInfo"
|
|
43953
|
+
}
|
|
43954
|
+
}
|
|
43955
|
+
}
|
|
43956
|
+
}
|
|
43957
|
+
]
|
|
43958
|
+
},
|
|
43682
43959
|
"MergePRStepNode": {
|
|
43683
43960
|
"title": "MergePRStepNode",
|
|
43684
43961
|
"type": "object",
|
|
@@ -49773,6 +50050,101 @@ const schema = {
|
|
|
49773
50050
|
}
|
|
49774
50051
|
]
|
|
49775
50052
|
},
|
|
50053
|
+
"K8sProgressiveCanaryRollbackStepNode": {
|
|
50054
|
+
"title": "K8sProgressiveCanaryRollbackStepNode",
|
|
50055
|
+
"type": "object",
|
|
50056
|
+
"required": [
|
|
50057
|
+
"identifier",
|
|
50058
|
+
"name",
|
|
50059
|
+
"spec",
|
|
50060
|
+
"type"
|
|
50061
|
+
],
|
|
50062
|
+
"properties": {
|
|
50063
|
+
"description": {
|
|
50064
|
+
"type": "string",
|
|
50065
|
+
"desc": "This is the description for K8sProgressiveCanaryRollbackStepNode"
|
|
50066
|
+
},
|
|
50067
|
+
"enforce": {
|
|
50068
|
+
"$ref": "#/definitions/pipeline/common/PolicyConfig"
|
|
50069
|
+
},
|
|
50070
|
+
"failureStrategies": {
|
|
50071
|
+
"oneOf": [
|
|
50072
|
+
{
|
|
50073
|
+
"type": "array",
|
|
50074
|
+
"items": {
|
|
50075
|
+
"$ref": "#/definitions/pipeline/common/FailureStrategyConfig"
|
|
50076
|
+
}
|
|
50077
|
+
},
|
|
50078
|
+
{
|
|
50079
|
+
"type": "string",
|
|
50080
|
+
"pattern": "^<\\+input>$",
|
|
50081
|
+
"minLength": 1
|
|
50082
|
+
}
|
|
50083
|
+
]
|
|
50084
|
+
},
|
|
50085
|
+
"identifier": {
|
|
50086
|
+
"type": "string",
|
|
50087
|
+
"pattern": "^[a-zA-Z_][0-9a-zA-Z_]{0,127}$"
|
|
50088
|
+
},
|
|
50089
|
+
"name": {
|
|
50090
|
+
"type": "string",
|
|
50091
|
+
"pattern": "^[a-zA-Z_0-9-.][-0-9a-zA-Z_\\s.]{0,127}$"
|
|
50092
|
+
},
|
|
50093
|
+
"strategy": {
|
|
50094
|
+
"oneOf": [
|
|
50095
|
+
{
|
|
50096
|
+
"$ref": "#/definitions/pipeline/common/StrategyConfig"
|
|
50097
|
+
},
|
|
50098
|
+
{
|
|
50099
|
+
"type": "string",
|
|
50100
|
+
"pattern": "^<\\+input>$",
|
|
50101
|
+
"minLength": 1
|
|
50102
|
+
}
|
|
50103
|
+
]
|
|
50104
|
+
},
|
|
50105
|
+
"timeout": {
|
|
50106
|
+
"type": "string",
|
|
50107
|
+
"pattern": "^(([1-9])+\\d+[s])|(((([1-9])+\\d*[mhwd])+([\\s]?\\d+[smhwd])*)|(.*<\\+.*>(?!.*\\.executionInput\\(\\)).*)|(^$))$"
|
|
50108
|
+
},
|
|
50109
|
+
"type": {
|
|
50110
|
+
"type": "string",
|
|
50111
|
+
"enum": [
|
|
50112
|
+
"K8sProgressiveCanaryRollback"
|
|
50113
|
+
]
|
|
50114
|
+
},
|
|
50115
|
+
"when": {
|
|
50116
|
+
"oneOf": [
|
|
50117
|
+
{
|
|
50118
|
+
"$ref": "#/definitions/pipeline/common/StepWhenCondition"
|
|
50119
|
+
},
|
|
50120
|
+
{
|
|
50121
|
+
"type": "string",
|
|
50122
|
+
"pattern": "^<\\+input>$",
|
|
50123
|
+
"minLength": 1
|
|
50124
|
+
}
|
|
50125
|
+
]
|
|
50126
|
+
}
|
|
50127
|
+
},
|
|
50128
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
50129
|
+
"allOf": [
|
|
50130
|
+
{
|
|
50131
|
+
"if": {
|
|
50132
|
+
"properties": {
|
|
50133
|
+
"type": {
|
|
50134
|
+
"const": "K8sProgressiveCanaryRollback"
|
|
50135
|
+
}
|
|
50136
|
+
}
|
|
50137
|
+
},
|
|
50138
|
+
"then": {
|
|
50139
|
+
"properties": {
|
|
50140
|
+
"spec": {
|
|
50141
|
+
"$ref": "#/definitions/pipeline/steps/cd/K8sProgressiveCanaryRollbackStepInfo"
|
|
50142
|
+
}
|
|
50143
|
+
}
|
|
50144
|
+
}
|
|
50145
|
+
}
|
|
50146
|
+
]
|
|
50147
|
+
},
|
|
49776
50148
|
"K8sRollingStepNode": {
|
|
49777
50149
|
"title": "K8sRollingStepNode",
|
|
49778
50150
|
"type": "object",
|
|
@@ -51479,101 +51851,6 @@ const schema = {
|
|
|
51479
51851
|
}
|
|
51480
51852
|
]
|
|
51481
51853
|
},
|
|
51482
|
-
"AIVerifyNGStepNode": {
|
|
51483
|
-
"title": "AIVerifyNGStepNode",
|
|
51484
|
-
"type": "object",
|
|
51485
|
-
"required": [
|
|
51486
|
-
"identifier",
|
|
51487
|
-
"name",
|
|
51488
|
-
"spec",
|
|
51489
|
-
"type"
|
|
51490
|
-
],
|
|
51491
|
-
"properties": {
|
|
51492
|
-
"description": {
|
|
51493
|
-
"type": "string",
|
|
51494
|
-
"desc": "This is the description for AIVerifyNGStepNode"
|
|
51495
|
-
},
|
|
51496
|
-
"enforce": {
|
|
51497
|
-
"$ref": "#/definitions/pipeline/common/PolicyConfig"
|
|
51498
|
-
},
|
|
51499
|
-
"failureStrategies": {
|
|
51500
|
-
"oneOf": [
|
|
51501
|
-
{
|
|
51502
|
-
"type": "array",
|
|
51503
|
-
"items": {
|
|
51504
|
-
"$ref": "#/definitions/pipeline/common/FailureStrategyConfig"
|
|
51505
|
-
}
|
|
51506
|
-
},
|
|
51507
|
-
{
|
|
51508
|
-
"type": "string",
|
|
51509
|
-
"pattern": "^<\\+input>$",
|
|
51510
|
-
"minLength": 1
|
|
51511
|
-
}
|
|
51512
|
-
]
|
|
51513
|
-
},
|
|
51514
|
-
"identifier": {
|
|
51515
|
-
"type": "string",
|
|
51516
|
-
"pattern": "^[a-zA-Z_][0-9a-zA-Z_]{0,127}$"
|
|
51517
|
-
},
|
|
51518
|
-
"name": {
|
|
51519
|
-
"type": "string",
|
|
51520
|
-
"pattern": "^[a-zA-Z_0-9-.][-0-9a-zA-Z_\\s.]{0,127}$"
|
|
51521
|
-
},
|
|
51522
|
-
"strategy": {
|
|
51523
|
-
"oneOf": [
|
|
51524
|
-
{
|
|
51525
|
-
"$ref": "#/definitions/pipeline/common/StrategyConfig"
|
|
51526
|
-
},
|
|
51527
|
-
{
|
|
51528
|
-
"type": "string",
|
|
51529
|
-
"pattern": "^<\\+input>$",
|
|
51530
|
-
"minLength": 1
|
|
51531
|
-
}
|
|
51532
|
-
]
|
|
51533
|
-
},
|
|
51534
|
-
"timeout": {
|
|
51535
|
-
"type": "string",
|
|
51536
|
-
"pattern": "^(([1-9])+\\d+[s])|(((([1-9])+\\d*[mhwd])+([\\s]?\\d+[smhwd])*)|(.*<\\+.*>(?!.*\\.executionInput\\(\\)).*)|(^$))$"
|
|
51537
|
-
},
|
|
51538
|
-
"type": {
|
|
51539
|
-
"type": "string",
|
|
51540
|
-
"enum": [
|
|
51541
|
-
"AIVerifyNG"
|
|
51542
|
-
]
|
|
51543
|
-
},
|
|
51544
|
-
"when": {
|
|
51545
|
-
"oneOf": [
|
|
51546
|
-
{
|
|
51547
|
-
"$ref": "#/definitions/pipeline/common/StepWhenCondition"
|
|
51548
|
-
},
|
|
51549
|
-
{
|
|
51550
|
-
"type": "string",
|
|
51551
|
-
"pattern": "^<\\+input>$",
|
|
51552
|
-
"minLength": 1
|
|
51553
|
-
}
|
|
51554
|
-
]
|
|
51555
|
-
}
|
|
51556
|
-
},
|
|
51557
|
-
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
51558
|
-
"allOf": [
|
|
51559
|
-
{
|
|
51560
|
-
"if": {
|
|
51561
|
-
"properties": {
|
|
51562
|
-
"type": {
|
|
51563
|
-
"const": "AIVerifyNG"
|
|
51564
|
-
}
|
|
51565
|
-
}
|
|
51566
|
-
},
|
|
51567
|
-
"then": {
|
|
51568
|
-
"properties": {
|
|
51569
|
-
"spec": {
|
|
51570
|
-
"$ref": "#/definitions/pipeline/steps/cd/AIVerifyNGStepInfo"
|
|
51571
|
-
}
|
|
51572
|
-
}
|
|
51573
|
-
}
|
|
51574
|
-
}
|
|
51575
|
-
]
|
|
51576
|
-
},
|
|
51577
51854
|
"AzureFunctionDeployStepNode": {
|
|
51578
51855
|
"title": "AzureFunctionDeployStepNode",
|
|
51579
51856
|
"type": "object",
|
|
@@ -132376,6 +132653,9 @@ const schema = {
|
|
|
132376
132653
|
{
|
|
132377
132654
|
"$ref": "#/definitions/pipeline/steps/cd/K8sRollingRollbackStepNode"
|
|
132378
132655
|
},
|
|
132656
|
+
{
|
|
132657
|
+
"$ref": "#/definitions/pipeline/steps/cd/K8sProgressiveCanaryRollbackStepNode"
|
|
132658
|
+
},
|
|
132379
132659
|
{
|
|
132380
132660
|
"$ref": "#/definitions/pipeline/steps/cd/K8sRollingStepNode"
|
|
132381
132661
|
},
|
|
@@ -141846,6 +142126,9 @@ const schema = {
|
|
|
141846
142126
|
},
|
|
141847
142127
|
{
|
|
141848
142128
|
"$ref": "#/definitions/pipeline/steps/common/IdpActionStepNode"
|
|
142129
|
+
},
|
|
142130
|
+
{
|
|
142131
|
+
"$ref": "#/definitions/pipeline/steps/cd/AIVerifyNGStepNode"
|
|
141849
142132
|
}
|
|
141850
142133
|
]
|
|
141851
142134
|
},
|