@daocloud-proto/kpanda 0.49.0-dev-723a11b3 → 0.49.0-dev-b9fa9c7d
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
|
+
Helm = "Helm",
|
|
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 = {
|
|
@@ -62,6 +69,7 @@ export type ValidateHelmRepoRequest = {
|
|
|
62
69
|
userName?: string
|
|
63
70
|
password?: string
|
|
64
71
|
insecureSkipTLSVerify?: boolean
|
|
72
|
+
type?: RepoType
|
|
65
73
|
}
|
|
66
74
|
|
|
67
75
|
|
|
@@ -84,6 +92,7 @@ export type CreateHelmRepoRequest = {
|
|
|
84
92
|
labels?: {[key: string]: string}
|
|
85
93
|
annotations?: {[key: string]: string}
|
|
86
94
|
insecureSkipTLSVerify?: boolean
|
|
95
|
+
type?: RepoType
|
|
87
96
|
}
|
|
88
97
|
|
|
89
98
|
export type ListHelmReposRequest = {
|
|
@@ -130,6 +139,7 @@ export type UpdateHelmRepoRequest = {
|
|
|
130
139
|
labels?: {[key: string]: string}
|
|
131
140
|
annotations?: {[key: string]: string}
|
|
132
141
|
insecureSkipTLSVerify?: boolean
|
|
142
|
+
type?: RepoType
|
|
133
143
|
}
|
|
134
144
|
|
|
135
145
|
export type RefreshHelmRepoRequest = {
|