facet-lib
Version:
React component library for the Bare Metal Installer
14 lines (13 loc) • 496 B
TypeScript
import { ImageCreateParams, Cluster } from '../../api/types';
export declare type ProxyFieldsType = {
enableProxy: boolean;
httpProxy: Cluster['httpProxy'];
httpsProxy: Cluster['httpsProxy'];
noProxy: Cluster['noProxy'];
};
export declare type ClusterNetworkDefaultSettings = {
clusterNetworkCidr: string;
serviceNetworkCidr: string;
clusterNetworkHostPrefix: number;
};
export declare type DiscoveryImageFormValues = ImageCreateParams & ProxyFieldsType;