@openshift-assisted/types 2.50.0 → 2.50.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1734,7 +1734,7 @@ export interface ImageInfo {
|
|
|
1734
1734
|
staticNetworkConfig?: string;
|
|
1735
1735
|
type?: ImageType;
|
|
1736
1736
|
}
|
|
1737
|
-
export type ImageType = 'full-iso' | 'minimal-iso'
|
|
1737
|
+
export type ImageType = 'full-iso' | 'minimal-iso';
|
|
1738
1738
|
export interface ImportClusterParams {
|
|
1739
1739
|
/**
|
|
1740
1740
|
* OpenShift cluster name.
|
|
@@ -1830,14 +1830,6 @@ export interface InfraEnv {
|
|
|
1830
1830
|
* certificates in this bundle.
|
|
1831
1831
|
*/
|
|
1832
1832
|
additionalTrustBundle?: string;
|
|
1833
|
-
/**
|
|
1834
|
-
* The IP address that hosts will use to communicate with the bootstrap node during installation.
|
|
1835
|
-
*/
|
|
1836
|
-
rendezvousIp?: string;
|
|
1837
|
-
/**
|
|
1838
|
-
* The type of network configuration for hosts: 'dhcp' for DHCP only, 'static' for static IP configuration.
|
|
1839
|
-
*/
|
|
1840
|
-
hostsNetworkConfigurationType?: 'dhcp' | 'static';
|
|
1841
1833
|
}
|
|
1842
1834
|
export interface InfraEnvCreateParams {
|
|
1843
1835
|
/**
|
|
@@ -1883,14 +1875,6 @@ export interface InfraEnvCreateParams {
|
|
|
1883
1875
|
* certificates in this bundle.
|
|
1884
1876
|
*/
|
|
1885
1877
|
additionalTrustBundle?: string;
|
|
1886
|
-
/**
|
|
1887
|
-
* The IP address that hosts will use to communicate with the bootstrap node during installation.
|
|
1888
|
-
*/
|
|
1889
|
-
rendezvousIp?: string;
|
|
1890
|
-
/**
|
|
1891
|
-
* The type of network configuration for hosts: 'dhcp' for DHCP only, 'static' for static IP configuration.
|
|
1892
|
-
*/
|
|
1893
|
-
hostsNetworkConfigurationType?: 'dhcp' | 'static';
|
|
1894
1878
|
}
|
|
1895
1879
|
export type InfraEnvList = InfraEnv[];
|
|
1896
1880
|
export interface InfraEnvUpdateParams {
|
|
@@ -1922,14 +1906,6 @@ export interface InfraEnvUpdateParams {
|
|
|
1922
1906
|
* Version of the OS image
|
|
1923
1907
|
*/
|
|
1924
1908
|
openshiftVersion?: string;
|
|
1925
|
-
/**
|
|
1926
|
-
* The IP address that hosts will use to communicate with the bootstrap node during installation.
|
|
1927
|
-
*/
|
|
1928
|
-
rendezvousIp?: string;
|
|
1929
|
-
/**
|
|
1930
|
-
* The type of network configuration for hosts: 'dhcp' for DHCP only, 'static' for static IP configuration.
|
|
1931
|
-
*/
|
|
1932
|
-
hostsNetworkConfigurationType?: 'dhcp' | 'static';
|
|
1933
1909
|
}
|
|
1934
1910
|
export interface InfraError {
|
|
1935
1911
|
/**
|
package/package.json
CHANGED