...
1 package v1beta1
2
3
4
5
6
7
8
9
10
11
12
13
14 var map_ConnectionConfig = map[string]string{
15 "url": "Chart repository URL",
16 "ca": "ca is an optional reference to a config map by name containing the PEM-encoded CA bundle. It is used as a trust anchor to validate the TLS certificate presented by the remote server. The key \"ca-bundle.crt\" is used to locate the data. If empty, the default system roots are used. The namespace for this config map is openshift-config.",
17 "tlsClientConfig": "tlsClientConfig is an optional reference to a secret by name that contains the PEM-encoded TLS client certificate and private key to present when connecting to the server. The key \"tls.crt\" is used to locate the client certificate. The key \"tls.key\" is used to locate the private key. The namespace for this secret is openshift-config.",
18 }
19
20 func (ConnectionConfig) SwaggerDoc() map[string]string {
21 return map_ConnectionConfig
22 }
23
24 var map_HelmChartRepository = map[string]string{
25 "": "HelmChartRepository holds cluster-wide configuration for proxied Helm chart repository\n\nCompatibility level 2: Stable within a major release for a minimum of 9 months or 3 minor releases (whichever is longer).",
26 "metadata": "metadata is the standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata",
27 "spec": "spec holds user settable values for configuration",
28 "status": "Observed status of the repository within the cluster..",
29 }
30
31 func (HelmChartRepository) SwaggerDoc() map[string]string {
32 return map_HelmChartRepository
33 }
34
35 var map_HelmChartRepositoryList = map[string]string{
36 "": "Compatibility level 2: Stable within a major release for a minimum of 9 months or 3 minor releases (whichever is longer).",
37 "metadata": "metadata is the standard list's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata",
38 }
39
40 func (HelmChartRepositoryList) SwaggerDoc() map[string]string {
41 return map_HelmChartRepositoryList
42 }
43
44 var map_HelmChartRepositorySpec = map[string]string{
45 "": "Helm chart repository exposed within the cluster",
46 "disabled": "If set to true, disable the repo usage in the cluster/namespace",
47 "name": "Optional associated human readable repository name, it can be used by UI for displaying purposes",
48 "description": "Optional human readable repository description, it can be used by UI for displaying purposes",
49 "connectionConfig": "Required configuration for connecting to the chart repo",
50 }
51
52 func (HelmChartRepositorySpec) SwaggerDoc() map[string]string {
53 return map_HelmChartRepositorySpec
54 }
55
56 var map_HelmChartRepositoryStatus = map[string]string{
57 "conditions": "conditions is a list of conditions and their statuses",
58 }
59
60 func (HelmChartRepositoryStatus) SwaggerDoc() map[string]string {
61 return map_HelmChartRepositoryStatus
62 }
63
64 var map_ConnectionConfigNamespaceScoped = map[string]string{
65 "url": "Chart repository URL",
66 "ca": "ca is an optional reference to a config map by name containing the PEM-encoded CA bundle. It is used as a trust anchor to validate the TLS certificate presented by the remote server. The key \"ca-bundle.crt\" is used to locate the data. If empty, the default system roots are used. The namespace for this configmap must be same as the namespace where the project helm chart repository is getting instantiated.",
67 "tlsClientConfig": "tlsClientConfig is an optional reference to a secret by name that contains the PEM-encoded TLS client certificate and private key to present when connecting to the server. The key \"tls.crt\" is used to locate the client certificate. The key \"tls.key\" is used to locate the private key. The namespace for this secret must be same as the namespace where the project helm chart repository is getting instantiated.",
68 "basicAuthConfig": "basicAuthConfig is an optional reference to a secret by name that contains the basic authentication credentials to present when connecting to the server. The key \"username\" is used locate the username. The key \"password\" is used to locate the password. The namespace for this secret must be same as the namespace where the project helm chart repository is getting instantiated.",
69 }
70
71 func (ConnectionConfigNamespaceScoped) SwaggerDoc() map[string]string {
72 return map_ConnectionConfigNamespaceScoped
73 }
74
75 var map_ProjectHelmChartRepository = map[string]string{
76 "": "ProjectHelmChartRepository holds namespace-wide configuration for proxied Helm chart repository\n\nCompatibility level 2: Stable within a major release for a minimum of 9 months or 3 minor releases (whichever is longer).",
77 "metadata": "metadata is the standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata",
78 "spec": "spec holds user settable values for configuration",
79 "status": "Observed status of the repository within the namespace..",
80 }
81
82 func (ProjectHelmChartRepository) SwaggerDoc() map[string]string {
83 return map_ProjectHelmChartRepository
84 }
85
86 var map_ProjectHelmChartRepositoryList = map[string]string{
87 "": "Compatibility level 2: Stable within a major release for a minimum of 9 months or 3 minor releases (whichever is longer).",
88 "metadata": "metadata is the standard list's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata",
89 }
90
91 func (ProjectHelmChartRepositoryList) SwaggerDoc() map[string]string {
92 return map_ProjectHelmChartRepositoryList
93 }
94
95 var map_ProjectHelmChartRepositorySpec = map[string]string{
96 "": "Project Helm chart repository exposed within a namespace",
97 "disabled": "If set to true, disable the repo usage in the namespace",
98 "name": "Optional associated human readable repository name, it can be used by UI for displaying purposes",
99 "description": "Optional human readable repository description, it can be used by UI for displaying purposes",
100 "connectionConfig": "Required configuration for connecting to the chart repo",
101 }
102
103 func (ProjectHelmChartRepositorySpec) SwaggerDoc() map[string]string {
104 return map_ProjectHelmChartRepositorySpec
105 }
106
107
108
View as plain text