@daocloud-proto/kpanda 0.51.0-dev-7d3f4d35 → 0.51.0-dev-d72181a7
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.
|
@@ -50,6 +50,7 @@ export type RepoSpec = {
|
|
|
50
50
|
clientSecret?: RepoSpecSecretReference
|
|
51
51
|
insecureSkipTLSVerify?: boolean
|
|
52
52
|
type?: RepoType
|
|
53
|
+
insecurePlainHTTP?: boolean
|
|
53
54
|
}
|
|
54
55
|
|
|
55
56
|
export type RepoStatus = {
|
|
@@ -72,6 +73,7 @@ export type ValidateHelmRepoRequest = {
|
|
|
72
73
|
password?: string
|
|
73
74
|
insecureSkipTLSVerify?: boolean
|
|
74
75
|
type?: RepoType
|
|
76
|
+
insecurePlainHTTP?: boolean
|
|
75
77
|
}
|
|
76
78
|
|
|
77
79
|
|
|
@@ -95,6 +97,7 @@ export type CreateHelmRepoRequest = {
|
|
|
95
97
|
annotations?: {[key: string]: string}
|
|
96
98
|
insecureSkipTLSVerify?: boolean
|
|
97
99
|
type?: RepoType
|
|
100
|
+
insecurePlainHTTP?: boolean
|
|
98
101
|
}
|
|
99
102
|
|
|
100
103
|
export type ListHelmReposRequest = {
|
|
@@ -142,6 +145,7 @@ export type UpdateHelmRepoRequest = {
|
|
|
142
145
|
annotations?: {[key: string]: string}
|
|
143
146
|
insecureSkipTLSVerify?: boolean
|
|
144
147
|
type?: RepoType
|
|
148
|
+
insecurePlainHTTP?: boolean
|
|
145
149
|
}
|
|
146
150
|
|
|
147
151
|
export type RefreshHelmRepoRequest = {
|