generated from kubernetes/kubernetes-template-project
-
Notifications
You must be signed in to change notification settings - Fork 521
/
Copy pathspec.html
4508 lines (4508 loc) · 114 KB
/
spec.html
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
<p>Packages:</p>
<ul>
<li>
<a href="#networking.x-k8s.io%2fv1alpha1">networking.x-k8s.io/v1alpha1</a>
</li>
</ul>
<h2 id="networking.x-k8s.io/v1alpha1">networking.x-k8s.io/v1alpha1</h2>
<p>
<p>Package v1alpha1 contains API Schema definitions for the networking.x-k8s.io
API group.</p>
</p>
Resource Types:
<ul><li>
<a href="#networking.x-k8s.io/v1alpha1.BackendPolicy">BackendPolicy</a>
</li><li>
<a href="#networking.x-k8s.io/v1alpha1.Gateway">Gateway</a>
</li><li>
<a href="#networking.x-k8s.io/v1alpha1.GatewayClass">GatewayClass</a>
</li><li>
<a href="#networking.x-k8s.io/v1alpha1.HTTPRoute">HTTPRoute</a>
</li><li>
<a href="#networking.x-k8s.io/v1alpha1.TCPRoute">TCPRoute</a>
</li><li>
<a href="#networking.x-k8s.io/v1alpha1.TLSRoute">TLSRoute</a>
</li><li>
<a href="#networking.x-k8s.io/v1alpha1.UDPRoute">UDPRoute</a>
</li></ul>
<h3 id="networking.x-k8s.io/v1alpha1.BackendPolicy">BackendPolicy
</h3>
<p>
<p>BackendPolicy defines policies associated with backends. For the purpose of
this API, a backend is defined as any resource that a route can forward
traffic to. A common example of a backend is a Service. Configuration that is
implementation specific may be represented with similar implementation
specific custom resources.</p>
</p>
<table>
<thead>
<tr>
<th>Field</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<code>apiVersion</code></br>
string</td>
<td>
<code>
networking.x-k8s.io/v1alpha1
</code>
</td>
</tr>
<tr>
<td>
<code>kind</code></br>
string
</td>
<td><code>BackendPolicy</code></td>
</tr>
<tr>
<td>
<code>metadata</code></br>
<em>
<a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.18/#objectmeta-v1-meta">
Kubernetes meta/v1.ObjectMeta
</a>
</em>
</td>
<td>
Refer to the Kubernetes API documentation for the fields of the
<code>metadata</code> field.
</td>
</tr>
<tr>
<td>
<code>spec</code></br>
<em>
<a href="#networking.x-k8s.io/v1alpha1.BackendPolicySpec">
BackendPolicySpec
</a>
</em>
</td>
<td>
<p>Spec defines the desired state of BackendPolicy.</p>
<br/>
<br/>
<table>
<tr>
<td>
<code>backendRefs</code></br>
<em>
<a href="#networking.x-k8s.io/v1alpha1.BackendRef">
[]BackendRef
</a>
</em>
</td>
<td>
<p>BackendRefs define which backends this policy should be applied to. This
policy can only apply to backends within the same namespace. If more than
one BackendPolicy targets the same backend, precedence must be given to
the oldest BackendPolicy.</p>
<p>Support: Core</p>
</td>
</tr>
<tr>
<td>
<code>tls</code></br>
<em>
<a href="#networking.x-k8s.io/v1alpha1.BackendTLSConfig">
BackendTLSConfig
</a>
</em>
</td>
<td>
<em>(Optional)</em>
<p>TLS is the TLS configuration for these backends.</p>
<p>Support: Extended</p>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td>
<code>status</code></br>
<em>
<a href="#networking.x-k8s.io/v1alpha1.BackendPolicyStatus">
BackendPolicyStatus
</a>
</em>
</td>
<td>
<p>Status defines the current state of BackendPolicy.</p>
</td>
</tr>
</tbody>
</table>
<h3 id="networking.x-k8s.io/v1alpha1.Gateway">Gateway
</h3>
<p>
<p>Gateway represents an instantiation of a service-traffic handling
infrastructure by binding Listeners to a set of IP addresses.</p>
<p>Implementations should add the <code>gateway-exists-finalizer.networking.x-k8s.io</code>
finalizer on the associated GatewayClass whenever Gateway(s) is running.
This ensures that a GatewayClass associated with a Gateway(s) is not
deleted while in use.</p>
</p>
<table>
<thead>
<tr>
<th>Field</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<code>apiVersion</code></br>
string</td>
<td>
<code>
networking.x-k8s.io/v1alpha1
</code>
</td>
</tr>
<tr>
<td>
<code>kind</code></br>
string
</td>
<td><code>Gateway</code></td>
</tr>
<tr>
<td>
<code>metadata</code></br>
<em>
<a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.18/#objectmeta-v1-meta">
Kubernetes meta/v1.ObjectMeta
</a>
</em>
</td>
<td>
Refer to the Kubernetes API documentation for the fields of the
<code>metadata</code> field.
</td>
</tr>
<tr>
<td>
<code>spec</code></br>
<em>
<a href="#networking.x-k8s.io/v1alpha1.GatewaySpec">
GatewaySpec
</a>
</em>
</td>
<td>
<p>Spec defines the desired state of Gateway.</p>
<br/>
<br/>
<table>
<tr>
<td>
<code>gatewayClassName</code></br>
<em>
string
</em>
</td>
<td>
<p>GatewayClassName used for this Gateway. This is the name of a
GatewayClass resource.</p>
</td>
</tr>
<tr>
<td>
<code>listeners</code></br>
<em>
<a href="#networking.x-k8s.io/v1alpha1.Listener">
[]Listener
</a>
</em>
</td>
<td>
<p>Listeners associated with this Gateway. Listeners define
logical endpoints that are bound on this Gateway’s addresses.
At least one Listener MUST be specified.</p>
<p>An implementation MAY group Listeners by Port and then collapse each
group of Listeners into a single Listener if the implementation
determines that the Listeners in the group are “compatible”. An
implementation MAY also group together and collapse compatible
Listeners belonging to different Gateways.</p>
<p>For example, an implementation might consider Listeners to be
compatible with each other if all of the following conditions are
met:</p>
<ol>
<li><p>Either each Listener within the group specifies the “HTTP”
Protocol or each Listener within the group specifies either
the “HTTPS” or “TLS” Protocol.</p></li>
<li><p>Each Listener within the group specifies a Hostname that is unique
within the group.</p></li>
<li><p>As a special case, one Listener within a group may omit Hostname,
in which case this Listener matches when no other Listener
matches.</p></li>
</ol>
<p>If the implementation does collapse compatible Listeners, the
hostname provided in the incoming client request MUST be
matched to a Listener to find the correct set of Routes.
The incoming hostname MUST be matched using the Hostname
field for each Listener in order of most to least specific.
That is, exact matches must be processed before wildcard
matches.</p>
<p>If this field specifies multiple Listeners that have the same
Port value but are not compatible, the implementation must raise
a “Conflicted” condition in the Listener status.</p>
<p>Support: Core</p>
</td>
</tr>
<tr>
<td>
<code>addresses</code></br>
<em>
<a href="#networking.x-k8s.io/v1alpha1.GatewayAddress">
[]GatewayAddress
</a>
</em>
</td>
<td>
<em>(Optional)</em>
<p>Addresses requested for this gateway. This is optional and
behavior can depend on the GatewayClass. If a value is set
in the spec and the requested address is invalid, the
GatewayClass MUST indicate this in the associated entry in
GatewayStatus.Addresses.</p>
<p>If no Addresses are specified, the GatewayClass may
schedule the Gateway in an implementation-defined manner,
assigning an appropriate set of Addresses.</p>
<p>The GatewayClass MUST bind all Listeners to every
GatewayAddress that it assigns to the Gateway.</p>
<p>Support: Core</p>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td>
<code>status</code></br>
<em>
<a href="#networking.x-k8s.io/v1alpha1.GatewayStatus">
GatewayStatus
</a>
</em>
</td>
<td>
<p>Status defines the current state of Gateway.</p>
</td>
</tr>
</tbody>
</table>
<h3 id="networking.x-k8s.io/v1alpha1.GatewayClass">GatewayClass
</h3>
<p>
<p>GatewayClass describes a class of Gateways available to the user
for creating Gateway resources.</p>
<p>GatewayClass is a Cluster level resource.</p>
</p>
<table>
<thead>
<tr>
<th>Field</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<code>apiVersion</code></br>
string</td>
<td>
<code>
networking.x-k8s.io/v1alpha1
</code>
</td>
</tr>
<tr>
<td>
<code>kind</code></br>
string
</td>
<td><code>GatewayClass</code></td>
</tr>
<tr>
<td>
<code>metadata</code></br>
<em>
<a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.18/#objectmeta-v1-meta">
Kubernetes meta/v1.ObjectMeta
</a>
</em>
</td>
<td>
Refer to the Kubernetes API documentation for the fields of the
<code>metadata</code> field.
</td>
</tr>
<tr>
<td>
<code>spec</code></br>
<em>
<a href="#networking.x-k8s.io/v1alpha1.GatewayClassSpec">
GatewayClassSpec
</a>
</em>
</td>
<td>
<p>Spec defines the desired state of GatewayClass.</p>
<br/>
<br/>
<table>
<tr>
<td>
<code>controller</code></br>
<em>
string
</em>
</td>
<td>
<p>Controller is a domain/path string that indicates the
controller that is managing Gateways of this class.</p>
<p>Example: “acme.io/gateway-controller”.</p>
<p>This field is not mutable and cannot be empty.</p>
<p>The format of this field is DOMAIN “/” PATH, where DOMAIN
and PATH are valid Kubernetes names
(<a href="https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names">https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names</a>).</p>
<p>Support: Core</p>
</td>
</tr>
<tr>
<td>
<code>parametersRef</code></br>
<em>
<a href="#networking.x-k8s.io/v1alpha1.ParametersReference">
ParametersReference
</a>
</em>
</td>
<td>
<em>(Optional)</em>
<p>ParametersRef is a reference to a resource that contains the configuration
parameters corresponding to the GatewayClass. This is optional if the
controller does not require any additional configuration.</p>
<p>ParametersRef can reference a standard Kubernetes resource, i.e. ConfigMap,
or an implementation-specific custom resource. The resource can be
cluster-scoped or namespace-scoped.</p>
<p>If the referent cannot be found, the GatewayClass’s “InvalidParameters”
status condition will be true.</p>
<p>Support: Custom</p>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td>
<code>status</code></br>
<em>
<a href="#networking.x-k8s.io/v1alpha1.GatewayClassStatus">
GatewayClassStatus
</a>
</em>
</td>
<td>
<p>Status defines the current state of GatewayClass.</p>
</td>
</tr>
</tbody>
</table>
<h3 id="networking.x-k8s.io/v1alpha1.HTTPRoute">HTTPRoute
</h3>
<p>
<p>HTTPRoute is the Schema for the HTTPRoute resource.</p>
</p>
<table>
<thead>
<tr>
<th>Field</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<code>apiVersion</code></br>
string</td>
<td>
<code>
networking.x-k8s.io/v1alpha1
</code>
</td>
</tr>
<tr>
<td>
<code>kind</code></br>
string
</td>
<td><code>HTTPRoute</code></td>
</tr>
<tr>
<td>
<code>metadata</code></br>
<em>
<a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.18/#objectmeta-v1-meta">
Kubernetes meta/v1.ObjectMeta
</a>
</em>
</td>
<td>
Refer to the Kubernetes API documentation for the fields of the
<code>metadata</code> field.
</td>
</tr>
<tr>
<td>
<code>spec</code></br>
<em>
<a href="#networking.x-k8s.io/v1alpha1.HTTPRouteSpec">
HTTPRouteSpec
</a>
</em>
</td>
<td>
<p>Spec defines the desired state of HTTPRoute.</p>
<br/>
<br/>
<table>
<tr>
<td>
<code>gateways</code></br>
<em>
<a href="#networking.x-k8s.io/v1alpha1.RouteGateways">
RouteGateways
</a>
</em>
</td>
<td>
<em>(Optional)</em>
<p>Gateways defines which Gateways can use this Route.</p>
</td>
</tr>
<tr>
<td>
<code>hostnames</code></br>
<em>
<a href="#networking.x-k8s.io/v1alpha1.Hostname">
[]Hostname
</a>
</em>
</td>
<td>
<em>(Optional)</em>
<p>Hostnames defines a set of hostname that should match against
the HTTP Host header to select a HTTPRoute to process the request.
Hostname is the fully qualified domain name of a network host,
as defined by RFC 3986. Note the following deviations from the
“host” part of the URI as defined in the RFC:</p>
<ol>
<li>IPs are not allowed.</li>
<li>The <code>:</code> delimiter is not respected because ports are not allowed.</li>
</ol>
<p>Incoming requests are matched against the hostnames before the
HTTPRoute rules. If no hostname is specified, traffic is routed
based on the HTTPRouteRules.</p>
<p>Hostname can be “precise” which is a domain name without the terminating
dot of a network host (e.g. “foo.example.com”) or “wildcard”, which is
a domain name prefixed with a single wildcard label (e.g. <code>*.example.com</code>).
The wildcard character <code>*</code> must appear by itself as the first DNS
label and matches only a single label.
You cannot have a wildcard label by itself (e.g. Host == <code>*</code>).
Requests will be matched against the Host field in the following order:
1. If Host is precise, the request matches this rule if
the http host header is equal to Host.
2. If Host is a wildcard, then the request matches this rule if
the http host header is to equal to the suffix
(removing the first label) of the wildcard rule.</p>
<p>Support: Core</p>
</td>
</tr>
<tr>
<td>
<code>tls</code></br>
<em>
<a href="#networking.x-k8s.io/v1alpha1.RouteTLSConfig">
RouteTLSConfig
</a>
</em>
</td>
<td>
<em>(Optional)</em>
<p>TLS defines the TLS certificate to use for Hostnames defined in this
Route. This configuration only takes effect if the AllowRouteOverride
field is set to true in the associated Gateway resource.</p>
<p>Collisions can happen if multiple HTTPRoutes define a TLS certificate
for the same hostname. In such a case, conflict resolution guiding
principles apply, specifically, if hostnames are same and two different
certificates are specified then the certificate in the
oldest resource wins.</p>
<p>Please note that HTTP Route-selection takes place after the
TLS Handshake (ClientHello). Due to this, TLS certificate defined
here will take precedence even if the request has the potential to
match multiple routes (in case multiple HTTPRoutes share the same
hostname).</p>
<p>Support: Core</p>
</td>
</tr>
<tr>
<td>
<code>rules</code></br>
<em>
<a href="#networking.x-k8s.io/v1alpha1.HTTPRouteRule">
[]HTTPRouteRule
</a>
</em>
</td>
<td>
<em>(Optional)</em>
<p>Rules are a list of HTTP matchers, filters and actions.</p>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td>
<code>status</code></br>
<em>
<a href="#networking.x-k8s.io/v1alpha1.HTTPRouteStatus">
HTTPRouteStatus
</a>
</em>
</td>
<td>
<p>Status defines the current state of HTTPRoute.</p>
</td>
</tr>
</tbody>
</table>
<h3 id="networking.x-k8s.io/v1alpha1.TCPRoute">TCPRoute
</h3>
<p>
<p>TCPRoute is the Schema for the TCPRoute resource.</p>
</p>
<table>
<thead>
<tr>
<th>Field</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<code>apiVersion</code></br>
string</td>
<td>
<code>
networking.x-k8s.io/v1alpha1
</code>
</td>
</tr>
<tr>
<td>
<code>kind</code></br>
string
</td>
<td><code>TCPRoute</code></td>
</tr>
<tr>
<td>
<code>metadata</code></br>
<em>
<a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.18/#objectmeta-v1-meta">
Kubernetes meta/v1.ObjectMeta
</a>
</em>
</td>
<td>
Refer to the Kubernetes API documentation for the fields of the
<code>metadata</code> field.
</td>
</tr>
<tr>
<td>
<code>spec</code></br>
<em>
<a href="#networking.x-k8s.io/v1alpha1.TCPRouteSpec">
TCPRouteSpec
</a>
</em>
</td>
<td>
<p>Spec defines the desired state of TCPRoute.</p>
<br/>
<br/>
<table>
<tr>
<td>
<code>rules</code></br>
<em>
<a href="#networking.x-k8s.io/v1alpha1.TCPRouteRule">
[]TCPRouteRule
</a>
</em>
</td>
<td>
<p>Rules are a list of TCP matchers and actions.</p>
</td>
</tr>
<tr>
<td>
<code>gateways</code></br>
<em>
<a href="#networking.x-k8s.io/v1alpha1.RouteGateways">
RouteGateways
</a>
</em>
</td>
<td>
<em>(Optional)</em>
<p>Gateways defines which Gateways can use this Route.</p>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td>
<code>status</code></br>
<em>
<a href="#networking.x-k8s.io/v1alpha1.TCPRouteStatus">
TCPRouteStatus
</a>
</em>
</td>
<td>
<p>Status defines the current state of TCPRoute.</p>
</td>
</tr>
</tbody>
</table>
<h3 id="networking.x-k8s.io/v1alpha1.TLSRoute">TLSRoute
</h3>
<p>
<p>TLSRoute is the Schema for the TLSRoute resource. TLSRoute is similar to
TCPRoute but can be configured to match against TLS-specific metadata.
This allows more flexibility in matching streams for a given TLS listener.</p>
<p>If you need to forward traffic to a single target for a TLS listener, you
could chose to use a TCPRoute with a TLS listener.</p>
</p>
<table>
<thead>
<tr>
<th>Field</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<code>apiVersion</code></br>
string</td>
<td>
<code>
networking.x-k8s.io/v1alpha1
</code>
</td>
</tr>
<tr>
<td>
<code>kind</code></br>
string
</td>
<td><code>TLSRoute</code></td>
</tr>
<tr>
<td>
<code>metadata</code></br>
<em>
<a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.18/#objectmeta-v1-meta">
Kubernetes meta/v1.ObjectMeta
</a>
</em>
</td>
<td>
Refer to the Kubernetes API documentation for the fields of the
<code>metadata</code> field.
</td>
</tr>
<tr>
<td>
<code>spec</code></br>
<em>
<a href="#networking.x-k8s.io/v1alpha1.TLSRouteSpec">
TLSRouteSpec
</a>
</em>
</td>
<td>
<p>Spec defines the desired state of TLSRoute.</p>
<br/>
<br/>
<table>
<tr>
<td>
<code>rules</code></br>
<em>
<a href="#networking.x-k8s.io/v1alpha1.TLSRouteRule">
[]TLSRouteRule
</a>
</em>
</td>
<td>
<p>Rules are a list of TLS matchers and actions.</p>
</td>
</tr>
<tr>
<td>
<code>gateways</code></br>
<em>
<a href="#networking.x-k8s.io/v1alpha1.RouteGateways">
RouteGateways
</a>
</em>
</td>
<td>
<em>(Optional)</em>
<p>Gateways defines which Gateways can use this Route.</p>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td>
<code>status</code></br>
<em>
<a href="#networking.x-k8s.io/v1alpha1.TLSRouteStatus">
TLSRouteStatus
</a>
</em>
</td>
<td>
<p>Status defines the current state of TLSRoute.</p>
</td>
</tr>
</tbody>
</table>
<h3 id="networking.x-k8s.io/v1alpha1.UDPRoute">UDPRoute
</h3>
<p>
<p>UDPRoute is the Schema for the UDPRoute resource.</p>
</p>
<table>
<thead>
<tr>
<th>Field</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<code>apiVersion</code></br>
string</td>
<td>
<code>
networking.x-k8s.io/v1alpha1
</code>
</td>
</tr>
<tr>
<td>
<code>kind</code></br>
string
</td>
<td><code>UDPRoute</code></td>
</tr>
<tr>
<td>
<code>metadata</code></br>
<em>
<a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.18/#objectmeta-v1-meta">
Kubernetes meta/v1.ObjectMeta
</a>
</em>
</td>
<td>
Refer to the Kubernetes API documentation for the fields of the
<code>metadata</code> field.
</td>
</tr>
<tr>
<td>
<code>spec</code></br>
<em>
<a href="#networking.x-k8s.io/v1alpha1.UDPRouteSpec">
UDPRouteSpec
</a>
</em>
</td>
<td>
<p>Spec defines the desired state of UDPRoute.</p>
<br/>
<br/>
<table>
<tr>
<td>
<code>rules</code></br>
<em>
<a href="#networking.x-k8s.io/v1alpha1.UDPRouteRule">
[]UDPRouteRule
</a>
</em>
</td>
<td>
<p>Rules are a list of UDP matchers and actions.</p>
</td>
</tr>
<tr>
<td>
<code>gateways</code></br>
<em>
<a href="#networking.x-k8s.io/v1alpha1.RouteGateways">
RouteGateways
</a>
</em>
</td>
<td>
<em>(Optional)</em>
<p>Gateways defines which Gateways can use this Route.</p>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td>
<code>status</code></br>
<em>
<a href="#networking.x-k8s.io/v1alpha1.UDPRouteStatus">
UDPRouteStatus
</a>
</em>
</td>
<td>
<p>Status defines the current state of UDPRoute.</p>
</td>
</tr>
</tbody>
</table>
<h3 id="networking.x-k8s.io/v1alpha1.AddressType">AddressType
(<code>string</code> alias)</p></h3>
<p>
(<em>Appears on:</em>
<a href="#networking.x-k8s.io/v1alpha1.GatewayAddress">GatewayAddress</a>)
</p>
<p>
<p>AddressType defines how a network address is represented as a text string.
Valid AddressType values are:</p>
<ul>
<li>“IPAddress”: an IPv4 or IPv6 address</li>
<li>“NamedAddress”: an opaque identifier. The interpretation
of the name is dependent on the controller. If a NamedAddress is
requested but unsupported by an implementation, the controller
should raise the “Detached” listener status condition on the Gateway
with the “UnsupportedAddress” reason.</li>
</ul>
<p>A NamedAddress might be a cloud-dependent ID for a “static” or “elastic” IP</p>
</p>
<table>
<thead>
<tr>
<th>Value</th>
<th>Description</th>
</tr>
</thead>
<tbody><tr><td><p>"IPAddress"</p></td>
<td><p>IPAddressType a textual representation of a numeric IP
address. IPv4 addresses must be in dotted-decimal
form. IPv6 addresses must be in a standard IPv6 text
representation (see RFC 5952).</p>
<p>If the requested address is unsupported, the controller
should raise the “Detached” listener status condition on
the Gateway with the “UnsupportedAddress” reason.</p>
<p>Support: Extended.</p>
</td>
</tr><tr><td><p>"NamedAddress"</p></td>
<td><p>NamedAddressType is an opaque identifier. The interpretation
of the name is dependent on the controller. If a NamedAddress is
requested but unsupported by an implementation, the controller
should raise the “Detached” listener status condition on the Gateway
with the “UnsupportedAddress” reason.</p>
<p>Support: Implementation-specific.</p>
</td>
</tr></tbody>
</table>
<h3 id="networking.x-k8s.io/v1alpha1.BackendPolicyConditionType">BackendPolicyConditionType
(<code>string</code> alias)</p></h3>
<p>
<p>BackendPolicyConditionType is a type of condition associated with a
BackendPolicy.</p>
</p>
<table>
<thead>
<tr>
<th>Value</th>
<th>Description</th>
</tr>
</thead>
<tbody><tr><td><p>"NoSuchBackend"</p></td>
<td><p>ConditionNoSuchBackend indicates that one or more of the the specified
Backends does not exist.</p>
</td>
</tr></tbody>
</table>
<h3 id="networking.x-k8s.io/v1alpha1.BackendPolicySpec">BackendPolicySpec
</h3>
<p>
(<em>Appears on:</em>
<a href="#networking.x-k8s.io/v1alpha1.BackendPolicy">BackendPolicy</a>)
</p>
<p>
<p>BackendPolicySpec defines desired policy for a backend.</p>
</p>
<table>
<thead>
<tr>
<th>Field</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<code>backendRefs</code></br>
<em>
<a href="#networking.x-k8s.io/v1alpha1.BackendRef">
[]BackendRef
</a>
</em>
</td>
<td>
<p>BackendRefs define which backends this policy should be applied to. This
policy can only apply to backends within the same namespace. If more than
one BackendPolicy targets the same backend, precedence must be given to
the oldest BackendPolicy.</p>
<p>Support: Core</p>
</td>
</tr>
<tr>