sigs.k8s.io/gateway-api@v1.0.0/conformance/tests/gateway-static-addresses.yaml (about)

     1  ---
     2  apiVersion: gateway.networking.k8s.io/v1
     3  kind: Gateway
     4  metadata:
     5    name: gateway-static-addresses
     6    namespace: gateway-conformance-infra
     7    annotations:
     8      gateway-api/skip-this-for-readiness: "true"
     9  spec:
    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