Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

GatewayServiceMesh

import type { GatewayServiceMesh } from "https://googleapis.deno.dev/v1/clouddeploy:v1.ts";

Information about the Kubernetes Gateway API service mesh configuration.

interface GatewayServiceMesh {
deployment?: string;
httpRoute?: string;
routeUpdateWaitTime?: number;
service?: string;
stableCutbackDuration?: number;
}

§Properties

§
deployment?: string
[src]

Required. Name of the Kubernetes Deployment whose traffic is managed by the specified HTTPRoute and Service.

§
httpRoute?: string
[src]

Required. Name of the Gateway API HTTPRoute.

§
routeUpdateWaitTime?: number
[src]

Optional. The time to wait for route updates to propagate. The maximum configurable time is 3 hours, in seconds format. If unspecified, there is no wait time.

§
service?: string
[src]

Required. Name of the Kubernetes Service.

§
stableCutbackDuration?: number
[src]

Optional. The amount of time to migrate traffic back from the canary Service to the original Service during the stable phase deployment. If specified, must be between 15s and 3600s. If unspecified, there is no cutback time.