1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
/// AuditAnnotation describes how to produce an audit annotation for an API request.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct AuditAnnotation {
/// key specifies the audit annotation key. The audit annotation keys of
/// a ValidatingAdmissionPolicy must be unique. The key must be a qualified
/// name ([A-Za-z0-9][-A-Za-z0-9_.]*) no more than 63 bytes in length.
///
/// The key is combined with the resource name of the
/// ValidatingAdmissionPolicy to construct an audit annotation key:
/// "{ValidatingAdmissionPolicy name}/{key}".
///
/// If an admission webhook uses the same resource name as this ValidatingAdmissionPolicy
/// and the same audit annotation key, the annotation key will be identical.
/// In this case, the first annotation written with the key will be included
/// in the audit event and all subsequent annotations with the same key
/// will be discarded.
///
/// Required.
#[prost(string, optional, tag="1")]
pub key: ::core::option::Option<::prost::alloc::string::String>,
/// valueExpression represents the expression which is evaluated by CEL to
/// produce an audit annotation value. The expression must evaluate to either
/// a string or null value. If the expression evaluates to a string, the
/// audit annotation is included with the string value. If the expression
/// evaluates to null or empty string the audit annotation will be omitted.
/// The valueExpression may be no longer than 5kb in length.
/// If the result of the valueExpression is more than 10kb in length, it
/// will be truncated to 10kb.
///
/// If multiple ValidatingAdmissionPolicyBinding resources match an
/// API request, then the valueExpression will be evaluated for
/// each binding. All unique values produced by the valueExpressions
/// will be joined together in a comma-separated list.
///
/// Required.
#[prost(string, optional, tag="2")]
pub value_expression: ::core::option::Option<::prost::alloc::string::String>,
}
/// ExpressionWarning is a warning information that targets a specific expression.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ExpressionWarning {
/// The path to the field that refers the expression.
/// For example, the reference to the expression of the first item of
/// validations is "spec.validations[0].expression"
#[prost(string, optional, tag="2")]
pub field_ref: ::core::option::Option<::prost::alloc::string::String>,
/// The content of type checking information in a human-readable form.
/// Each line of the warning contains the type that the expression is checked
/// against, followed by the type check error from the compiler.
#[prost(string, optional, tag="3")]
pub warning: ::core::option::Option<::prost::alloc::string::String>,
}
/// MatchCondition represents a condition which must be fulfilled for a request to be sent to a webhook.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MatchCondition {
/// Name is an identifier for this match condition, used for strategic merging of MatchConditions,
/// as well as providing an identifier for logging purposes. A good name should be descriptive of
/// the associated expression.
/// Name must be a qualified name consisting of alphanumeric characters, '-', '_' or '.', and
/// must start and end with an alphanumeric character (e.g. 'MyName', or 'my.name', or
/// '123-abc', regex used for validation is '([A-Za-z0-9][-A-Za-z0-9_.]*)?[A-Za-z0-9]') with an
/// optional DNS subdomain prefix and '/' (e.g. 'example.com/MyName')
///
/// Required.
#[prost(string, optional, tag="1")]
pub name: ::core::option::Option<::prost::alloc::string::String>,
/// Expression represents the expression which will be evaluated by CEL. Must evaluate to bool.
/// CEL expressions have access to the contents of the AdmissionRequest and Authorizer, organized into CEL variables:
///
/// 'object' - The object from the incoming request. The value is null for DELETE requests.
/// 'oldObject' - The existing object. The value is null for CREATE requests.
/// 'request' - Attributes of the admission request(/pkg/apis/admission/types.go#AdmissionRequest).
/// 'authorizer' - A CEL Authorizer. May be used to perform authorization checks for the principal (user or service account) of the request.
/// See https://pkg.go.dev/k8s.io/apiserver/pkg/cel/library#Authz
/// 'authorizer.requestResource' - A CEL ResourceCheck constructed from the 'authorizer' and configured with the
/// request resource.
/// Documentation on CEL: https://kubernetes.io/docs/reference/using-api/cel/
///
/// Required.
#[prost(string, optional, tag="2")]
pub expression: ::core::option::Option<::prost::alloc::string::String>,
}
/// MatchResources decides whether to run the admission control policy on an object based
/// on whether it meets the match criteria.
/// The exclude rules take precedence over include rules (if a resource matches both, it is excluded)
/// +structType=atomic
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MatchResources {
/// NamespaceSelector decides whether to run the admission control policy on an object based
/// on whether the namespace for that object matches the selector. If the
/// object itself is a namespace, the matching is performed on
/// object.metadata.labels. If the object is another cluster scoped resource,
/// it never skips the policy.
///
/// For example, to run the webhook on any objects whose namespace is not
/// associated with "runlevel" of "0" or "1"; you will set the selector as
/// follows:
/// "namespaceSelector": {
/// "matchExpressions": [
/// {
/// "key": "runlevel",
/// "operator": "NotIn",
/// "values": [
/// "0",
/// "1"
/// ]
/// }
/// ]
/// }
///
/// If instead you want to only run the policy on any objects whose
/// namespace is associated with the "environment" of "prod" or "staging";
/// you will set the selector as follows:
/// "namespaceSelector": {
/// "matchExpressions": [
/// {
/// "key": "environment",
/// "operator": "In",
/// "values": [
/// "prod",
/// "staging"
/// ]
/// }
/// ]
/// }
///
/// See
/// https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/
/// for more examples of label selectors.
///
/// Default to the empty LabelSelector, which matches everything.
/// +optional
#[prost(message, optional, tag="1")]
pub namespace_selector: ::core::option::Option<super::super::super::apimachinery::pkg::apis::meta::v1::LabelSelector>,
/// ObjectSelector decides whether to run the validation based on if the
/// object has matching labels. objectSelector is evaluated against both
/// the oldObject and newObject that would be sent to the cel validation, and
/// is considered to match if either object matches the selector. A null
/// object (oldObject in the case of create, or newObject in the case of
/// delete) or an object that cannot have labels (like a
/// DeploymentRollback or a PodProxyOptions object) is not considered to
/// match.
/// Use the object selector only if the webhook is opt-in, because end
/// users may skip the admission webhook by setting the labels.
/// Default to the empty LabelSelector, which matches everything.
/// +optional
#[prost(message, optional, tag="2")]
pub object_selector: ::core::option::Option<super::super::super::apimachinery::pkg::apis::meta::v1::LabelSelector>,
/// ResourceRules describes what operations on what resources/subresources the ValidatingAdmissionPolicy matches.
/// The policy cares about an operation if it matches _any_ Rule.
/// +listType=atomic
/// +optional
#[prost(message, repeated, tag="3")]
pub resource_rules: ::prost::alloc::vec::Vec<NamedRuleWithOperations>,
/// ExcludeResourceRules describes what operations on what resources/subresources the ValidatingAdmissionPolicy should not care about.
/// The exclude rules take precedence over include rules (if a resource matches both, it is excluded)
/// +listType=atomic
/// +optional
#[prost(message, repeated, tag="4")]
pub exclude_resource_rules: ::prost::alloc::vec::Vec<NamedRuleWithOperations>,
/// matchPolicy defines how the "MatchResources" list is used to match incoming requests.
/// Allowed values are "Exact" or "Equivalent".
///
/// - Exact: match a request only if it exactly matches a specified rule.
/// For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1,
/// but "rules" only included `apiGroups:["apps"], apiVersions:["v1"], resources: ["deployments"]`,
/// a request to apps/v1beta1 or extensions/v1beta1 would not be sent to the ValidatingAdmissionPolicy.
///
/// - Equivalent: match a request if modifies a resource listed in rules, even via another API group or version.
/// For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1,
/// and "rules" only included `apiGroups:["apps"], apiVersions:["v1"], resources: ["deployments"]`,
/// a request to apps/v1beta1 or extensions/v1beta1 would be converted to apps/v1 and sent to the ValidatingAdmissionPolicy.
///
/// Defaults to "Equivalent"
/// +optional
#[prost(string, optional, tag="7")]
pub match_policy: ::core::option::Option<::prost::alloc::string::String>,
}
/// MutatingWebhook describes an admission webhook and the resources and operations it applies to.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MutatingWebhook {
/// The name of the admission webhook.
/// Name should be fully qualified, e.g., imagepolicy.kubernetes.io, where
/// "imagepolicy" is the name of the webhook, and kubernetes.io is the name
/// of the organization.
/// Required.
#[prost(string, optional, tag="1")]
pub name: ::core::option::Option<::prost::alloc::string::String>,
/// ClientConfig defines how to communicate with the hook.
/// Required
#[prost(message, optional, tag="2")]
pub client_config: ::core::option::Option<WebhookClientConfig>,
/// Rules describes what operations on what resources/subresources the webhook cares about.
/// The webhook cares about an operation if it matches _any_ Rule.
/// However, in order to prevent ValidatingAdmissionWebhooks and MutatingAdmissionWebhooks
/// from putting the cluster in a state which cannot be recovered from without completely
/// disabling the plugin, ValidatingAdmissionWebhooks and MutatingAdmissionWebhooks are never called
/// on admission requests for ValidatingWebhookConfiguration and MutatingWebhookConfiguration objects.
#[prost(message, repeated, tag="3")]
pub rules: ::prost::alloc::vec::Vec<super::v1::RuleWithOperations>,
/// FailurePolicy defines how unrecognized errors from the admission endpoint are handled -
/// allowed values are Ignore or Fail. Defaults to Ignore.
/// +optional
#[prost(string, optional, tag="4")]
pub failure_policy: ::core::option::Option<::prost::alloc::string::String>,
/// matchPolicy defines how the "rules" list is used to match incoming requests.
/// Allowed values are "Exact" or "Equivalent".
///
/// - Exact: match a request only if it exactly matches a specified rule.
/// For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1,
/// but "rules" only included `apiGroups:["apps"], apiVersions:["v1"], resources: ["deployments"]`,
/// a request to apps/v1beta1 or extensions/v1beta1 would not be sent to the webhook.
///
/// - Equivalent: match a request if modifies a resource listed in rules, even via another API group or version.
/// For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1,
/// and "rules" only included `apiGroups:["apps"], apiVersions:["v1"], resources: ["deployments"]`,
/// a request to apps/v1beta1 or extensions/v1beta1 would be converted to apps/v1 and sent to the webhook.
///
/// Defaults to "Exact"
/// +optional
#[prost(string, optional, tag="9")]
pub match_policy: ::core::option::Option<::prost::alloc::string::String>,
/// NamespaceSelector decides whether to run the webhook on an object based
/// on whether the namespace for that object matches the selector. If the
/// object itself is a namespace, the matching is performed on
/// object.metadata.labels. If the object is another cluster scoped resource,
/// it never skips the webhook.
///
/// For example, to run the webhook on any objects whose namespace is not
/// associated with "runlevel" of "0" or "1"; you will set the selector as
/// follows:
/// "namespaceSelector": {
/// "matchExpressions": [
/// {
/// "key": "runlevel",
/// "operator": "NotIn",
/// "values": [
/// "0",
/// "1"
/// ]
/// }
/// ]
/// }
///
/// If instead you want to only run the webhook on any objects whose
/// namespace is associated with the "environment" of "prod" or "staging";
/// you will set the selector as follows:
/// "namespaceSelector": {
/// "matchExpressions": [
/// {
/// "key": "environment",
/// "operator": "In",
/// "values": [
/// "prod",
/// "staging"
/// ]
/// }
/// ]
/// }
///
/// See
/// https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/
/// for more examples of label selectors.
///
/// Default to the empty LabelSelector, which matches everything.
/// +optional
#[prost(message, optional, tag="5")]
pub namespace_selector: ::core::option::Option<super::super::super::apimachinery::pkg::apis::meta::v1::LabelSelector>,
/// ObjectSelector decides whether to run the webhook based on if the
/// object has matching labels. objectSelector is evaluated against both
/// the oldObject and newObject that would be sent to the webhook, and
/// is considered to match if either object matches the selector. A null
/// object (oldObject in the case of create, or newObject in the case of
/// delete) or an object that cannot have labels (like a
/// DeploymentRollback or a PodProxyOptions object) is not considered to
/// match.
/// Use the object selector only if the webhook is opt-in, because end
/// users may skip the admission webhook by setting the labels.
/// Default to the empty LabelSelector, which matches everything.
/// +optional
#[prost(message, optional, tag="11")]
pub object_selector: ::core::option::Option<super::super::super::apimachinery::pkg::apis::meta::v1::LabelSelector>,
/// SideEffects states whether this webhook has side effects.
/// Acceptable values are: Unknown, None, Some, NoneOnDryRun
/// Webhooks with side effects MUST implement a reconciliation system, since a request may be
/// rejected by a future step in the admission chain and the side effects therefore need to be undone.
/// Requests with the dryRun attribute will be auto-rejected if they match a webhook with
/// sideEffects == Unknown or Some. Defaults to Unknown.
/// +optional
#[prost(string, optional, tag="6")]
pub side_effects: ::core::option::Option<::prost::alloc::string::String>,
/// TimeoutSeconds specifies the timeout for this webhook. After the timeout passes,
/// the webhook call will be ignored or the API call will fail based on the
/// failure policy.
/// The timeout value must be between 1 and 30 seconds.
/// Default to 30 seconds.
/// +optional
#[prost(int32, optional, tag="7")]
pub timeout_seconds: ::core::option::Option<i32>,
/// AdmissionReviewVersions is an ordered list of preferred `AdmissionReview`
/// versions the Webhook expects. API server will try to use first version in
/// the list which it supports. If none of the versions specified in this list
/// supported by API server, validation will fail for this object.
/// If a persisted webhook configuration specifies allowed versions and does not
/// include any versions known to the API Server, calls to the webhook will fail
/// and be subject to the failure policy.
/// Default to `['v1beta1']`.
/// +optional
#[prost(string, repeated, tag="8")]
pub admission_review_versions: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
/// reinvocationPolicy indicates whether this webhook should be called multiple times as part of a single admission evaluation.
/// Allowed values are "Never" and "IfNeeded".
///
/// Never: the webhook will not be called more than once in a single admission evaluation.
///
/// IfNeeded: the webhook will be called at least one additional time as part of the admission evaluation
/// if the object being admitted is modified by other admission plugins after the initial webhook call.
/// Webhooks that specify this option *must* be idempotent, able to process objects they previously admitted.
/// Note:
/// * the number of additional invocations is not guaranteed to be exactly one.
/// * if additional invocations result in further modifications to the object, webhooks are not guaranteed to be invoked again.
/// * webhooks that use this option may be reordered to minimize the number of additional invocations.
/// * to validate an object after all mutations are guaranteed complete, use a validating admission webhook instead.
///
/// Defaults to "Never".
/// +optional
#[prost(string, optional, tag="10")]
pub reinvocation_policy: ::core::option::Option<::prost::alloc::string::String>,
/// MatchConditions is a list of conditions that must be met for a request to be sent to this
/// webhook. Match conditions filter requests that have already been matched by the rules,
/// namespaceSelector, and objectSelector. An empty list of matchConditions matches all requests.
/// There are a maximum of 64 match conditions allowed.
///
/// The exact matching logic is (in order):
/// 1. If ANY matchCondition evaluates to FALSE, the webhook is skipped.
/// 2. If ALL matchConditions evaluate to TRUE, the webhook is called.
/// 3. If any matchCondition evaluates to an error (but none are FALSE):
/// - If failurePolicy=Fail, reject the request
/// - If failurePolicy=Ignore, the error is ignored and the webhook is skipped
///
/// This is a beta feature and managed by the AdmissionWebhookMatchConditions feature gate.
///
/// +patchMergeKey=name
/// +patchStrategy=merge
/// +listType=map
/// +listMapKey=name
/// +featureGate=AdmissionWebhookMatchConditions
/// +optional
#[prost(message, repeated, tag="12")]
pub match_conditions: ::prost::alloc::vec::Vec<MatchCondition>,
}
/// MutatingWebhookConfiguration describes the configuration of and admission webhook that accept or reject and may change the object.
/// Deprecated in v1.16, planned for removal in v1.19. Use admissionregistration.k8s.io/v1 MutatingWebhookConfiguration instead.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MutatingWebhookConfiguration {
/// Standard object metadata; More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata.
/// +optional
#[prost(message, optional, tag="1")]
pub metadata: ::core::option::Option<super::super::super::apimachinery::pkg::apis::meta::v1::ObjectMeta>,
/// Webhooks is a list of webhooks and the affected resources and operations.
/// +optional
/// +patchMergeKey=name
/// +patchStrategy=merge
#[prost(message, repeated, tag="2")]
pub webhooks: ::prost::alloc::vec::Vec<MutatingWebhook>,
}
/// MutatingWebhookConfigurationList is a list of MutatingWebhookConfiguration.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MutatingWebhookConfigurationList {
/// Standard list metadata.
/// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
/// +optional
#[prost(message, optional, tag="1")]
pub metadata: ::core::option::Option<super::super::super::apimachinery::pkg::apis::meta::v1::ListMeta>,
/// List of MutatingWebhookConfiguration.
#[prost(message, repeated, tag="2")]
pub items: ::prost::alloc::vec::Vec<MutatingWebhookConfiguration>,
}
/// NamedRuleWithOperations is a tuple of Operations and Resources with ResourceNames.
/// +structType=atomic
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct NamedRuleWithOperations {
/// ResourceNames is an optional white list of names that the rule applies to. An empty set means that everything is allowed.
/// +listType=atomic
/// +optional
#[prost(string, repeated, tag="1")]
pub resource_names: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
/// RuleWithOperations is a tuple of Operations and Resources.
#[prost(message, optional, tag="2")]
pub rule_with_operations: ::core::option::Option<super::v1::RuleWithOperations>,
}
/// ParamKind is a tuple of Group Kind and Version.
/// +structType=atomic
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ParamKind {
/// APIVersion is the API group version the resources belong to.
/// In format of "group/version".
/// Required.
#[prost(string, optional, tag="1")]
pub api_version: ::core::option::Option<::prost::alloc::string::String>,
/// Kind is the API kind the resources belong to.
/// Required.
#[prost(string, optional, tag="2")]
pub kind: ::core::option::Option<::prost::alloc::string::String>,
}
/// ParamRef describes how to locate the params to be used as input to
/// expressions of rules applied by a policy binding.
/// +structType=atomic
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ParamRef {
/// name is the name of the resource being referenced.
///
/// One of `name` or `selector` must be set, but `name` and `selector` are
/// mutually exclusive properties. If one is set, the other must be unset.
///
/// A single parameter used for all admission requests can be configured
/// by setting the `name` field, leaving `selector` blank, and setting namespace
/// if `paramKind` is namespace-scoped.
#[prost(string, optional, tag="1")]
pub name: ::core::option::Option<::prost::alloc::string::String>,
/// namespace is the namespace of the referenced resource. Allows limiting
/// the search for params to a specific namespace. Applies to both `name` and
/// `selector` fields.
///
/// A per-namespace parameter may be used by specifying a namespace-scoped
/// `paramKind` in the policy and leaving this field empty.
///
/// - If `paramKind` is cluster-scoped, this field MUST be unset. Setting this
/// field results in a configuration error.
///
/// - If `paramKind` is namespace-scoped, the namespace of the object being
/// evaluated for admission will be used when this field is left unset. Take
/// care that if this is left empty the binding must not match any cluster-scoped
/// resources, which will result in an error.
///
/// +optional
#[prost(string, optional, tag="2")]
pub namespace: ::core::option::Option<::prost::alloc::string::String>,
/// selector can be used to match multiple param objects based on their labels.
/// Supply selector: {} to match all resources of the ParamKind.
///
/// If multiple params are found, they are all evaluated with the policy expressions
/// and the results are ANDed together.
///
/// One of `name` or `selector` must be set, but `name` and `selector` are
/// mutually exclusive properties. If one is set, the other must be unset.
///
/// +optional
#[prost(message, optional, tag="3")]
pub selector: ::core::option::Option<super::super::super::apimachinery::pkg::apis::meta::v1::LabelSelector>,
/// `parameterNotFoundAction` controls the behavior of the binding when the resource
/// exists, and name or selector is valid, but there are no parameters
/// matched by the binding. If the value is set to `Allow`, then no
/// matched parameters will be treated as successful validation by the binding.
/// If set to `Deny`, then no matched parameters will be subject to the
/// `failurePolicy` of the policy.
///
/// Allowed values are `Allow` or `Deny`
///
/// Required
#[prost(string, optional, tag="4")]
pub parameter_not_found_action: ::core::option::Option<::prost::alloc::string::String>,
}
/// ServiceReference holds a reference to Service.legacy.k8s.io
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ServiceReference {
/// `namespace` is the namespace of the service.
/// Required
#[prost(string, optional, tag="1")]
pub namespace: ::core::option::Option<::prost::alloc::string::String>,
/// `name` is the name of the service.
/// Required
#[prost(string, optional, tag="2")]
pub name: ::core::option::Option<::prost::alloc::string::String>,
/// `path` is an optional URL path which will be sent in any request to
/// this service.
/// +optional
#[prost(string, optional, tag="3")]
pub path: ::core::option::Option<::prost::alloc::string::String>,
/// If specified, the port on the service that hosting webhook.
/// Default to 443 for backward compatibility.
/// `port` should be a valid port number (1-65535, inclusive).
/// +optional
#[prost(int32, optional, tag="4")]
pub port: ::core::option::Option<i32>,
}
/// TypeChecking contains results of type checking the expressions in the
/// ValidatingAdmissionPolicy
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct TypeChecking {
/// The type checking warnings for each expression.
/// +optional
/// +listType=atomic
#[prost(message, repeated, tag="1")]
pub expression_warnings: ::prost::alloc::vec::Vec<ExpressionWarning>,
}
/// +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
/// +genclient
/// +genclient:nonNamespaced
/// +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
/// +k8s:prerelease-lifecycle-gen:introduced=1.28
/// ValidatingAdmissionPolicy describes the definition of an admission validation policy that accepts or rejects an object without changing it.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ValidatingAdmissionPolicy {
/// Standard object metadata; More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata.
/// +optional
#[prost(message, optional, tag="1")]
pub metadata: ::core::option::Option<super::super::super::apimachinery::pkg::apis::meta::v1::ObjectMeta>,
/// Specification of the desired behavior of the ValidatingAdmissionPolicy.
#[prost(message, optional, tag="2")]
pub spec: ::core::option::Option<ValidatingAdmissionPolicySpec>,
/// The status of the ValidatingAdmissionPolicy, including warnings that are useful to determine if the policy
/// behaves in the expected way.
/// Populated by the system.
/// Read-only.
/// +optional
#[prost(message, optional, tag="3")]
pub status: ::core::option::Option<ValidatingAdmissionPolicyStatus>,
}
/// ValidatingAdmissionPolicyBinding binds the ValidatingAdmissionPolicy with paramerized resources.
/// ValidatingAdmissionPolicyBinding and parameter CRDs together define how cluster administrators configure policies for clusters.
///
/// For a given admission request, each binding will cause its policy to be
/// evaluated N times, where N is 1 for policies/bindings that don't use
/// params, otherwise N is the number of parameters selected by the binding.
///
/// The CEL expressions of a policy must have a computed CEL cost below the maximum
/// CEL budget. Each evaluation of the policy is given an independent CEL cost budget.
/// Adding/removing policies, bindings, or params can not affect whether a
/// given (policy, binding, param) combination is within its own CEL budget.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ValidatingAdmissionPolicyBinding {
/// Standard object metadata; More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata.
/// +optional
#[prost(message, optional, tag="1")]
pub metadata: ::core::option::Option<super::super::super::apimachinery::pkg::apis::meta::v1::ObjectMeta>,
/// Specification of the desired behavior of the ValidatingAdmissionPolicyBinding.
#[prost(message, optional, tag="2")]
pub spec: ::core::option::Option<ValidatingAdmissionPolicyBindingSpec>,
}
/// ValidatingAdmissionPolicyBindingList is a list of ValidatingAdmissionPolicyBinding.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ValidatingAdmissionPolicyBindingList {
/// Standard list metadata.
/// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
/// +optional
#[prost(message, optional, tag="1")]
pub metadata: ::core::option::Option<super::super::super::apimachinery::pkg::apis::meta::v1::ListMeta>,
/// List of PolicyBinding.
#[prost(message, repeated, tag="2")]
pub items: ::prost::alloc::vec::Vec<ValidatingAdmissionPolicyBinding>,
}
/// ValidatingAdmissionPolicyBindingSpec is the specification of the ValidatingAdmissionPolicyBinding.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ValidatingAdmissionPolicyBindingSpec {
/// PolicyName references a ValidatingAdmissionPolicy name which the ValidatingAdmissionPolicyBinding binds to.
/// If the referenced resource does not exist, this binding is considered invalid and will be ignored
/// Required.
#[prost(string, optional, tag="1")]
pub policy_name: ::core::option::Option<::prost::alloc::string::String>,
/// paramRef specifies the parameter resource used to configure the admission control policy.
/// It should point to a resource of the type specified in ParamKind of the bound ValidatingAdmissionPolicy.
/// If the policy specifies a ParamKind and the resource referred to by ParamRef does not exist, this binding is considered mis-configured and the FailurePolicy of the ValidatingAdmissionPolicy applied.
/// If the policy does not specify a ParamKind then this field is ignored, and the rules are evaluated without a param.
/// +optional
#[prost(message, optional, tag="2")]
pub param_ref: ::core::option::Option<ParamRef>,
/// MatchResources declares what resources match this binding and will be validated by it.
/// Note that this is intersected with the policy's matchConstraints, so only requests that are matched by the policy can be selected by this.
/// If this is unset, all resources matched by the policy are validated by this binding
/// When resourceRules is unset, it does not constrain resource matching. If a resource is matched by the other fields of this object, it will be validated.
/// Note that this is differs from ValidatingAdmissionPolicy matchConstraints, where resourceRules are required.
/// +optional
#[prost(message, optional, tag="3")]
pub match_resources: ::core::option::Option<MatchResources>,
/// validationActions declares how Validations of the referenced ValidatingAdmissionPolicy are enforced.
/// If a validation evaluates to false it is always enforced according to these actions.
///
/// Failures defined by the ValidatingAdmissionPolicy's FailurePolicy are enforced according
/// to these actions only if the FailurePolicy is set to Fail, otherwise the failures are
/// ignored. This includes compilation errors, runtime errors and misconfigurations of the policy.
///
/// validationActions is declared as a set of action values. Order does
/// not matter. validationActions may not contain duplicates of the same action.
///
/// The supported actions values are:
///
/// "Deny" specifies that a validation failure results in a denied request.
///
/// "Warn" specifies that a validation failure is reported to the request client
/// in HTTP Warning headers, with a warning code of 299. Warnings can be sent
/// both for allowed or denied admission responses.
///
/// "Audit" specifies that a validation failure is included in the published
/// audit event for the request. The audit event will contain a
/// `validation.policy.admission.k8s.io/validation_failure` audit annotation
/// with a value containing the details of the validation failures, formatted as
/// a JSON list of objects, each with the following fields:
/// - message: The validation failure message string
/// - policy: The resource name of the ValidatingAdmissionPolicy
/// - binding: The resource name of the ValidatingAdmissionPolicyBinding
/// - expressionIndex: The index of the failed validations in the ValidatingAdmissionPolicy
/// - validationActions: The enforcement actions enacted for the validation failure
/// Example audit annotation:
/// `"validation.policy.admission.k8s.io/validation_failure": "[{\"message\": \"Invalid value\", {\"policy\": \"policy.example.com\", {\"binding\": \"policybinding.example.com\", {\"expressionIndex\": \"1\", {\"validationActions\": [\"Audit\"]}]"`
///
/// Clients should expect to handle additional values by ignoring
/// any values not recognized.
///
/// "Deny" and "Warn" may not be used together since this combination
/// needlessly duplicates the validation failure both in the
/// API response body and the HTTP warning headers.
///
/// Required.
/// +listType=set
#[prost(string, repeated, tag="4")]
pub validation_actions: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
}
/// +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
/// +k8s:prerelease-lifecycle-gen:introduced=1.28
/// ValidatingAdmissionPolicyList is a list of ValidatingAdmissionPolicy.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ValidatingAdmissionPolicyList {
/// Standard list metadata.
/// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
/// +optional
#[prost(message, optional, tag="1")]
pub metadata: ::core::option::Option<super::super::super::apimachinery::pkg::apis::meta::v1::ListMeta>,
/// List of ValidatingAdmissionPolicy.
#[prost(message, repeated, tag="2")]
pub items: ::prost::alloc::vec::Vec<ValidatingAdmissionPolicy>,
}
/// ValidatingAdmissionPolicySpec is the specification of the desired behavior of the AdmissionPolicy.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ValidatingAdmissionPolicySpec {
/// ParamKind specifies the kind of resources used to parameterize this policy.
/// If absent, there are no parameters for this policy and the param CEL variable will not be provided to validation expressions.
/// If ParamKind refers to a non-existent kind, this policy definition is mis-configured and the FailurePolicy is applied.
/// If paramKind is specified but paramRef is unset in ValidatingAdmissionPolicyBinding, the params variable will be null.
/// +optional
#[prost(message, optional, tag="1")]
pub param_kind: ::core::option::Option<ParamKind>,
/// MatchConstraints specifies what resources this policy is designed to validate.
/// The AdmissionPolicy cares about a request if it matches _all_ Constraints.
/// However, in order to prevent clusters from being put into an unstable state that cannot be recovered from via the API
/// ValidatingAdmissionPolicy cannot match ValidatingAdmissionPolicy and ValidatingAdmissionPolicyBinding.
/// Required.
#[prost(message, optional, tag="2")]
pub match_constraints: ::core::option::Option<MatchResources>,
/// Validations contain CEL expressions which is used to apply the validation.
/// Validations and AuditAnnotations may not both be empty; a minimum of one Validations or AuditAnnotations is
/// required.
/// +listType=atomic
/// +optional
#[prost(message, repeated, tag="3")]
pub validations: ::prost::alloc::vec::Vec<Validation>,
/// failurePolicy defines how to handle failures for the admission policy. Failures can
/// occur from CEL expression parse errors, type check errors, runtime errors and invalid
/// or mis-configured policy definitions or bindings.
///
/// A policy is invalid if spec.paramKind refers to a non-existent Kind.
/// A binding is invalid if spec.paramRef.name refers to a non-existent resource.
///
/// failurePolicy does not define how validations that evaluate to false are handled.
///
/// When failurePolicy is set to Fail, ValidatingAdmissionPolicyBinding validationActions
/// define how failures are enforced.
///
/// Allowed values are Ignore or Fail. Defaults to Fail.
/// +optional
#[prost(string, optional, tag="4")]
pub failure_policy: ::core::option::Option<::prost::alloc::string::String>,
/// auditAnnotations contains CEL expressions which are used to produce audit
/// annotations for the audit event of the API request.
/// validations and auditAnnotations may not both be empty; a least one of validations or auditAnnotations is
/// required.
/// +listType=atomic
/// +optional
#[prost(message, repeated, tag="5")]
pub audit_annotations: ::prost::alloc::vec::Vec<AuditAnnotation>,
/// MatchConditions is a list of conditions that must be met for a request to be validated.
/// Match conditions filter requests that have already been matched by the rules,
/// namespaceSelector, and objectSelector. An empty list of matchConditions matches all requests.
/// There are a maximum of 64 match conditions allowed.
///
/// If a parameter object is provided, it can be accessed via the `params` handle in the same
/// manner as validation expressions.
///
/// The exact matching logic is (in order):
/// 1. If ANY matchCondition evaluates to FALSE, the policy is skipped.
/// 2. If ALL matchConditions evaluate to TRUE, the policy is evaluated.
/// 3. If any matchCondition evaluates to an error (but none are FALSE):
/// - If failurePolicy=Fail, reject the request
/// - If failurePolicy=Ignore, the policy is skipped
///
/// +patchMergeKey=name
/// +patchStrategy=merge
/// +listType=map
/// +listMapKey=name
/// +optional
#[prost(message, repeated, tag="6")]
pub match_conditions: ::prost::alloc::vec::Vec<MatchCondition>,
/// Variables contain definitions of variables that can be used in composition of other expressions.
/// Each variable is defined as a named CEL expression.
/// The variables defined here will be available under `variables` in other expressions of the policy
/// except MatchConditions because MatchConditions are evaluated before the rest of the policy.
///
/// The expression of a variable can refer to other variables defined earlier in the list but not those after.
/// Thus, Variables must be sorted by the order of first appearance and acyclic.
/// +patchMergeKey=name
/// +patchStrategy=merge
/// +listType=map
/// +listMapKey=name
/// +optional
#[prost(message, repeated, tag="7")]
pub variables: ::prost::alloc::vec::Vec<Variable>,
}
/// ValidatingAdmissionPolicyStatus represents the status of an admission validation policy.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ValidatingAdmissionPolicyStatus {
/// The generation observed by the controller.
/// +optional
#[prost(int64, optional, tag="1")]
pub observed_generation: ::core::option::Option<i64>,
/// The results of type checking for each expression.
/// Presence of this field indicates the completion of the type checking.
/// +optional
#[prost(message, optional, tag="2")]
pub type_checking: ::core::option::Option<TypeChecking>,
/// The conditions represent the latest available observations of a policy's current state.
/// +optional
/// +listType=map
/// +listMapKey=type
#[prost(message, repeated, tag="3")]
pub conditions: ::prost::alloc::vec::Vec<super::super::super::apimachinery::pkg::apis::meta::v1::Condition>,
}
/// ValidatingWebhook describes an admission webhook and the resources and operations it applies to.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ValidatingWebhook {
/// The name of the admission webhook.
/// Name should be fully qualified, e.g., imagepolicy.kubernetes.io, where
/// "imagepolicy" is the name of the webhook, and kubernetes.io is the name
/// of the organization.
/// Required.
#[prost(string, optional, tag="1")]
pub name: ::core::option::Option<::prost::alloc::string::String>,
/// ClientConfig defines how to communicate with the hook.
/// Required
#[prost(message, optional, tag="2")]
pub client_config: ::core::option::Option<WebhookClientConfig>,
/// Rules describes what operations on what resources/subresources the webhook cares about.
/// The webhook cares about an operation if it matches _any_ Rule.
/// However, in order to prevent ValidatingAdmissionWebhooks and MutatingAdmissionWebhooks
/// from putting the cluster in a state which cannot be recovered from without completely
/// disabling the plugin, ValidatingAdmissionWebhooks and MutatingAdmissionWebhooks are never called
/// on admission requests for ValidatingWebhookConfiguration and MutatingWebhookConfiguration objects.
#[prost(message, repeated, tag="3")]
pub rules: ::prost::alloc::vec::Vec<super::v1::RuleWithOperations>,
/// FailurePolicy defines how unrecognized errors from the admission endpoint are handled -
/// allowed values are Ignore or Fail. Defaults to Ignore.
/// +optional
#[prost(string, optional, tag="4")]
pub failure_policy: ::core::option::Option<::prost::alloc::string::String>,
/// matchPolicy defines how the "rules" list is used to match incoming requests.
/// Allowed values are "Exact" or "Equivalent".
///
/// - Exact: match a request only if it exactly matches a specified rule.
/// For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1,
/// but "rules" only included `apiGroups:["apps"], apiVersions:["v1"], resources: ["deployments"]`,
/// a request to apps/v1beta1 or extensions/v1beta1 would not be sent to the webhook.
///
/// - Equivalent: match a request if modifies a resource listed in rules, even via another API group or version.
/// For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1,
/// and "rules" only included `apiGroups:["apps"], apiVersions:["v1"], resources: ["deployments"]`,
/// a request to apps/v1beta1 or extensions/v1beta1 would be converted to apps/v1 and sent to the webhook.
///
/// Defaults to "Exact"
/// +optional
#[prost(string, optional, tag="9")]
pub match_policy: ::core::option::Option<::prost::alloc::string::String>,
/// NamespaceSelector decides whether to run the webhook on an object based
/// on whether the namespace for that object matches the selector. If the
/// object itself is a namespace, the matching is performed on
/// object.metadata.labels. If the object is another cluster scoped resource,
/// it never skips the webhook.
///
/// For example, to run the webhook on any objects whose namespace is not
/// associated with "runlevel" of "0" or "1"; you will set the selector as
/// follows:
/// "namespaceSelector": {
/// "matchExpressions": [
/// {
/// "key": "runlevel",
/// "operator": "NotIn",
/// "values": [
/// "0",
/// "1"
/// ]
/// }
/// ]
/// }
///
/// If instead you want to only run the webhook on any objects whose
/// namespace is associated with the "environment" of "prod" or "staging";
/// you will set the selector as follows:
/// "namespaceSelector": {
/// "matchExpressions": [
/// {
/// "key": "environment",
/// "operator": "In",
/// "values": [
/// "prod",
/// "staging"
/// ]
/// }
/// ]
/// }
///
/// See
/// https://kubernetes.io/docs/concepts/overview/working-with-objects/labels
/// for more examples of label selectors.
///
/// Default to the empty LabelSelector, which matches everything.
/// +optional
#[prost(message, optional, tag="5")]
pub namespace_selector: ::core::option::Option<super::super::super::apimachinery::pkg::apis::meta::v1::LabelSelector>,
/// ObjectSelector decides whether to run the webhook based on if the
/// object has matching labels. objectSelector is evaluated against both
/// the oldObject and newObject that would be sent to the webhook, and
/// is considered to match if either object matches the selector. A null
/// object (oldObject in the case of create, or newObject in the case of
/// delete) or an object that cannot have labels (like a
/// DeploymentRollback or a PodProxyOptions object) is not considered to
/// match.
/// Use the object selector only if the webhook is opt-in, because end
/// users may skip the admission webhook by setting the labels.
/// Default to the empty LabelSelector, which matches everything.
/// +optional
#[prost(message, optional, tag="10")]
pub object_selector: ::core::option::Option<super::super::super::apimachinery::pkg::apis::meta::v1::LabelSelector>,
/// SideEffects states whether this webhook has side effects.
/// Acceptable values are: Unknown, None, Some, NoneOnDryRun
/// Webhooks with side effects MUST implement a reconciliation system, since a request may be
/// rejected by a future step in the admission chain and the side effects therefore need to be undone.
/// Requests with the dryRun attribute will be auto-rejected if they match a webhook with
/// sideEffects == Unknown or Some. Defaults to Unknown.
/// +optional
#[prost(string, optional, tag="6")]
pub side_effects: ::core::option::Option<::prost::alloc::string::String>,
/// TimeoutSeconds specifies the timeout for this webhook. After the timeout passes,
/// the webhook call will be ignored or the API call will fail based on the
/// failure policy.
/// The timeout value must be between 1 and 30 seconds.
/// Default to 30 seconds.
/// +optional
#[prost(int32, optional, tag="7")]
pub timeout_seconds: ::core::option::Option<i32>,
/// AdmissionReviewVersions is an ordered list of preferred `AdmissionReview`
/// versions the Webhook expects. API server will try to use first version in
/// the list which it supports. If none of the versions specified in this list
/// supported by API server, validation will fail for this object.
/// If a persisted webhook configuration specifies allowed versions and does not
/// include any versions known to the API Server, calls to the webhook will fail
/// and be subject to the failure policy.
/// Default to `['v1beta1']`.
/// +optional
#[prost(string, repeated, tag="8")]
pub admission_review_versions: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
/// MatchConditions is a list of conditions that must be met for a request to be sent to this
/// webhook. Match conditions filter requests that have already been matched by the rules,
/// namespaceSelector, and objectSelector. An empty list of matchConditions matches all requests.
/// There are a maximum of 64 match conditions allowed.
///
/// The exact matching logic is (in order):
/// 1. If ANY matchCondition evaluates to FALSE, the webhook is skipped.
/// 2. If ALL matchConditions evaluate to TRUE, the webhook is called.
/// 3. If any matchCondition evaluates to an error (but none are FALSE):
/// - If failurePolicy=Fail, reject the request
/// - If failurePolicy=Ignore, the error is ignored and the webhook is skipped
///
/// This is a beta feature and managed by the AdmissionWebhookMatchConditions feature gate.
///
/// +patchMergeKey=name
/// +patchStrategy=merge
/// +listType=map
/// +listMapKey=name
/// +featureGate=AdmissionWebhookMatchConditions
/// +optional
#[prost(message, repeated, tag="11")]
pub match_conditions: ::prost::alloc::vec::Vec<MatchCondition>,
}
/// ValidatingWebhookConfiguration describes the configuration of and admission webhook that accept or reject and object without changing it.
/// Deprecated in v1.16, planned for removal in v1.19. Use admissionregistration.k8s.io/v1 ValidatingWebhookConfiguration instead.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ValidatingWebhookConfiguration {
/// Standard object metadata; More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata.
/// +optional
#[prost(message, optional, tag="1")]
pub metadata: ::core::option::Option<super::super::super::apimachinery::pkg::apis::meta::v1::ObjectMeta>,
/// Webhooks is a list of webhooks and the affected resources and operations.
/// +optional
/// +patchMergeKey=name
/// +patchStrategy=merge
#[prost(message, repeated, tag="2")]
pub webhooks: ::prost::alloc::vec::Vec<ValidatingWebhook>,
}
/// ValidatingWebhookConfigurationList is a list of ValidatingWebhookConfiguration.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ValidatingWebhookConfigurationList {
/// Standard list metadata.
/// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
/// +optional
#[prost(message, optional, tag="1")]
pub metadata: ::core::option::Option<super::super::super::apimachinery::pkg::apis::meta::v1::ListMeta>,
/// List of ValidatingWebhookConfiguration.
#[prost(message, repeated, tag="2")]
pub items: ::prost::alloc::vec::Vec<ValidatingWebhookConfiguration>,
}
/// Validation specifies the CEL expression which is used to apply the validation.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Validation {
/// Expression represents the expression which will be evaluated by CEL.
/// ref: https://github.com/google/cel-spec
/// CEL expressions have access to the contents of the API request/response, organized into CEL variables as well as some other useful variables:
///
/// - 'object' - The object from the incoming request. The value is null for DELETE requests.
/// - 'oldObject' - The existing object. The value is null for CREATE requests.
/// - 'request' - Attributes of the API request([ref](/pkg/apis/admission/types.go#AdmissionRequest)).
/// - 'params' - Parameter resource referred to by the policy binding being evaluated. Only populated if the policy has a ParamKind.
/// - 'namespaceObject' - The namespace object that the incoming object belongs to. The value is null for cluster-scoped resources.
/// - 'variables' - Map of composited variables, from its name to its lazily evaluated value.
/// For example, a variable named 'foo' can be accessed as 'variables.foo'.
/// - 'authorizer' - A CEL Authorizer. May be used to perform authorization checks for the principal (user or service account) of the request.
/// See https://pkg.go.dev/k8s.io/apiserver/pkg/cel/library#Authz
/// - 'authorizer.requestResource' - A CEL ResourceCheck constructed from the 'authorizer' and configured with the
/// request resource.
///
/// The `apiVersion`, `kind`, `metadata.name` and `metadata.generateName` are always accessible from the root of the
/// object. No other metadata properties are accessible.
///
/// Only property names of the form `[a-zA-Z_.-/][a-zA-Z0-9_.-/]*` are accessible.
/// Accessible property names are escaped according to the following rules when accessed in the expression:
/// - '__' escapes to '__underscores__'
/// - '.' escapes to '__dot__'
/// - '-' escapes to '__dash__'
/// - '/' escapes to '__slash__'
/// - Property names that exactly match a CEL RESERVED keyword escape to '__{keyword}__'. The keywords are:
/// "true", "false", "null", "in", "as", "break", "const", "continue", "else", "for", "function", "if",
/// "import", "let", "loop", "package", "namespace", "return".
/// Examples:
/// - Expression accessing a property named "namespace": {"Expression": "object.__namespace__ > 0"}
/// - Expression accessing a property named "x-prop": {"Expression": "object.x__dash__prop > 0"}
/// - Expression accessing a property named "redact__d": {"Expression": "object.redact__underscores__d > 0"}
///
/// Equality on arrays with list type of 'set' or 'map' ignores element order, i.e. [1, 2] == [2, 1].
/// Concatenation on arrays with x-kubernetes-list-type use the semantics of the list type:
/// - 'set': `X + Y` performs a union where the array positions of all elements in `X` are preserved and
/// non-intersecting elements in `Y` are appended, retaining their partial order.
/// - 'map': `X + Y` performs a merge where the array positions of all keys in `X` are preserved but the values
/// are overwritten by values in `Y` when the key sets of `X` and `Y` intersect. Elements in `Y` with
/// non-intersecting keys are appended, retaining their partial order.
/// Required.
#[prost(string, optional, tag="1")]
pub expression: ::core::option::Option<::prost::alloc::string::String>,
/// Message represents the message displayed when validation fails. The message is required if the Expression contains
/// line breaks. The message must not contain line breaks.
/// If unset, the message is "failed rule: {Rule}".
/// e.g. "must be a URL with the host matching spec.host"
/// If the Expression contains line breaks. Message is required.
/// The message must not contain line breaks.
/// If unset, the message is "failed Expression: {Expression}".
/// +optional
#[prost(string, optional, tag="2")]
pub message: ::core::option::Option<::prost::alloc::string::String>,
/// Reason represents a machine-readable description of why this validation failed.
/// If this is the first validation in the list to fail, this reason, as well as the
/// corresponding HTTP response code, are used in the
/// HTTP response to the client.
/// The currently supported reasons are: "Unauthorized", "Forbidden", "Invalid", "RequestEntityTooLarge".
/// If not set, StatusReasonInvalid is used in the response to the client.
/// +optional
#[prost(string, optional, tag="3")]
pub reason: ::core::option::Option<::prost::alloc::string::String>,
/// messageExpression declares a CEL expression that evaluates to the validation failure message that is returned when this rule fails.
/// Since messageExpression is used as a failure message, it must evaluate to a string.
/// If both message and messageExpression are present on a validation, then messageExpression will be used if validation fails.
/// If messageExpression results in a runtime error, the runtime error is logged, and the validation failure message is produced
/// as if the messageExpression field were unset. If messageExpression evaluates to an empty string, a string with only spaces, or a string
/// that contains line breaks, then the validation failure message will also be produced as if the messageExpression field were unset, and
/// the fact that messageExpression produced an empty string/string with only spaces/string with line breaks will be logged.
/// messageExpression has access to all the same variables as the `expression` except for 'authorizer' and 'authorizer.requestResource'.
/// Example:
/// "object.x must be less than max ("+string(params.max)+")"
/// +optional
#[prost(string, optional, tag="4")]
pub message_expression: ::core::option::Option<::prost::alloc::string::String>,
}
/// Variable is the definition of a variable that is used for composition. A variable is defined as a named expression.
/// +structType=atomic
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Variable {
/// Name is the name of the variable. The name must be a valid CEL identifier and unique among all variables.
/// The variable can be accessed in other expressions through `variables`
/// For example, if name is "foo", the variable will be available as `variables.foo`
#[prost(string, optional, tag="1")]
pub name: ::core::option::Option<::prost::alloc::string::String>,
/// Expression is the expression that will be evaluated as the value of the variable.
/// The CEL expression has access to the same identifiers as the CEL expressions in Validation.
#[prost(string, optional, tag="2")]
pub expression: ::core::option::Option<::prost::alloc::string::String>,
}
/// WebhookClientConfig contains the information to make a TLS
/// connection with the webhook
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct WebhookClientConfig {
/// `url` gives the location of the webhook, in standard URL form
/// (`scheme://host:port/path`). Exactly one of `url` or `service`
/// must be specified.
///
/// The `host` should not refer to a service running in the cluster; use
/// the `service` field instead. The host might be resolved via external
/// DNS in some apiservers (e.g., `kube-apiserver` cannot resolve
/// in-cluster DNS as that would be a layering violation). `host` may
/// also be an IP address.
///
/// Please note that using `localhost` or `127.0.0.1` as a `host` is
/// risky unless you take great care to run this webhook on all hosts
/// which run an apiserver which might need to make calls to this
/// webhook. Such installs are likely to be non-portable, i.e., not easy
/// to turn up in a new cluster.
///
/// The scheme must be "https"; the URL must begin with "https://".
///
/// A path is optional, and if present may be any string permissible in
/// a URL. You may use the path to pass an arbitrary string to the
/// webhook, for example, a cluster identifier.
///
/// Attempting to use a user or basic auth e.g. "user:password@" is not
/// allowed. Fragments ("#...") and query parameters ("?...") are not
/// allowed, either.
///
/// +optional
#[prost(string, optional, tag="3")]
pub url: ::core::option::Option<::prost::alloc::string::String>,
/// `service` is a reference to the service for this webhook. Either
/// `service` or `url` must be specified.
///
/// If the webhook is running within the cluster, then you should use `service`.
///
/// +optional
#[prost(message, optional, tag="1")]
pub service: ::core::option::Option<ServiceReference>,
/// `caBundle` is a PEM encoded CA bundle which will be used to validate the webhook's server certificate.
/// If unspecified, system trust roots on the apiserver are used.
/// +optional
#[prost(bytes="vec", optional, tag="2")]
pub ca_bundle: ::core::option::Option<::prost::alloc::vec::Vec<u8>>,
}
impl crate::Resource for ValidatingAdmissionPolicy {
const API_VERSION: &'static str = "admissionregistration.k8s.io/v1beta1";
const GROUP: &'static str = "admissionregistration.k8s.io";
const VERSION: &'static str = "v1beta1";
const KIND: &'static str = "ValidatingAdmissionPolicy";
const NAME: &'static str = "validatingadmissionpolicies";
}
impl crate::HasMetadata for ValidatingAdmissionPolicy {
type Metadata = crate::apimachinery::pkg::apis::meta::v1::ObjectMeta;
fn metadata(&self) -> Option<&<Self as crate::HasMetadata>::Metadata> {
self.metadata.as_ref()
}
fn metadata_mut(&mut self) -> Option<&mut <Self as crate::HasMetadata>::Metadata> {
self.metadata.as_mut()
}
}
impl crate::HasSpec for ValidatingAdmissionPolicy {
type Spec = crate::api::admissionregistration::v1beta1::ValidatingAdmissionPolicySpec;
fn spec(&self) -> Option<&<Self as crate::HasSpec>::Spec> {
self.spec.as_ref()
}
fn spec_mut(&mut self) -> Option<&mut <Self as crate::HasSpec>::Spec> {
self.spec.as_mut()
}
}
impl crate::HasStatus for ValidatingAdmissionPolicy {
type Status = crate::api::admissionregistration::v1beta1::ValidatingAdmissionPolicyStatus;
fn status(&self) -> Option<&<Self as crate::HasStatus>::Status> {
self.status.as_ref()
}
fn status_mut(&mut self) -> Option<&mut <Self as crate::HasStatus>::Status> {
self.status.as_mut()
}
}
impl crate::HasConditions for ValidatingAdmissionPolicy {
type Condition = crate::apimachinery::pkg::apis::meta::v1::Condition;
fn conditions(&self) -> Option<&[<Self as crate::HasConditions>::Condition]> {
self.status.as_ref().map(|s| s.conditions.as_slice())
}
fn conditions_mut(&mut self) -> Option<&mut Vec<<Self as crate::HasConditions>::Condition>> {
self.status
.as_mut()
.and_then(|s| Some(s.conditions.as_mut()))
}
}
impl crate::Resource for ValidatingAdmissionPolicyBinding {
const API_VERSION: &'static str = "admissionregistration.k8s.io/v1beta1";
const GROUP: &'static str = "admissionregistration.k8s.io";
const VERSION: &'static str = "v1beta1";
const KIND: &'static str = "ValidatingAdmissionPolicyBinding";
const NAME: &'static str = "validatingadmissionpolicybindings";
}
impl crate::HasMetadata for ValidatingAdmissionPolicyBinding {
type Metadata = crate::apimachinery::pkg::apis::meta::v1::ObjectMeta;
fn metadata(&self) -> Option<&<Self as crate::HasMetadata>::Metadata> {
self.metadata.as_ref()
}
fn metadata_mut(&mut self) -> Option<&mut <Self as crate::HasMetadata>::Metadata> {
self.metadata.as_mut()
}
}
impl crate::HasSpec for ValidatingAdmissionPolicyBinding {
type Spec = crate::api::admissionregistration::v1beta1::ValidatingAdmissionPolicyBindingSpec;
fn spec(&self) -> Option<&<Self as crate::HasSpec>::Spec> {
self.spec.as_ref()
}
fn spec_mut(&mut self) -> Option<&mut <Self as crate::HasSpec>::Spec> {
self.spec.as_mut()
}
}