cdktf-crd
Version:
31 lines (30 loc) • 1.22 kB
TypeScript
import { Manifest, type ManifestConfig } from "@cdktf/provider-kubernetes/lib/manifest";
import { Construct } from "constructs";
export declare class KubernetesRemoteNodeV1alpha1Manifest extends Manifest {
constructor(scope: Construct, id: string, config: KubernetesRemoteNodeV1alpha1ManifestConfig);
}
export interface KubernetesRemoteNodeV1alpha1ManifestConfig extends ManifestConfig {
manifest: {
apiVersion?: "networking.gke.io/v1alpha1";
kind?: "RemoteNode";
metadata: {
annotations?: {
[key: string]: string;
};
labels?: {
[key: string]: string;
};
name: string;
namespace?: string;
};
/** @description Spec is a subset of runtime configuration node is another cluster. */
spec?: {
/** @description LIst of CIDRs used by the node for pods. */
podCIDRs?: string[];
/** @description Public key used by the node for encrypton tunnnel. */
"public-key"?: string;
/** @description IP address used by the node for the purpose of encryption tunnel. */
"tunnel-ip"?: string;
};
};
}