...
1---
2apiVersion: gateway.networking.k8s.io/v1
3kind: Gateway
4metadata:
5 name: gateway-static-addresses
6 namespace: gateway-conformance-infra
7 annotations:
8 gateway-api/skip-this-for-readiness: "true"
9spec:
10 gatewayClassName: "{GATEWAY_CLASS_NAME}"
11 addresses:
12 # this address type is intentionally unsupported to test that implementations
13 # are indicating Gateways with unsupported addresses are not accepted.
14 # the test will remove this address once it confirms it triggers a status of
15 # Accepted==False.
16 - type: "test/fake-invalid-type"
17 value: "fake address teehee!"
18 # This indicates an address that is known to not be usable by the
19 # implementation and will be substituted with user provided types and values.
20 - value: "PLACEHOLDER_UNUSABLE_ADDRS"
21 # This indicates an address that is known to be usable by the implementation
22 # and will be substituted with user provided types and values.
23 - value: "PLACEHOLDER_USABLE_ADDRS"
24 listeners:
25 - name: http
26 port: 8080
27 protocol: HTTP
View as plain text