Skip to content

Commit b65e4dc

Browse files
Commit from GitHub Actions (Scheduled Jobs)
1 parent 2784981 commit b65e4dc

7 files changed

Lines changed: 812 additions & 6 deletions

File tree

schema/monitoring.coreos.com/alertmanager_v1.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3410,6 +3410,9 @@
34103410
],
34113411
"x-kubernetes-list-type": "map"
34123412
},
3413+
"hostUsers": {
3414+
"type": "boolean"
3415+
},
34133416
"image": {
34143417
"type": "string"
34153418
},
@@ -4585,7 +4588,8 @@
45854588
},
45864589
"minReadySeconds": {
45874590
"type": "integer",
4588-
"format": "int32"
4591+
"format": "int32",
4592+
"minimum": 0
45894593
},
45904594
"nodeSelector": {
45914595
"type": "object",

schema/monitoring.coreos.com/alertmanagerconfig_v1alpha1.json

Lines changed: 709 additions & 0 deletions
Large diffs are not rendered by default.

schema/monitoring.coreos.com/probe_v1.json

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -501,6 +501,35 @@
501501
},
502502
"additionalProperties": false
503503
},
504+
"params": {
505+
"type": "array",
506+
"minItems": 1,
507+
"items": {
508+
"type": "object",
509+
"required": [
510+
"name"
511+
],
512+
"properties": {
513+
"name": {
514+
"type": "string",
515+
"minLength": 1
516+
},
517+
"values": {
518+
"type": "array",
519+
"minItems": 1,
520+
"items": {
521+
"type": "string",
522+
"minLength": 1
523+
}
524+
}
525+
},
526+
"additionalProperties": false
527+
},
528+
"x-kubernetes-list-map-keys": [
529+
"name"
530+
],
531+
"x-kubernetes-list-type": "map"
532+
},
504533
"prober": {
505534
"type": "object",
506535
"required": [

schema/monitoring.coreos.com/prometheus_v1.json

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2903,6 +2903,9 @@
29032903
"hostNetwork": {
29042904
"type": "boolean"
29052905
},
2906+
"hostUsers": {
2907+
"type": "boolean"
2908+
},
29062909
"ignoreNamespaceSelectors": {
29072910
"type": "boolean"
29082911
},
@@ -4087,7 +4090,8 @@
40874090
},
40884091
"minReadySeconds": {
40894092
"type": "integer",
4090-
"format": "int32"
4093+
"format": "int32",
4094+
"minimum": 0
40914095
},
40924096
"nameEscapingScheme": {
40934097
"type": "string",
@@ -4117,9 +4121,21 @@
41174121
"convertHistogramsToNHCB": {
41184122
"type": "boolean"
41194123
},
4124+
"ignoreResourceAttributes": {
4125+
"type": "array",
4126+
"minItems": 1,
4127+
"items": {
4128+
"type": "string",
4129+
"minLength": 1
4130+
},
4131+
"x-kubernetes-list-type": "set"
4132+
},
41204133
"keepIdentifyingResourceAttributes": {
41214134
"type": "boolean"
41224135
},
4136+
"promoteAllResourceAttributes": {
4137+
"type": "boolean"
4138+
},
41234139
"promoteResourceAttributes": {
41244140
"type": "array",
41254141
"minItems": 1,

schema/monitoring.coreos.com/prometheusagent_v1alpha1.json

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2329,6 +2329,9 @@
23292329
"hostNetwork": {
23302330
"type": "boolean"
23312331
},
2332+
"hostUsers": {
2333+
"type": "boolean"
2334+
},
23322335
"ignoreNamespaceSelectors": {
23332336
"type": "boolean"
23342337
},
@@ -3513,7 +3516,8 @@
35133516
},
35143517
"minReadySeconds": {
35153518
"type": "integer",
3516-
"format": "int32"
3519+
"format": "int32",
3520+
"minimum": 0
35173521
},
35183522
"mode": {
35193523
"type": "string",
@@ -3550,9 +3554,21 @@
35503554
"convertHistogramsToNHCB": {
35513555
"type": "boolean"
35523556
},
3557+
"ignoreResourceAttributes": {
3558+
"type": "array",
3559+
"minItems": 1,
3560+
"items": {
3561+
"type": "string",
3562+
"minLength": 1
3563+
},
3564+
"x-kubernetes-list-type": "set"
3565+
},
35533566
"keepIdentifyingResourceAttributes": {
35543567
"type": "boolean"
35553568
},
3569+
"promoteAllResourceAttributes": {
3570+
"type": "boolean"
3571+
},
35563572
"promoteResourceAttributes": {
35573573
"type": "array",
35583574
"minItems": 1,
@@ -7738,6 +7754,14 @@
77387754
{
77397755
"rule": "!(has(self.mode) \u0026\u0026 self.mode == 'DaemonSet' \u0026\u0026 has(self.persistentVolumeClaimRetentionPolicy))",
77407756
"message": "persistentVolumeClaimRetentionPolicy cannot be set when mode is DaemonSet"
7757+
},
7758+
{
7759+
"rule": "!(has(self.mode) \u0026\u0026 self.mode == 'DaemonSet' \u0026\u0026 has(self.scrapeConfigSelector))",
7760+
"message": "scrapeConfigSelector cannot be set when mode is DaemonSet"
7761+
},
7762+
{
7763+
"rule": "!(has(self.mode) \u0026\u0026 self.mode == 'DaemonSet' \u0026\u0026 has(self.probeSelector))",
7764+
"message": "probeSelector cannot be set when mode is DaemonSet"
77417765
}
77427766
]
77437767
},

schema/monitoring.coreos.com/scrapeconfig_v1alpha1.json

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2009,7 +2009,8 @@
20092009
"minLength": 1
20102010
},
20112011
"hostNetworkingHost": {
2012-
"type": "string"
2012+
"type": "string",
2013+
"minLength": 1
20132014
},
20142015
"matchFirstNetwork": {
20152016
"type": "boolean"
@@ -2293,7 +2294,10 @@
22932294
"additionalProperties": false
22942295
},
22952296
"port": {
2296-
"type": "integer"
2297+
"type": "integer",
2298+
"format": "int32",
2299+
"maximum": 65535,
2300+
"minimum": 0
22972301
},
22982302
"proxyConnectHeader": {
22992303
"type": "object",

schema/monitoring.coreos.com/thanosruler_v1.json

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1932,6 +1932,14 @@
19321932
"None"
19331933
]
19341934
},
1935+
"enableFeatures": {
1936+
"type": "array",
1937+
"items": {
1938+
"type": "string",
1939+
"minLength": 1
1940+
},
1941+
"x-kubernetes-list-type": "set"
1942+
},
19351943
"enableServiceLinks": {
19361944
"type": "boolean"
19371945
},
@@ -2160,6 +2168,9 @@
21602168
],
21612169
"x-kubernetes-list-type": "map"
21622170
},
2171+
"hostUsers": {
2172+
"type": "boolean"
2173+
},
21632174
"image": {
21642175
"type": "string"
21652176
},
@@ -3326,7 +3337,8 @@
33263337
},
33273338
"minReadySeconds": {
33283339
"type": "integer",
3329-
"format": "int32"
3340+
"format": "int32",
3341+
"minimum": 0
33303342
},
33313343
"nodeSelector": {
33323344
"type": "object",
@@ -4287,6 +4299,10 @@
42874299
"type": "integer",
42884300
"format": "int32"
42894301
},
4302+
"resendDelay": {
4303+
"type": "string",
4304+
"pattern": "^(0|(([0-9]+)y)?(([0-9]+)w)?(([0-9]+)d)?(([0-9]+)h)?(([0-9]+)m)?(([0-9]+)s)?(([0-9]+)ms)?)$"
4305+
},
42904306
"resources": {
42914307
"type": "object",
42924308
"properties": {
@@ -4358,6 +4374,10 @@
43584374
"format": "int32",
43594375
"minimum": 1
43604376
},
4377+
"ruleGracePeriod": {
4378+
"type": "string",
4379+
"pattern": "^(0|(([0-9]+)y)?(([0-9]+)w)?(([0-9]+)d)?(([0-9]+)h)?(([0-9]+)m)?(([0-9]+)s)?(([0-9]+)ms)?)$"
4380+
},
43614381
"ruleNamespaceSelector": {
43624382
"type": "object",
43634383
"properties": {

0 commit comments

Comments
 (0)