@daocloud-proto/kpanda 0.26.0-dev-c9d81580 → 0.26.0-dev-3a3eb7d0
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.
|
@@ -31,6 +31,12 @@ export enum Phase {
|
|
|
31
31
|
Blocked = "Blocked",
|
|
32
32
|
}
|
|
33
33
|
|
|
34
|
+
export enum OsRepoType {
|
|
35
|
+
OsRepoNone = "OsRepoNone",
|
|
36
|
+
BuiltIn = "BuiltIn",
|
|
37
|
+
External = "External",
|
|
38
|
+
}
|
|
39
|
+
|
|
34
40
|
export enum KubesprayArgsRuntime {
|
|
35
41
|
RUNTIME_UNSPECIFIED = "RUNTIME_UNSPECIFIED",
|
|
36
42
|
containerd = "containerd",
|
|
@@ -411,7 +417,7 @@ export type GetPreCheckClusterInfoResponse = {
|
|
|
411
417
|
}
|
|
412
418
|
|
|
413
419
|
export type PreCheckYumRepoInfo = {
|
|
414
|
-
|
|
420
|
+
osRepoType?: OsRepoType
|
|
415
421
|
yumRepos?: string[]
|
|
416
422
|
dockerRhRepoBaseUrl?: string
|
|
417
423
|
}
|