@openshift-assisted/types 2.48.6 → 2.50.0

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.
@@ -113,7 +113,7 @@ export interface Cluster {
113
113
  * 'AddHostsCluster' for cluster that add hosts to existing OCP cluster,
114
114
  *
115
115
  */
116
- kind: 'Cluster' | 'AddHostsCluster';
116
+ kind: 'Cluster' | 'AddHostsCluster' | 'DisconnectedCluster';
117
117
  /**
118
118
  * (DEPRECATED) Please use 'controlPlaneCount' instead. Guaranteed availability of the installed cluster. 'Full' installs a Highly-Available cluster
119
119
  * over multiple master nodes whereas 'None' installs a full cluster over one node.
@@ -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' | 'disconnected-iso';
1738
1738
  export interface ImportClusterParams {
1739
1739
  /**
1740
1740
  * OpenShift cluster name.
@@ -1830,6 +1830,14 @@ 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';
1833
1841
  }
1834
1842
  export interface InfraEnvCreateParams {
1835
1843
  /**
@@ -1875,6 +1883,14 @@ export interface InfraEnvCreateParams {
1875
1883
  * certificates in this bundle.
1876
1884
  */
1877
1885
  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';
1878
1894
  }
1879
1895
  export type InfraEnvList = InfraEnv[];
1880
1896
  export interface InfraEnvUpdateParams {
@@ -1906,6 +1922,14 @@ export interface InfraEnvUpdateParams {
1906
1922
  * Version of the OS image
1907
1923
  */
1908
1924
  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';
1909
1933
  }
1910
1934
  export interface InfraError {
1911
1935
  /**
package/package.json CHANGED
@@ -44,8 +44,8 @@
44
44
  },
45
45
  "devDependencies": {
46
46
  "@types/js-yaml": "^4.0.1",
47
- "js-yaml": "^4.1.0",
47
+ "js-yaml": "^4.1.1",
48
48
  "sw2dts": "^2.6.3"
49
49
  },
50
- "version": "2.48.6"
50
+ "version": "2.50.0"
51
51
  }
package/tsconfig.json CHANGED
@@ -4,6 +4,7 @@
4
4
  "incremental": true,
5
5
  "noEmit": false,
6
6
  "resolveJsonModule": true,
7
+ "skipLibCheck": true,
7
8
  "tsBuildInfoFile": "node_modules/.cache/tsc/tsconfig.tsbuildinfo"
8
9
  },
9
10
  "include": ["*.d.ts"]