@openshift-assisted/types 2.34.2 → 2.36.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.
|
@@ -610,6 +610,7 @@ export type ClusterValidationId =
|
|
|
610
610
|
| 'cnv-requirements-satisfied'
|
|
611
611
|
| 'lvm-requirements-satisfied'
|
|
612
612
|
| 'mce-requirements-satisfied'
|
|
613
|
+
| 'mtv-requirements-satisfied'
|
|
613
614
|
| 'network-type-valid'
|
|
614
615
|
| 'platform-requirements-satisfied';
|
|
615
616
|
export interface CompletionParams {
|
|
@@ -694,7 +695,7 @@ export interface CreateManifestParams {
|
|
|
694
695
|
/**
|
|
695
696
|
* The name of the manifest to customize the installed OCP cluster.
|
|
696
697
|
*/
|
|
697
|
-
fileName: string; // ^[
|
|
698
|
+
fileName: string; // ^[^\/]*\.(json|ya?ml(\.patch_?[a-zA-Z0-9_]*)?)$
|
|
698
699
|
/**
|
|
699
700
|
* base64 encoded manifest content.
|
|
700
701
|
*/
|
|
@@ -770,6 +771,7 @@ export interface Disk {
|
|
|
770
771
|
sizeBytes?: number;
|
|
771
772
|
bootable?: boolean;
|
|
772
773
|
removable?: boolean;
|
|
774
|
+
partitionTypes?: string;
|
|
773
775
|
/**
|
|
774
776
|
* Whether the disk appears to be an installation media or not
|
|
775
777
|
*/
|
|
@@ -790,6 +792,7 @@ export interface Disk {
|
|
|
790
792
|
* A comma-separated list of disk names that this disk belongs to
|
|
791
793
|
*/
|
|
792
794
|
holders?: string;
|
|
795
|
+
iscsi?: Iscsi;
|
|
793
796
|
}
|
|
794
797
|
export interface DiskConfigParams {
|
|
795
798
|
id: string;
|
|
@@ -868,6 +871,10 @@ export interface DomainResolutionResponse {
|
|
|
868
871
|
* The IPv6 addresses of the domain, empty if none
|
|
869
872
|
*/
|
|
870
873
|
ipv6Addresses?: string /* ipv6 */[];
|
|
874
|
+
/**
|
|
875
|
+
* The cnames that were resolved for the domain, empty if none
|
|
876
|
+
*/
|
|
877
|
+
cnames?: string[];
|
|
871
878
|
}[];
|
|
872
879
|
}
|
|
873
880
|
/**
|
|
@@ -970,6 +977,7 @@ export type FeatureSupportLevelId =
|
|
|
970
977
|
| 'LSO'
|
|
971
978
|
| 'CNV'
|
|
972
979
|
| 'MCE'
|
|
980
|
+
| 'MTV'
|
|
973
981
|
| 'NUTANIX_INTEGRATION'
|
|
974
982
|
| 'BAREMETAL_PLATFORM'
|
|
975
983
|
| 'NONE_PLATFORM'
|
|
@@ -995,6 +1003,7 @@ export type FinalizingStage =
|
|
|
995
1003
|
| 'Applying olm manifests'
|
|
996
1004
|
| 'Waiting for olm operators csv initialization'
|
|
997
1005
|
| 'Waiting for olm operators csv'
|
|
1006
|
+
| 'Waiting for OLM operator setup jobs'
|
|
998
1007
|
| 'Done';
|
|
999
1008
|
export type FreeAddressesList = string /* ipv4 */[];
|
|
1000
1009
|
export type FreeAddressesRequest =
|
|
@@ -1509,6 +1518,7 @@ export type HostValidationId =
|
|
|
1509
1518
|
| 'odf-requirements-satisfied'
|
|
1510
1519
|
| 'lvm-requirements-satisfied'
|
|
1511
1520
|
| 'mce-requirements-satisfied'
|
|
1521
|
+
| 'mtv-requirements-satisfied'
|
|
1512
1522
|
| 'sufficient-installation-disk-speed'
|
|
1513
1523
|
| 'cnv-requirements-satisfied'
|
|
1514
1524
|
| 'sufficient-network-latency-requirement-for-role'
|
|
@@ -1758,6 +1768,10 @@ export interface InfraEnvUpdateParams {
|
|
|
1758
1768
|
* Allows users to change the additionalTrustBundle infra-env field
|
|
1759
1769
|
*/
|
|
1760
1770
|
additionalTrustBundle?: string;
|
|
1771
|
+
/**
|
|
1772
|
+
* Version of the OS image
|
|
1773
|
+
*/
|
|
1774
|
+
openshiftVersion?: string;
|
|
1761
1775
|
}
|
|
1762
1776
|
export interface InfraError {
|
|
1763
1777
|
/**
|
|
@@ -1856,6 +1870,10 @@ export interface InstallCmdRequest {
|
|
|
1856
1870
|
* If true, assisted service will attempt to skip MCO reboot
|
|
1857
1871
|
*/
|
|
1858
1872
|
enableSkipMcoReboot?: boolean;
|
|
1873
|
+
/**
|
|
1874
|
+
* If true, notify number of reboots by assisted controller
|
|
1875
|
+
*/
|
|
1876
|
+
notifyNumReboots?: boolean;
|
|
1859
1877
|
}
|
|
1860
1878
|
export interface InstallerArgsParams {
|
|
1861
1879
|
/**
|
|
@@ -1901,6 +1919,12 @@ export interface IoPerf {
|
|
|
1901
1919
|
syncDuration?: number;
|
|
1902
1920
|
}
|
|
1903
1921
|
export type Ip = string; // ^(?:(?:(?:[0-9]{1,3}\.){3}[0-9]{1,3})|(?:(?:[0-9a-fA-F]*:[0-9a-fA-F]*){2,}))?$
|
|
1922
|
+
export interface Iscsi {
|
|
1923
|
+
/**
|
|
1924
|
+
* Host IP address used to reach iSCSI target
|
|
1925
|
+
*/
|
|
1926
|
+
hostIpAddress?: string;
|
|
1927
|
+
}
|
|
1904
1928
|
/**
|
|
1905
1929
|
* pair of [operation, argument] specifying the argument and what operation should be applied on it.
|
|
1906
1930
|
*/
|
|
@@ -2033,6 +2057,10 @@ export interface Manifest {
|
|
|
2033
2057
|
* The file name prefaced by the folder that contains it.
|
|
2034
2058
|
*/
|
|
2035
2059
|
fileName?: string;
|
|
2060
|
+
/**
|
|
2061
|
+
* Describes whether manifest is sourced from a user or created by the system.
|
|
2062
|
+
*/
|
|
2063
|
+
manifestSource?: 'user' | 'system';
|
|
2036
2064
|
}
|
|
2037
2065
|
export interface Memory {
|
|
2038
2066
|
physicalBytes?: number;
|
|
@@ -2501,7 +2529,7 @@ export interface UpdateManifestParams {
|
|
|
2501
2529
|
/**
|
|
2502
2530
|
* The file name for the manifest to modify.
|
|
2503
2531
|
*/
|
|
2504
|
-
fileName: string; // ^[
|
|
2532
|
+
fileName: string; // ^[^\/]*\.(json|ya?ml(\.patch_?[a-zA-Z0-9_]*)?)$
|
|
2505
2533
|
/**
|
|
2506
2534
|
* The new folder for the manifest. Manifests can be placed in 'manifests' or 'openshift' directories.
|
|
2507
2535
|
*/
|
|
@@ -2509,7 +2537,7 @@ export interface UpdateManifestParams {
|
|
|
2509
2537
|
/**
|
|
2510
2538
|
* The new file name for the manifest.
|
|
2511
2539
|
*/
|
|
2512
|
-
updatedFileName?: string; // ^[
|
|
2540
|
+
updatedFileName?: string; // ^[^\/]*\.(json|ya?ml(\.patch_?[a-zA-Z0-9_]*)?)$
|
|
2513
2541
|
/**
|
|
2514
2542
|
* The new base64 encoded manifest content.
|
|
2515
2543
|
*/
|
|
@@ -2692,6 +2720,10 @@ export interface V2InfraEnvs {
|
|
|
2692
2720
|
clusterId?: string;
|
|
2693
2721
|
owner?: string;
|
|
2694
2722
|
}
|
|
2723
|
+
export interface V2OpenshiftVersions {
|
|
2724
|
+
version?: string;
|
|
2725
|
+
onlyLatest?: boolean;
|
|
2726
|
+
}
|
|
2695
2727
|
export interface V2SupportLevelsArchitectures {
|
|
2696
2728
|
openshiftVersion: string;
|
|
2697
2729
|
}
|
package/package.json
CHANGED