kube_schema 1.6.0 → 1.7.0

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 15b34ab27ab0be6ebc39d0e52a600d668ba164951001c98836ef2fa179e6c0e3
4
- data.tar.gz: 51f5d1c72ee9e508b3cc8e66978eaad2206ed8fd0a0410f35fb71f7705e7a91e
3
+ metadata.gz: b6295ea00c908c7b8332bb9c29a2d5a0cfd7c795151cd4ea591950f26fb43a94
4
+ data.tar.gz: d0975d1654ea71179a07998053be449c5d1a3875b1ba796e9ed4f8c3719848f7
5
5
  SHA512:
6
- metadata.gz: cd0da375f6caf6df7dc6aa587937a4b6341b6af839de3609fc3ad5967cdbf022fa3611c73f5bf185b624e1e073485d7d8360ed2c5ea868fb4904c9dc2804ebaa
7
- data.tar.gz: bad7ff294f00e87eb2bfe67b3c36419ed2f20f11f6b5d410acddc74106ead5b8fc696ed551074885ba548d2b098716c7f9593e0249a1223e054873487fc6ba81
6
+ metadata.gz: ca0e1024f952693d368feb62c5c7ebc61ea1271da282e6c960bac2fa4e05ab94bde796d338d05f76613ff903bb9a393e865a51baa2f6974e4b61d3b82b77b192
7
+ data.tar.gz: 6131036f01204a0da69829c69496b47be7411b240c5c96d7365c5ebfb2655b92723f635c4100b93c55406c33b3c77760d19eeaeab9c3c5df5def534d2fc9a272
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- kube_schema (1.6.0)
4
+ kube_schema (1.7.0)
5
5
  json_schemer (~> 2.5.0)
6
6
  rubyshell (~> 1.5.0)
7
7
 
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Kube
4
4
  module Schema
5
- VERSION = "1.6.0"
5
+ VERSION = "1.7.0"
6
6
  end
7
7
  end
@@ -333334,6 +333334,1124 @@
333334
333334
  }
333335
333335
  ]
333336
333336
  },
333337
+ "io.k8s.metacontroller.v1alpha1.CompositeController": {
333338
+ "description": "CompositeController",
333339
+ "type": "object",
333340
+ "required": [
333341
+ "metadata",
333342
+ "spec"
333343
+ ],
333344
+ "properties": {
333345
+ "apiVersion": {
333346
+ "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
333347
+ "type": "string"
333348
+ },
333349
+ "kind": {
333350
+ "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
333351
+ "type": "string"
333352
+ },
333353
+ "metadata": {
333354
+ "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata",
333355
+ "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta"
333356
+ },
333357
+ "spec": {
333358
+ "type": "object",
333359
+ "required": [
333360
+ "parentResource"
333361
+ ],
333362
+ "properties": {
333363
+ "childResources": {
333364
+ "type": "array",
333365
+ "items": {
333366
+ "type": "object",
333367
+ "required": [
333368
+ "apiVersion",
333369
+ "resource"
333370
+ ],
333371
+ "properties": {
333372
+ "apiVersion": {
333373
+ "type": "string"
333374
+ },
333375
+ "resource": {
333376
+ "type": "string"
333377
+ },
333378
+ "updateStrategy": {
333379
+ "type": "object",
333380
+ "properties": {
333381
+ "method": {
333382
+ "type": "string",
333383
+ "enum": [
333384
+ "OnDelete",
333385
+ "Recreate",
333386
+ "InPlace",
333387
+ "RollingRecreate",
333388
+ "RollingInPlace"
333389
+ ]
333390
+ },
333391
+ "statusChecks": {
333392
+ "type": "object",
333393
+ "properties": {
333394
+ "conditions": {
333395
+ "type": "array",
333396
+ "items": {
333397
+ "type": "object",
333398
+ "required": [
333399
+ "type"
333400
+ ],
333401
+ "properties": {
333402
+ "reason": {
333403
+ "type": "string"
333404
+ },
333405
+ "status": {
333406
+ "type": "string"
333407
+ },
333408
+ "type": {
333409
+ "type": "string"
333410
+ }
333411
+ }
333412
+ }
333413
+ }
333414
+ }
333415
+ }
333416
+ }
333417
+ }
333418
+ }
333419
+ }
333420
+ },
333421
+ "generateSelector": {
333422
+ "type": "boolean"
333423
+ },
333424
+ "hooks": {
333425
+ "type": "object",
333426
+ "properties": {
333427
+ "customize": {
333428
+ "type": "object",
333429
+ "properties": {
333430
+ "version": {
333431
+ "type": "string",
333432
+ "enum": [
333433
+ "v1",
333434
+ "v2"
333435
+ ]
333436
+ },
333437
+ "webhook": {
333438
+ "type": "object",
333439
+ "properties": {
333440
+ "etag": {
333441
+ "type": "object",
333442
+ "properties": {
333443
+ "cacheCleanupSeconds": {
333444
+ "type": "integer",
333445
+ "format": "int32"
333446
+ },
333447
+ "cacheTimeoutSeconds": {
333448
+ "type": "integer",
333449
+ "format": "int32"
333450
+ },
333451
+ "enabled": {
333452
+ "type": "boolean"
333453
+ }
333454
+ }
333455
+ },
333456
+ "path": {
333457
+ "type": "string"
333458
+ },
333459
+ "responseUnMarshallMode": {
333460
+ "description": "Sets the json unmarshall mode. One of the 'loose' or 'strict'. In 'strict'\nmode additional checks are performed to detect unknown and duplicated fields.",
333461
+ "type": "string",
333462
+ "enum": [
333463
+ "loose",
333464
+ "strict"
333465
+ ]
333466
+ },
333467
+ "service": {
333468
+ "type": "object",
333469
+ "required": [
333470
+ "name",
333471
+ "namespace"
333472
+ ],
333473
+ "properties": {
333474
+ "name": {
333475
+ "type": "string"
333476
+ },
333477
+ "namespace": {
333478
+ "type": "string"
333479
+ },
333480
+ "port": {
333481
+ "type": "integer",
333482
+ "format": "int32"
333483
+ },
333484
+ "protocol": {
333485
+ "type": "string"
333486
+ }
333487
+ }
333488
+ },
333489
+ "timeout": {
333490
+ "type": "string",
333491
+ "format": "duration"
333492
+ },
333493
+ "url": {
333494
+ "type": "string"
333495
+ }
333496
+ }
333497
+ }
333498
+ }
333499
+ },
333500
+ "finalize": {
333501
+ "type": "object",
333502
+ "properties": {
333503
+ "version": {
333504
+ "type": "string",
333505
+ "enum": [
333506
+ "v1",
333507
+ "v2"
333508
+ ]
333509
+ },
333510
+ "webhook": {
333511
+ "type": "object",
333512
+ "properties": {
333513
+ "etag": {
333514
+ "type": "object",
333515
+ "properties": {
333516
+ "cacheCleanupSeconds": {
333517
+ "type": "integer",
333518
+ "format": "int32"
333519
+ },
333520
+ "cacheTimeoutSeconds": {
333521
+ "type": "integer",
333522
+ "format": "int32"
333523
+ },
333524
+ "enabled": {
333525
+ "type": "boolean"
333526
+ }
333527
+ }
333528
+ },
333529
+ "path": {
333530
+ "type": "string"
333531
+ },
333532
+ "responseUnMarshallMode": {
333533
+ "description": "Sets the json unmarshall mode. One of the 'loose' or 'strict'. In 'strict'\nmode additional checks are performed to detect unknown and duplicated fields.",
333534
+ "type": "string",
333535
+ "enum": [
333536
+ "loose",
333537
+ "strict"
333538
+ ]
333539
+ },
333540
+ "service": {
333541
+ "type": "object",
333542
+ "required": [
333543
+ "name",
333544
+ "namespace"
333545
+ ],
333546
+ "properties": {
333547
+ "name": {
333548
+ "type": "string"
333549
+ },
333550
+ "namespace": {
333551
+ "type": "string"
333552
+ },
333553
+ "port": {
333554
+ "type": "integer",
333555
+ "format": "int32"
333556
+ },
333557
+ "protocol": {
333558
+ "type": "string"
333559
+ }
333560
+ }
333561
+ },
333562
+ "timeout": {
333563
+ "type": "string",
333564
+ "format": "duration"
333565
+ },
333566
+ "url": {
333567
+ "type": "string"
333568
+ }
333569
+ }
333570
+ }
333571
+ }
333572
+ },
333573
+ "postUpdateChild": {
333574
+ "type": "object",
333575
+ "properties": {
333576
+ "version": {
333577
+ "type": "string",
333578
+ "enum": [
333579
+ "v1",
333580
+ "v2"
333581
+ ]
333582
+ },
333583
+ "webhook": {
333584
+ "type": "object",
333585
+ "properties": {
333586
+ "etag": {
333587
+ "type": "object",
333588
+ "properties": {
333589
+ "cacheCleanupSeconds": {
333590
+ "type": "integer",
333591
+ "format": "int32"
333592
+ },
333593
+ "cacheTimeoutSeconds": {
333594
+ "type": "integer",
333595
+ "format": "int32"
333596
+ },
333597
+ "enabled": {
333598
+ "type": "boolean"
333599
+ }
333600
+ }
333601
+ },
333602
+ "path": {
333603
+ "type": "string"
333604
+ },
333605
+ "responseUnMarshallMode": {
333606
+ "description": "Sets the json unmarshall mode. One of the 'loose' or 'strict'. In 'strict'\nmode additional checks are performed to detect unknown and duplicated fields.",
333607
+ "type": "string",
333608
+ "enum": [
333609
+ "loose",
333610
+ "strict"
333611
+ ]
333612
+ },
333613
+ "service": {
333614
+ "type": "object",
333615
+ "required": [
333616
+ "name",
333617
+ "namespace"
333618
+ ],
333619
+ "properties": {
333620
+ "name": {
333621
+ "type": "string"
333622
+ },
333623
+ "namespace": {
333624
+ "type": "string"
333625
+ },
333626
+ "port": {
333627
+ "type": "integer",
333628
+ "format": "int32"
333629
+ },
333630
+ "protocol": {
333631
+ "type": "string"
333632
+ }
333633
+ }
333634
+ },
333635
+ "timeout": {
333636
+ "type": "string",
333637
+ "format": "duration"
333638
+ },
333639
+ "url": {
333640
+ "type": "string"
333641
+ }
333642
+ }
333643
+ }
333644
+ }
333645
+ },
333646
+ "preUpdateChild": {
333647
+ "type": "object",
333648
+ "properties": {
333649
+ "version": {
333650
+ "type": "string",
333651
+ "enum": [
333652
+ "v1",
333653
+ "v2"
333654
+ ]
333655
+ },
333656
+ "webhook": {
333657
+ "type": "object",
333658
+ "properties": {
333659
+ "etag": {
333660
+ "type": "object",
333661
+ "properties": {
333662
+ "cacheCleanupSeconds": {
333663
+ "type": "integer",
333664
+ "format": "int32"
333665
+ },
333666
+ "cacheTimeoutSeconds": {
333667
+ "type": "integer",
333668
+ "format": "int32"
333669
+ },
333670
+ "enabled": {
333671
+ "type": "boolean"
333672
+ }
333673
+ }
333674
+ },
333675
+ "path": {
333676
+ "type": "string"
333677
+ },
333678
+ "responseUnMarshallMode": {
333679
+ "description": "Sets the json unmarshall mode. One of the 'loose' or 'strict'. In 'strict'\nmode additional checks are performed to detect unknown and duplicated fields.",
333680
+ "type": "string",
333681
+ "enum": [
333682
+ "loose",
333683
+ "strict"
333684
+ ]
333685
+ },
333686
+ "service": {
333687
+ "type": "object",
333688
+ "required": [
333689
+ "name",
333690
+ "namespace"
333691
+ ],
333692
+ "properties": {
333693
+ "name": {
333694
+ "type": "string"
333695
+ },
333696
+ "namespace": {
333697
+ "type": "string"
333698
+ },
333699
+ "port": {
333700
+ "type": "integer",
333701
+ "format": "int32"
333702
+ },
333703
+ "protocol": {
333704
+ "type": "string"
333705
+ }
333706
+ }
333707
+ },
333708
+ "timeout": {
333709
+ "type": "string",
333710
+ "format": "duration"
333711
+ },
333712
+ "url": {
333713
+ "type": "string"
333714
+ }
333715
+ }
333716
+ }
333717
+ }
333718
+ },
333719
+ "sync": {
333720
+ "type": "object",
333721
+ "properties": {
333722
+ "version": {
333723
+ "type": "string",
333724
+ "enum": [
333725
+ "v1",
333726
+ "v2"
333727
+ ]
333728
+ },
333729
+ "webhook": {
333730
+ "type": "object",
333731
+ "properties": {
333732
+ "etag": {
333733
+ "type": "object",
333734
+ "properties": {
333735
+ "cacheCleanupSeconds": {
333736
+ "type": "integer",
333737
+ "format": "int32"
333738
+ },
333739
+ "cacheTimeoutSeconds": {
333740
+ "type": "integer",
333741
+ "format": "int32"
333742
+ },
333743
+ "enabled": {
333744
+ "type": "boolean"
333745
+ }
333746
+ }
333747
+ },
333748
+ "path": {
333749
+ "type": "string"
333750
+ },
333751
+ "responseUnMarshallMode": {
333752
+ "description": "Sets the json unmarshall mode. One of the 'loose' or 'strict'. In 'strict'\nmode additional checks are performed to detect unknown and duplicated fields.",
333753
+ "type": "string",
333754
+ "enum": [
333755
+ "loose",
333756
+ "strict"
333757
+ ]
333758
+ },
333759
+ "service": {
333760
+ "type": "object",
333761
+ "required": [
333762
+ "name",
333763
+ "namespace"
333764
+ ],
333765
+ "properties": {
333766
+ "name": {
333767
+ "type": "string"
333768
+ },
333769
+ "namespace": {
333770
+ "type": "string"
333771
+ },
333772
+ "port": {
333773
+ "type": "integer",
333774
+ "format": "int32"
333775
+ },
333776
+ "protocol": {
333777
+ "type": "string"
333778
+ }
333779
+ }
333780
+ },
333781
+ "timeout": {
333782
+ "type": "string",
333783
+ "format": "duration"
333784
+ },
333785
+ "url": {
333786
+ "type": "string"
333787
+ }
333788
+ }
333789
+ }
333790
+ }
333791
+ }
333792
+ }
333793
+ },
333794
+ "parentResource": {
333795
+ "type": "object",
333796
+ "required": [
333797
+ "apiVersion",
333798
+ "resource"
333799
+ ],
333800
+ "properties": {
333801
+ "apiVersion": {
333802
+ "type": "string"
333803
+ },
333804
+ "ignoreStatusChanges": {
333805
+ "type": "boolean"
333806
+ },
333807
+ "labelSelector": {
333808
+ "description": "A label selector is a label query over a set of resources. The result of matchLabels and\nmatchExpressions are ANDed. An empty label selector matches all objects. A null\nlabel selector matches no objects.",
333809
+ "type": "object",
333810
+ "properties": {
333811
+ "matchExpressions": {
333812
+ "description": "matchExpressions is a list of label selector requirements. The requirements are ANDed.",
333813
+ "type": "array",
333814
+ "items": {
333815
+ "description": "A label selector requirement is a selector that contains values, a key, and an operator that\nrelates the key and values.",
333816
+ "type": "object",
333817
+ "required": [
333818
+ "key",
333819
+ "operator"
333820
+ ],
333821
+ "properties": {
333822
+ "key": {
333823
+ "description": "key is the label key that the selector applies to.",
333824
+ "type": "string"
333825
+ },
333826
+ "operator": {
333827
+ "description": "operator represents a key's relationship to a set of values.\nValid operators are In, NotIn, Exists and DoesNotExist.",
333828
+ "type": "string"
333829
+ },
333830
+ "values": {
333831
+ "description": "values is an array of string values. If the operator is In or NotIn,\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\nthe values array must be empty. This array is replaced during a strategic\nmerge patch.",
333832
+ "type": "array",
333833
+ "items": {
333834
+ "type": "string"
333835
+ },
333836
+ "x-kubernetes-list-type": "atomic"
333837
+ }
333838
+ }
333839
+ },
333840
+ "x-kubernetes-list-type": "atomic"
333841
+ },
333842
+ "matchLabels": {
333843
+ "description": "matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\nmap is equivalent to an element of matchExpressions, whose key field is \"key\", the\noperator is \"In\", and the values array contains only \"value\". The requirements are ANDed.",
333844
+ "type": "object",
333845
+ "additionalProperties": {
333846
+ "type": "string"
333847
+ }
333848
+ }
333849
+ },
333850
+ "x-kubernetes-map-type": "atomic"
333851
+ },
333852
+ "resource": {
333853
+ "type": "string"
333854
+ },
333855
+ "revisionHistory": {
333856
+ "type": "object",
333857
+ "properties": {
333858
+ "fieldPaths": {
333859
+ "type": "array",
333860
+ "items": {
333861
+ "type": "string"
333862
+ }
333863
+ }
333864
+ }
333865
+ }
333866
+ }
333867
+ },
333868
+ "resyncPeriodSeconds": {
333869
+ "type": "integer",
333870
+ "format": "int32"
333871
+ }
333872
+ }
333873
+ },
333874
+ "status": {
333875
+ "type": "object"
333876
+ }
333877
+ },
333878
+ "x-kubernetes-group-version-kind": [
333879
+ {
333880
+ "group": "metacontroller.k8s.io",
333881
+ "kind": "CompositeController",
333882
+ "version": "v1alpha1"
333883
+ }
333884
+ ]
333885
+ },
333886
+ "io.k8s.metacontroller.v1alpha1.CompositeControllerList": {
333887
+ "description": "CompositeControllerList is a list of CompositeController",
333888
+ "type": "object",
333889
+ "required": [
333890
+ "items"
333891
+ ],
333892
+ "properties": {
333893
+ "apiVersion": {
333894
+ "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
333895
+ "type": "string"
333896
+ },
333897
+ "items": {
333898
+ "description": "List of compositecontrollers. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md",
333899
+ "type": "array",
333900
+ "items": {
333901
+ "$ref": "#/definitions/io.k8s.metacontroller.v1alpha1.CompositeController"
333902
+ }
333903
+ },
333904
+ "kind": {
333905
+ "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
333906
+ "type": "string"
333907
+ },
333908
+ "metadata": {
333909
+ "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
333910
+ "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta"
333911
+ }
333912
+ },
333913
+ "x-kubernetes-group-version-kind": [
333914
+ {
333915
+ "group": "metacontroller.k8s.io",
333916
+ "kind": "CompositeControllerList",
333917
+ "version": "v1alpha1"
333918
+ }
333919
+ ]
333920
+ },
333921
+ "io.k8s.metacontroller.v1alpha1.ControllerRevision": {
333922
+ "description": "ControllerRevision",
333923
+ "type": "object",
333924
+ "required": [
333925
+ "metadata",
333926
+ "parentPatch"
333927
+ ],
333928
+ "properties": {
333929
+ "apiVersion": {
333930
+ "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
333931
+ "type": "string"
333932
+ },
333933
+ "children": {
333934
+ "type": "array",
333935
+ "items": {
333936
+ "type": "object",
333937
+ "required": [
333938
+ "apiGroup",
333939
+ "kind",
333940
+ "names"
333941
+ ],
333942
+ "properties": {
333943
+ "apiGroup": {
333944
+ "type": "string"
333945
+ },
333946
+ "kind": {
333947
+ "type": "string"
333948
+ },
333949
+ "names": {
333950
+ "type": "array",
333951
+ "items": {
333952
+ "type": "string"
333953
+ }
333954
+ }
333955
+ }
333956
+ }
333957
+ },
333958
+ "kind": {
333959
+ "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
333960
+ "type": "string"
333961
+ },
333962
+ "metadata": {
333963
+ "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata",
333964
+ "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta"
333965
+ },
333966
+ "parentPatch": {
333967
+ "x-kubernetes-preserve-unknown-fields": true
333968
+ }
333969
+ },
333970
+ "x-kubernetes-group-version-kind": [
333971
+ {
333972
+ "group": "metacontroller.k8s.io",
333973
+ "kind": "ControllerRevision",
333974
+ "version": "v1alpha1"
333975
+ }
333976
+ ]
333977
+ },
333978
+ "io.k8s.metacontroller.v1alpha1.ControllerRevisionList": {
333979
+ "description": "ControllerRevisionList is a list of ControllerRevision",
333980
+ "type": "object",
333981
+ "required": [
333982
+ "items"
333983
+ ],
333984
+ "properties": {
333985
+ "apiVersion": {
333986
+ "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
333987
+ "type": "string"
333988
+ },
333989
+ "items": {
333990
+ "description": "List of controllerrevisions. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md",
333991
+ "type": "array",
333992
+ "items": {
333993
+ "$ref": "#/definitions/io.k8s.metacontroller.v1alpha1.ControllerRevision"
333994
+ }
333995
+ },
333996
+ "kind": {
333997
+ "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
333998
+ "type": "string"
333999
+ },
334000
+ "metadata": {
334001
+ "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
334002
+ "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta"
334003
+ }
334004
+ },
334005
+ "x-kubernetes-group-version-kind": [
334006
+ {
334007
+ "group": "metacontroller.k8s.io",
334008
+ "kind": "ControllerRevisionList",
334009
+ "version": "v1alpha1"
334010
+ }
334011
+ ]
334012
+ },
334013
+ "io.k8s.metacontroller.v1alpha1.DecoratorController": {
334014
+ "description": "DecoratorController",
334015
+ "type": "object",
334016
+ "required": [
334017
+ "metadata",
334018
+ "spec"
334019
+ ],
334020
+ "properties": {
334021
+ "apiVersion": {
334022
+ "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
334023
+ "type": "string"
334024
+ },
334025
+ "kind": {
334026
+ "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
334027
+ "type": "string"
334028
+ },
334029
+ "metadata": {
334030
+ "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata",
334031
+ "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta"
334032
+ },
334033
+ "spec": {
334034
+ "type": "object",
334035
+ "required": [
334036
+ "resources"
334037
+ ],
334038
+ "properties": {
334039
+ "attachments": {
334040
+ "type": "array",
334041
+ "items": {
334042
+ "type": "object",
334043
+ "required": [
334044
+ "apiVersion",
334045
+ "resource"
334046
+ ],
334047
+ "properties": {
334048
+ "apiVersion": {
334049
+ "type": "string"
334050
+ },
334051
+ "resource": {
334052
+ "type": "string"
334053
+ },
334054
+ "updateStrategy": {
334055
+ "type": "object",
334056
+ "properties": {
334057
+ "method": {
334058
+ "type": "string",
334059
+ "enum": [
334060
+ "OnDelete",
334061
+ "Recreate",
334062
+ "InPlace",
334063
+ "RollingRecreate",
334064
+ "RollingInPlace"
334065
+ ]
334066
+ }
334067
+ }
334068
+ }
334069
+ }
334070
+ }
334071
+ },
334072
+ "hooks": {
334073
+ "type": "object",
334074
+ "properties": {
334075
+ "customize": {
334076
+ "type": "object",
334077
+ "properties": {
334078
+ "version": {
334079
+ "type": "string",
334080
+ "enum": [
334081
+ "v1",
334082
+ "v2"
334083
+ ]
334084
+ },
334085
+ "webhook": {
334086
+ "type": "object",
334087
+ "properties": {
334088
+ "etag": {
334089
+ "type": "object",
334090
+ "properties": {
334091
+ "cacheCleanupSeconds": {
334092
+ "type": "integer",
334093
+ "format": "int32"
334094
+ },
334095
+ "cacheTimeoutSeconds": {
334096
+ "type": "integer",
334097
+ "format": "int32"
334098
+ },
334099
+ "enabled": {
334100
+ "type": "boolean"
334101
+ }
334102
+ }
334103
+ },
334104
+ "path": {
334105
+ "type": "string"
334106
+ },
334107
+ "responseUnMarshallMode": {
334108
+ "description": "Sets the json unmarshall mode. One of the 'loose' or 'strict'. In 'strict'\nmode additional checks are performed to detect unknown and duplicated fields.",
334109
+ "type": "string",
334110
+ "enum": [
334111
+ "loose",
334112
+ "strict"
334113
+ ]
334114
+ },
334115
+ "service": {
334116
+ "type": "object",
334117
+ "required": [
334118
+ "name",
334119
+ "namespace"
334120
+ ],
334121
+ "properties": {
334122
+ "name": {
334123
+ "type": "string"
334124
+ },
334125
+ "namespace": {
334126
+ "type": "string"
334127
+ },
334128
+ "port": {
334129
+ "type": "integer",
334130
+ "format": "int32"
334131
+ },
334132
+ "protocol": {
334133
+ "type": "string"
334134
+ }
334135
+ }
334136
+ },
334137
+ "timeout": {
334138
+ "type": "string",
334139
+ "format": "duration"
334140
+ },
334141
+ "url": {
334142
+ "type": "string"
334143
+ }
334144
+ }
334145
+ }
334146
+ }
334147
+ },
334148
+ "finalize": {
334149
+ "type": "object",
334150
+ "properties": {
334151
+ "version": {
334152
+ "type": "string",
334153
+ "enum": [
334154
+ "v1",
334155
+ "v2"
334156
+ ]
334157
+ },
334158
+ "webhook": {
334159
+ "type": "object",
334160
+ "properties": {
334161
+ "etag": {
334162
+ "type": "object",
334163
+ "properties": {
334164
+ "cacheCleanupSeconds": {
334165
+ "type": "integer",
334166
+ "format": "int32"
334167
+ },
334168
+ "cacheTimeoutSeconds": {
334169
+ "type": "integer",
334170
+ "format": "int32"
334171
+ },
334172
+ "enabled": {
334173
+ "type": "boolean"
334174
+ }
334175
+ }
334176
+ },
334177
+ "path": {
334178
+ "type": "string"
334179
+ },
334180
+ "responseUnMarshallMode": {
334181
+ "description": "Sets the json unmarshall mode. One of the 'loose' or 'strict'. In 'strict'\nmode additional checks are performed to detect unknown and duplicated fields.",
334182
+ "type": "string",
334183
+ "enum": [
334184
+ "loose",
334185
+ "strict"
334186
+ ]
334187
+ },
334188
+ "service": {
334189
+ "type": "object",
334190
+ "required": [
334191
+ "name",
334192
+ "namespace"
334193
+ ],
334194
+ "properties": {
334195
+ "name": {
334196
+ "type": "string"
334197
+ },
334198
+ "namespace": {
334199
+ "type": "string"
334200
+ },
334201
+ "port": {
334202
+ "type": "integer",
334203
+ "format": "int32"
334204
+ },
334205
+ "protocol": {
334206
+ "type": "string"
334207
+ }
334208
+ }
334209
+ },
334210
+ "timeout": {
334211
+ "type": "string",
334212
+ "format": "duration"
334213
+ },
334214
+ "url": {
334215
+ "type": "string"
334216
+ }
334217
+ }
334218
+ }
334219
+ }
334220
+ },
334221
+ "sync": {
334222
+ "type": "object",
334223
+ "properties": {
334224
+ "version": {
334225
+ "type": "string",
334226
+ "enum": [
334227
+ "v1",
334228
+ "v2"
334229
+ ]
334230
+ },
334231
+ "webhook": {
334232
+ "type": "object",
334233
+ "properties": {
334234
+ "etag": {
334235
+ "type": "object",
334236
+ "properties": {
334237
+ "cacheCleanupSeconds": {
334238
+ "type": "integer",
334239
+ "format": "int32"
334240
+ },
334241
+ "cacheTimeoutSeconds": {
334242
+ "type": "integer",
334243
+ "format": "int32"
334244
+ },
334245
+ "enabled": {
334246
+ "type": "boolean"
334247
+ }
334248
+ }
334249
+ },
334250
+ "path": {
334251
+ "type": "string"
334252
+ },
334253
+ "responseUnMarshallMode": {
334254
+ "description": "Sets the json unmarshall mode. One of the 'loose' or 'strict'. In 'strict'\nmode additional checks are performed to detect unknown and duplicated fields.",
334255
+ "type": "string",
334256
+ "enum": [
334257
+ "loose",
334258
+ "strict"
334259
+ ]
334260
+ },
334261
+ "service": {
334262
+ "type": "object",
334263
+ "required": [
334264
+ "name",
334265
+ "namespace"
334266
+ ],
334267
+ "properties": {
334268
+ "name": {
334269
+ "type": "string"
334270
+ },
334271
+ "namespace": {
334272
+ "type": "string"
334273
+ },
334274
+ "port": {
334275
+ "type": "integer",
334276
+ "format": "int32"
334277
+ },
334278
+ "protocol": {
334279
+ "type": "string"
334280
+ }
334281
+ }
334282
+ },
334283
+ "timeout": {
334284
+ "type": "string",
334285
+ "format": "duration"
334286
+ },
334287
+ "url": {
334288
+ "type": "string"
334289
+ }
334290
+ }
334291
+ }
334292
+ }
334293
+ }
334294
+ }
334295
+ },
334296
+ "resources": {
334297
+ "type": "array",
334298
+ "items": {
334299
+ "type": "object",
334300
+ "required": [
334301
+ "apiVersion",
334302
+ "resource"
334303
+ ],
334304
+ "properties": {
334305
+ "annotationSelector": {
334306
+ "type": "object",
334307
+ "properties": {
334308
+ "matchAnnotations": {
334309
+ "type": "object",
334310
+ "additionalProperties": {
334311
+ "type": "string"
334312
+ }
334313
+ },
334314
+ "matchExpressions": {
334315
+ "type": "array",
334316
+ "items": {
334317
+ "description": "A label selector requirement is a selector that contains values, a key, and an operator that\nrelates the key and values.",
334318
+ "type": "object",
334319
+ "required": [
334320
+ "key",
334321
+ "operator"
334322
+ ],
334323
+ "properties": {
334324
+ "key": {
334325
+ "description": "key is the label key that the selector applies to.",
334326
+ "type": "string"
334327
+ },
334328
+ "operator": {
334329
+ "description": "operator represents a key's relationship to a set of values.\nValid operators are In, NotIn, Exists and DoesNotExist.",
334330
+ "type": "string"
334331
+ },
334332
+ "values": {
334333
+ "description": "values is an array of string values. If the operator is In or NotIn,\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\nthe values array must be empty. This array is replaced during a strategic\nmerge patch.",
334334
+ "type": "array",
334335
+ "items": {
334336
+ "type": "string"
334337
+ },
334338
+ "x-kubernetes-list-type": "atomic"
334339
+ }
334340
+ }
334341
+ }
334342
+ }
334343
+ }
334344
+ },
334345
+ "apiVersion": {
334346
+ "type": "string"
334347
+ },
334348
+ "ignoreStatusChanges": {
334349
+ "type": "boolean"
334350
+ },
334351
+ "labelSelector": {
334352
+ "description": "A label selector is a label query over a set of resources. The result of matchLabels and\nmatchExpressions are ANDed. An empty label selector matches all objects. A null\nlabel selector matches no objects.",
334353
+ "type": "object",
334354
+ "properties": {
334355
+ "matchExpressions": {
334356
+ "description": "matchExpressions is a list of label selector requirements. The requirements are ANDed.",
334357
+ "type": "array",
334358
+ "items": {
334359
+ "description": "A label selector requirement is a selector that contains values, a key, and an operator that\nrelates the key and values.",
334360
+ "type": "object",
334361
+ "required": [
334362
+ "key",
334363
+ "operator"
334364
+ ],
334365
+ "properties": {
334366
+ "key": {
334367
+ "description": "key is the label key that the selector applies to.",
334368
+ "type": "string"
334369
+ },
334370
+ "operator": {
334371
+ "description": "operator represents a key's relationship to a set of values.\nValid operators are In, NotIn, Exists and DoesNotExist.",
334372
+ "type": "string"
334373
+ },
334374
+ "values": {
334375
+ "description": "values is an array of string values. If the operator is In or NotIn,\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\nthe values array must be empty. This array is replaced during a strategic\nmerge patch.",
334376
+ "type": "array",
334377
+ "items": {
334378
+ "type": "string"
334379
+ },
334380
+ "x-kubernetes-list-type": "atomic"
334381
+ }
334382
+ }
334383
+ },
334384
+ "x-kubernetes-list-type": "atomic"
334385
+ },
334386
+ "matchLabels": {
334387
+ "description": "matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\nmap is equivalent to an element of matchExpressions, whose key field is \"key\", the\noperator is \"In\", and the values array contains only \"value\". The requirements are ANDed.",
334388
+ "type": "object",
334389
+ "additionalProperties": {
334390
+ "type": "string"
334391
+ }
334392
+ }
334393
+ },
334394
+ "x-kubernetes-map-type": "atomic"
334395
+ },
334396
+ "resource": {
334397
+ "type": "string"
334398
+ }
334399
+ }
334400
+ }
334401
+ },
334402
+ "resyncPeriodSeconds": {
334403
+ "type": "integer",
334404
+ "format": "int32"
334405
+ }
334406
+ }
334407
+ },
334408
+ "status": {
334409
+ "type": "object"
334410
+ }
334411
+ },
334412
+ "x-kubernetes-group-version-kind": [
334413
+ {
334414
+ "group": "metacontroller.k8s.io",
334415
+ "kind": "DecoratorController",
334416
+ "version": "v1alpha1"
334417
+ }
334418
+ ]
334419
+ },
334420
+ "io.k8s.metacontroller.v1alpha1.DecoratorControllerList": {
334421
+ "description": "DecoratorControllerList is a list of DecoratorController",
334422
+ "type": "object",
334423
+ "required": [
334424
+ "items"
334425
+ ],
334426
+ "properties": {
334427
+ "apiVersion": {
334428
+ "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
334429
+ "type": "string"
334430
+ },
334431
+ "items": {
334432
+ "description": "List of decoratorcontrollers. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md",
334433
+ "type": "array",
334434
+ "items": {
334435
+ "$ref": "#/definitions/io.k8s.metacontroller.v1alpha1.DecoratorController"
334436
+ }
334437
+ },
334438
+ "kind": {
334439
+ "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
334440
+ "type": "string"
334441
+ },
334442
+ "metadata": {
334443
+ "description": "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
334444
+ "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta"
334445
+ }
334446
+ },
334447
+ "x-kubernetes-group-version-kind": [
334448
+ {
334449
+ "group": "metacontroller.k8s.io",
334450
+ "kind": "DecoratorControllerList",
334451
+ "version": "v1alpha1"
334452
+ }
334453
+ ]
334454
+ },
333337
334455
  "io.k8s.networking.gateway.v1.GRPCRoute": {
333338
334456
  "description": "GRPCRoute provides a way to route gRPC requests. This includes the capability\nto match requests by hostname, gRPC service, gRPC method, or HTTP/2 header.\nFilters can be used to specify additional processing steps. Backends specify\nwhere matching requests will be routed.\n\nGRPCRoute falls under extended support within the Gateway API. Within the\nfollowing specification, the word \"MUST\" indicates that an implementation\nsupporting GRPCRoute must conform to the indicated requirement, but an\nimplementation not supporting this route type need not follow the requirement\nunless explicitly indicated.\n\nImplementations supporting `GRPCRoute` with the `HTTPS` `ProtocolType` MUST\naccept HTTP/2 connections without an initial upgrade from HTTP/1.1, i.e. via\nALPN. If the implementation does not support this, then it MUST set the\n\"Accepted\" condition to \"False\" for the affected listener with a reason of\n\"UnsupportedProtocol\". Implementations MAY also accept HTTP/2 connections\nwith an upgrade from HTTP/1.\n\nImplementations supporting `GRPCRoute` with the `HTTP` `ProtocolType` MUST\nsupport HTTP/2 over cleartext TCP (h2c,\nhttps://www.rfc-editor.org/rfc/rfc7540#section-3.1) without an initial\nupgrade from HTTP/1.1, i.e. with prior knowledge\n(https://www.rfc-editor.org/rfc/rfc7540#section-3.4). If the implementation\ndoes not support this, then it MUST set the \"Accepted\" condition to \"False\"\nfor the affected listener with a reason of \"UnsupportedProtocol\".\nImplementations MAY also accept HTTP/2 connections with an upgrade from\nHTTP/1, i.e. without prior knowledge.",
333339
334457
  "type": "object",
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kube_schema
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.6.0
4
+ version: 1.7.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nathan K