Skip to content

Commit 544b526

Browse files
committed
Bump version to 1.14
1 parent 8429cfb commit 544b526

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

81 files changed

+272199
-239405
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
f2872b27c3ca03b1c115c9539bd83e7f220dc25be05561b18a801c989410cfc6
1+
284acb5a4085e4d8f76178e5f0057cf9f5db2b3b6c244d34f49b7f1d8b7c9fae

kubernetes/kubernetes-client-core.cabal

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ description: .
88
.
99
base path: http://localhost
1010
.
11-
Kubernetes API version: v1.13.4
11+
Kubernetes API version: v1.14.2
1212
.
1313
OpenAPI version: 3.0.1
1414
.
@@ -65,7 +65,6 @@ library
6565
exposed-modules:
6666
Kubernetes.OpenAPI
6767
Kubernetes.OpenAPI.API.Admissionregistration
68-
Kubernetes.OpenAPI.API.AdmissionregistrationV1alpha1
6968
Kubernetes.OpenAPI.API.AdmissionregistrationV1beta1
7069
Kubernetes.OpenAPI.API.Apiextensions
7170
Kubernetes.OpenAPI.API.ApiextensionsV1beta1
@@ -96,6 +95,7 @@ library
9695
Kubernetes.OpenAPI.API.Certificates
9796
Kubernetes.OpenAPI.API.CertificatesV1beta1
9897
Kubernetes.OpenAPI.API.Coordination
98+
Kubernetes.OpenAPI.API.CoordinationV1
9999
Kubernetes.OpenAPI.API.CoordinationV1beta1
100100
Kubernetes.OpenAPI.API.Core
101101
Kubernetes.OpenAPI.API.CoreV1
@@ -107,13 +107,18 @@ library
107107
Kubernetes.OpenAPI.API.Logs
108108
Kubernetes.OpenAPI.API.Networking
109109
Kubernetes.OpenAPI.API.NetworkingV1
110+
Kubernetes.OpenAPI.API.NetworkingV1beta1
111+
Kubernetes.OpenAPI.API.Node
112+
Kubernetes.OpenAPI.API.NodeV1alpha1
113+
Kubernetes.OpenAPI.API.NodeV1beta1
110114
Kubernetes.OpenAPI.API.Policy
111115
Kubernetes.OpenAPI.API.PolicyV1beta1
112116
Kubernetes.OpenAPI.API.RbacAuthorization
113117
Kubernetes.OpenAPI.API.RbacAuthorizationV1
114118
Kubernetes.OpenAPI.API.RbacAuthorizationV1alpha1
115119
Kubernetes.OpenAPI.API.RbacAuthorizationV1beta1
116120
Kubernetes.OpenAPI.API.Scheduling
121+
Kubernetes.OpenAPI.API.SchedulingV1
117122
Kubernetes.OpenAPI.API.SchedulingV1alpha1
118123
Kubernetes.OpenAPI.API.SchedulingV1beta1
119124
Kubernetes.OpenAPI.API.Settings

kubernetes/lib/Kubernetes/OpenAPI.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
55
66
OpenAPI Version: 3.0.1
7-
Kubernetes API version: v1.13.4
7+
Kubernetes API version: v1.14.2
88
Generated by OpenAPI Generator (https://openapi-generator.tech)
99
-}
1010

kubernetes/lib/Kubernetes/OpenAPI/API/Admissionregistration.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
55
66
OpenAPI Version: 3.0.1
7-
Kubernetes API version: v1.13.4
7+
Kubernetes API version: v1.14.2
88
Generated by OpenAPI Generator (https://openapi-generator.tech)
99
-}
1010

kubernetes/lib/Kubernetes/OpenAPI/API/AdmissionregistrationV1beta1.hs

Lines changed: 45 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
55
66
OpenAPI Version: 3.0.1
7-
Kubernetes API version: v1.13.4
7+
Kubernetes API version: v1.14.2
88
Generated by OpenAPI Generator (https://openapi-generator.tech)
99
-}
1010

@@ -79,11 +79,6 @@ createMutatingWebhookConfiguration _ _ body =
7979
data CreateMutatingWebhookConfiguration
8080
instance HasBodyParam CreateMutatingWebhookConfiguration V1beta1MutatingWebhookConfiguration
8181

82-
-- | /Optional Param/ "includeUninitialized" - If true, partially initialized resources are included in the response.
83-
instance HasOptionalParam CreateMutatingWebhookConfiguration IncludeUninitialized where
84-
applyOptionalParam req (IncludeUninitialized xs) =
85-
req `setQuery` toQuery ("includeUninitialized", Just xs)
86-
8782
-- | /Optional Param/ "pretty" - If 'true', then the output is pretty printed.
8883
instance HasOptionalParam CreateMutatingWebhookConfiguration Pretty where
8984
applyOptionalParam req (Pretty xs) =
@@ -93,6 +88,11 @@ instance HasOptionalParam CreateMutatingWebhookConfiguration Pretty where
9388
instance HasOptionalParam CreateMutatingWebhookConfiguration DryRun where
9489
applyOptionalParam req (DryRun xs) =
9590
req `setQuery` toQuery ("dryRun", Just xs)
91+
92+
-- | /Optional Param/ "fieldManager" - fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
93+
instance HasOptionalParam CreateMutatingWebhookConfiguration FieldManager where
94+
applyOptionalParam req (FieldManager xs) =
95+
req `setQuery` toQuery ("fieldManager", Just xs)
9696

9797
-- | @*/*@
9898
instance MimeType mtype => Consumes CreateMutatingWebhookConfiguration mtype
@@ -127,11 +127,6 @@ createValidatingWebhookConfiguration _ _ body =
127127
data CreateValidatingWebhookConfiguration
128128
instance HasBodyParam CreateValidatingWebhookConfiguration V1beta1ValidatingWebhookConfiguration
129129

130-
-- | /Optional Param/ "includeUninitialized" - If true, partially initialized resources are included in the response.
131-
instance HasOptionalParam CreateValidatingWebhookConfiguration IncludeUninitialized where
132-
applyOptionalParam req (IncludeUninitialized xs) =
133-
req `setQuery` toQuery ("includeUninitialized", Just xs)
134-
135130
-- | /Optional Param/ "pretty" - If 'true', then the output is pretty printed.
136131
instance HasOptionalParam CreateValidatingWebhookConfiguration Pretty where
137132
applyOptionalParam req (Pretty xs) =
@@ -141,6 +136,11 @@ instance HasOptionalParam CreateValidatingWebhookConfiguration Pretty where
141136
instance HasOptionalParam CreateValidatingWebhookConfiguration DryRun where
142137
applyOptionalParam req (DryRun xs) =
143138
req `setQuery` toQuery ("dryRun", Just xs)
139+
140+
-- | /Optional Param/ "fieldManager" - fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
141+
instance HasOptionalParam CreateValidatingWebhookConfiguration FieldManager where
142+
applyOptionalParam req (FieldManager xs) =
143+
req `setQuery` toQuery ("fieldManager", Just xs)
144144

145145
-- | @*/*@
146146
instance MimeType mtype => Consumes CreateValidatingWebhookConfiguration mtype
@@ -170,11 +170,6 @@ deleteCollectionMutatingWebhookConfiguration _ =
170170

171171
data DeleteCollectionMutatingWebhookConfiguration
172172

173-
-- | /Optional Param/ "includeUninitialized" - If true, partially initialized resources are included in the response.
174-
instance HasOptionalParam DeleteCollectionMutatingWebhookConfiguration IncludeUninitialized where
175-
applyOptionalParam req (IncludeUninitialized xs) =
176-
req `setQuery` toQuery ("includeUninitialized", Just xs)
177-
178173
-- | /Optional Param/ "pretty" - If 'true', then the output is pretty printed.
179174
instance HasOptionalParam DeleteCollectionMutatingWebhookConfiguration Pretty where
180175
applyOptionalParam req (Pretty xs) =
@@ -239,11 +234,6 @@ deleteCollectionValidatingWebhookConfiguration _ =
239234

240235
data DeleteCollectionValidatingWebhookConfiguration
241236

242-
-- | /Optional Param/ "includeUninitialized" - If true, partially initialized resources are included in the response.
243-
instance HasOptionalParam DeleteCollectionValidatingWebhookConfiguration IncludeUninitialized where
244-
applyOptionalParam req (IncludeUninitialized xs) =
245-
req `setQuery` toQuery ("includeUninitialized", Just xs)
246-
247237
-- | /Optional Param/ "pretty" - If 'true', then the output is pretty printed.
248238
instance HasOptionalParam DeleteCollectionValidatingWebhookConfiguration Pretty where
249239
applyOptionalParam req (Pretty xs) =
@@ -446,11 +436,6 @@ listMutatingWebhookConfiguration _ =
446436

447437
data ListMutatingWebhookConfiguration
448438

449-
-- | /Optional Param/ "includeUninitialized" - If true, partially initialized resources are included in the response.
450-
instance HasOptionalParam ListMutatingWebhookConfiguration IncludeUninitialized where
451-
applyOptionalParam req (IncludeUninitialized xs) =
452-
req `setQuery` toQuery ("includeUninitialized", Just xs)
453-
454439
-- | /Optional Param/ "pretty" - If 'true', then the output is pretty printed.
455440
instance HasOptionalParam ListMutatingWebhookConfiguration Pretty where
456441
applyOptionalParam req (Pretty xs) =
@@ -519,11 +504,6 @@ listValidatingWebhookConfiguration _ =
519504

520505
data ListValidatingWebhookConfiguration
521506

522-
-- | /Optional Param/ "includeUninitialized" - If true, partially initialized resources are included in the response.
523-
instance HasOptionalParam ListValidatingWebhookConfiguration IncludeUninitialized where
524-
applyOptionalParam req (IncludeUninitialized xs) =
525-
req `setQuery` toQuery ("includeUninitialized", Just xs)
526-
527507
-- | /Optional Param/ "pretty" - If 'true', then the output is pretty printed.
528508
instance HasOptionalParam ListValidatingWebhookConfiguration Pretty where
529509
applyOptionalParam req (Pretty xs) =
@@ -608,6 +588,16 @@ instance HasOptionalParam PatchMutatingWebhookConfiguration DryRun where
608588
applyOptionalParam req (DryRun xs) =
609589
req `setQuery` toQuery ("dryRun", Just xs)
610590

591+
-- | /Optional Param/ "fieldManager" - fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
592+
instance HasOptionalParam PatchMutatingWebhookConfiguration FieldManager where
593+
applyOptionalParam req (FieldManager xs) =
594+
req `setQuery` toQuery ("fieldManager", Just xs)
595+
596+
-- | /Optional Param/ "force" - Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
597+
instance HasOptionalParam PatchMutatingWebhookConfiguration Force where
598+
applyOptionalParam req (Force xs) =
599+
req `setQuery` toQuery ("force", Just xs)
600+
611601
-- | @application/json-patch+json@
612602
instance Consumes PatchMutatingWebhookConfiguration MimeJsonPatchjson
613603
-- | @application/merge-patch+json@
@@ -656,6 +646,16 @@ instance HasOptionalParam PatchValidatingWebhookConfiguration DryRun where
656646
applyOptionalParam req (DryRun xs) =
657647
req `setQuery` toQuery ("dryRun", Just xs)
658648

649+
-- | /Optional Param/ "fieldManager" - fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint. This field is required for apply requests (application/apply-patch) but optional for non-apply patch types (JsonPatch, MergePatch, StrategicMergePatch).
650+
instance HasOptionalParam PatchValidatingWebhookConfiguration FieldManager where
651+
applyOptionalParam req (FieldManager xs) =
652+
req `setQuery` toQuery ("fieldManager", Just xs)
653+
654+
-- | /Optional Param/ "force" - Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.
655+
instance HasOptionalParam PatchValidatingWebhookConfiguration Force where
656+
applyOptionalParam req (Force xs) =
657+
req `setQuery` toQuery ("force", Just xs)
658+
659659
-- | @application/json-patch+json@
660660
instance Consumes PatchValidatingWebhookConfiguration MimeJsonPatchjson
661661
-- | @application/merge-patch+json@
@@ -694,12 +694,12 @@ instance HasOptionalParam ReadMutatingWebhookConfiguration Pretty where
694694
applyOptionalParam req (Pretty xs) =
695695
req `setQuery` toQuery ("pretty", Just xs)
696696

697-
-- | /Optional Param/ "exact" - Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.
697+
-- | /Optional Param/ "exact" - Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18.
698698
instance HasOptionalParam ReadMutatingWebhookConfiguration Exact where
699699
applyOptionalParam req (Exact xs) =
700700
req `setQuery` toQuery ("exact", Just xs)
701701

702-
-- | /Optional Param/ "export" - Should this value be exported. Export strips fields that a user can not specify.
702+
-- | /Optional Param/ "export" - Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
703703
instance HasOptionalParam ReadMutatingWebhookConfiguration Export where
704704
applyOptionalParam req (Export xs) =
705705
req `setQuery` toQuery ("export", Just xs)
@@ -734,12 +734,12 @@ instance HasOptionalParam ReadValidatingWebhookConfiguration Pretty where
734734
applyOptionalParam req (Pretty xs) =
735735
req `setQuery` toQuery ("pretty", Just xs)
736736

737-
-- | /Optional Param/ "exact" - Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.
737+
-- | /Optional Param/ "exact" - Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'. Deprecated. Planned for removal in 1.18.
738738
instance HasOptionalParam ReadValidatingWebhookConfiguration Exact where
739739
applyOptionalParam req (Exact xs) =
740740
req `setQuery` toQuery ("exact", Just xs)
741741

742-
-- | /Optional Param/ "export" - Should this value be exported. Export strips fields that a user can not specify.
742+
-- | /Optional Param/ "export" - Should this value be exported. Export strips fields that a user can not specify. Deprecated. Planned for removal in 1.18.
743743
instance HasOptionalParam ReadValidatingWebhookConfiguration Export where
744744
applyOptionalParam req (Export xs) =
745745
req `setQuery` toQuery ("export", Just xs)
@@ -783,6 +783,11 @@ instance HasOptionalParam ReplaceMutatingWebhookConfiguration Pretty where
783783
instance HasOptionalParam ReplaceMutatingWebhookConfiguration DryRun where
784784
applyOptionalParam req (DryRun xs) =
785785
req `setQuery` toQuery ("dryRun", Just xs)
786+
787+
-- | /Optional Param/ "fieldManager" - fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
788+
instance HasOptionalParam ReplaceMutatingWebhookConfiguration FieldManager where
789+
applyOptionalParam req (FieldManager xs) =
790+
req `setQuery` toQuery ("fieldManager", Just xs)
786791

787792
-- | @*/*@
788793
instance MimeType mtype => Consumes ReplaceMutatingWebhookConfiguration mtype
@@ -827,6 +832,11 @@ instance HasOptionalParam ReplaceValidatingWebhookConfiguration Pretty where
827832
instance HasOptionalParam ReplaceValidatingWebhookConfiguration DryRun where
828833
applyOptionalParam req (DryRun xs) =
829834
req `setQuery` toQuery ("dryRun", Just xs)
835+
836+
-- | /Optional Param/ "fieldManager" - fieldManager is a name associated with the actor or entity that is making these changes. The value must be less than or 128 characters long, and only contain printable characters, as defined by https://golang.org/pkg/unicode/#IsPrint.
837+
instance HasOptionalParam ReplaceValidatingWebhookConfiguration FieldManager where
838+
applyOptionalParam req (FieldManager xs) =
839+
req `setQuery` toQuery ("fieldManager", Just xs)
830840

831841
-- | @*/*@
832842
instance MimeType mtype => Consumes ReplaceValidatingWebhookConfiguration mtype

kubernetes/lib/Kubernetes/OpenAPI/API/Apiextensions.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
55
66
OpenAPI Version: 3.0.1
7-
Kubernetes API version: v1.13.4
7+
Kubernetes API version: v1.14.2
88
Generated by OpenAPI Generator (https://openapi-generator.tech)
99
-}
1010

0 commit comments

Comments
 (0)