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

KubernetesSoftwareConfig

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

The software configuration for this Dataproc cluster running on Kubernetes.

interface KubernetesSoftwareConfig {
componentVersion?: {
[key: string]: string;
}
;
properties?: {
[key: string]: string;
}
;
}

§Properties

§
componentVersion?: {
[key: string]: string;
}
[src]

The components that should be installed in this Dataproc cluster. The key must be a string from the KubernetesComponent enumeration. The value is the version of the software to be installed. At least one entry must be specified.

§
properties?: {
[key: string]: string;
}
[src]

The properties to set on daemon config files.Property keys are specified in prefix:property format, for example spark:spark.kubernetes.container.image. The following are supported prefixes and their mappings: spark: spark-defaults.confFor more information, see Cluster properties (https://cloud.google.com/dataproc/docs/concepts/cluster-properties).