INPUT_OBJECT

KubernetesKindSpringCloudGatewayRouteConfigSpecServiceInput

Kubernetes Service to route traffic to specified spec.routes.

link GraphQL Schema definition

  • input KubernetesKindSpringCloudGatewayRouteConfigSpecServiceInput {
  • filters: [String]
  • # Name of a service to route to. Takes lower precedence than `uri`. Either `name`
  • # or `uri` are required unless all routes define their own uri.
  • name: String
  • # (Optional) If not set will use the RouteConfig's namespace.
  • namespace: String
  • # (Optional) If not set will use one of the available service ports.
  • port: Int
  • predicates: [String]
  • # (Optional) Define SSO validation for all routes.
  • ssoEnabled: Boolean
  • # Pass currently-authenticated user's identity token to all routes.
  • tokenRelay: Boolean
  • # A URI to apply to all routes. Takes precedence over name. Either `name` or `uri`
  • # are required unless all routes define their own uri. Routes can override this
  • # value.
  • uri: String
  • }