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

KubernetesRenderMetadata

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

KubernetesRenderMetadata contains Kubernetes information associated with a Release render.

interface KubernetesRenderMetadata {
readonly canaryDeployment?: string;
readonly deployment?: string;
readonly kubernetesNamespace?: string;
}

§Properties

§
readonly canaryDeployment?: string
[src]

Output only. Name of the canary version of the Kubernetes Deployment that will be applied to the GKE cluster. Only set if a canary deployment strategy was configured.

§
readonly deployment?: string
[src]

Output only. Name of the Kubernetes Deployment that will be applied to the GKE cluster. Only set if a single Deployment was provided in the rendered manifest.

§
readonly kubernetesNamespace?: string
[src]

Output only. Namespace the Kubernetes resources will be applied to in the GKE cluster. Only set if applying resources to a single namespace.