@daocloud-proto/kpanda 0.50.0-rc1 → 0.51.0-dev-da6832b1
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.
|
@@ -16,6 +16,12 @@ type OneOf<T> =
|
|
|
16
16
|
: never)
|
|
17
17
|
: never);
|
|
18
18
|
|
|
19
|
+
export enum RepoType {
|
|
20
|
+
REPO_TYPE_UNSPECIFIED = "REPO_TYPE_UNSPECIFIED",
|
|
21
|
+
HTTP = "HTTP",
|
|
22
|
+
OCI = "OCI",
|
|
23
|
+
}
|
|
24
|
+
|
|
19
25
|
export enum RepoPhase {
|
|
20
26
|
REPOSITORY_PHASE_UNSPECIFIED = "REPOSITORY_PHASE_UNSPECIFIED",
|
|
21
27
|
UNKNOWN = "UNKNOWN",
|
|
@@ -43,6 +49,7 @@ export type RepoSpec = {
|
|
|
43
49
|
url?: string
|
|
44
50
|
clientSecret?: RepoSpecSecretReference
|
|
45
51
|
insecureSkipTLSVerify?: boolean
|
|
52
|
+
type?: RepoType
|
|
46
53
|
}
|
|
47
54
|
|
|
48
55
|
export type RepoStatus = {
|
|
@@ -52,6 +59,8 @@ export type RepoStatus = {
|
|
|
52
59
|
downloadTime?: string
|
|
53
60
|
url?: string
|
|
54
61
|
conditions?: KpandaIoApiTypesObjectmeta.Condition[]
|
|
62
|
+
numberOfRetries?: number
|
|
63
|
+
nextRetryAt?: string
|
|
55
64
|
}
|
|
56
65
|
|
|
57
66
|
export type ValidateHelmRepoRequest = {
|
|
@@ -62,6 +71,7 @@ export type ValidateHelmRepoRequest = {
|
|
|
62
71
|
userName?: string
|
|
63
72
|
password?: string
|
|
64
73
|
insecureSkipTLSVerify?: boolean
|
|
74
|
+
type?: RepoType
|
|
65
75
|
}
|
|
66
76
|
|
|
67
77
|
|
|
@@ -84,6 +94,7 @@ export type CreateHelmRepoRequest = {
|
|
|
84
94
|
labels?: {[key: string]: string}
|
|
85
95
|
annotations?: {[key: string]: string}
|
|
86
96
|
insecureSkipTLSVerify?: boolean
|
|
97
|
+
type?: RepoType
|
|
87
98
|
}
|
|
88
99
|
|
|
89
100
|
export type ListHelmReposRequest = {
|
|
@@ -130,6 +141,7 @@ export type UpdateHelmRepoRequest = {
|
|
|
130
141
|
labels?: {[key: string]: string}
|
|
131
142
|
annotations?: {[key: string]: string}
|
|
132
143
|
insecureSkipTLSVerify?: boolean
|
|
144
|
+
type?: RepoType
|
|
133
145
|
}
|
|
134
146
|
|
|
135
147
|
export type RefreshHelmRepoRequest = {
|
|
@@ -70,6 +70,9 @@ export type AddonSetting = {
|
|
|
70
70
|
enableHelmRepoRefresh?: boolean
|
|
71
71
|
helmOperationJobTemplateResources?: KpandaIoApiCoreV1alpha1Pod.ResourceRequirements
|
|
72
72
|
helmOperationTimeoutSecond?: string
|
|
73
|
+
enableHelmRepoOciDownloadAllTags?: boolean
|
|
74
|
+
helmRepoOciBackoffMaxWaitSecond?: number
|
|
75
|
+
helmRepoOciBackoffMaxRetries?: number
|
|
73
76
|
}
|
|
74
77
|
|
|
75
78
|
export type GetClusterSettingRequest = {
|
|
@@ -15,6 +15,10 @@ export type DeviceGPU = {
|
|
|
15
15
|
frameBufferMemoryUtilization?: string
|
|
16
16
|
coreUtilization?: string
|
|
17
17
|
supportDashboard?: boolean
|
|
18
|
+
allocatedFrameBufferMemory?: string
|
|
19
|
+
allocatableFrameBufferMemory?: string
|
|
20
|
+
allocatedCore?: string
|
|
21
|
+
allocatableCore?: string
|
|
18
22
|
}
|
|
19
23
|
|
|
20
24
|
export type ListGPURequest = {
|