1 package v1
2
3
4
5
6
7
8
9
10
11
12
13
14 var map_BuildControllerConfig = map[string]string{
15 "additionalTrustedCA": "additionalTrustedCA is a path to a pem bundle file containing additional CAs that should be trusted for image pushes and pulls during builds.",
16 }
17
18 func (BuildControllerConfig) SwaggerDoc() map[string]string {
19 return map_BuildControllerConfig
20 }
21
22 var map_BuildDefaultsConfig = map[string]string{
23 "": "BuildDefaultsConfig controls the default information for Builds\n\nCompatibility level 4: No compatibility is provided, the API can change at any point for any reason. These capabilities should not be used by applications needing long term support.",
24 "gitHTTPProxy": "gitHTTPProxy is the location of the HTTPProxy for Git source",
25 "gitHTTPSProxy": "gitHTTPSProxy is the location of the HTTPSProxy for Git source",
26 "gitNoProxy": "gitNoProxy is the list of domains for which the proxy should not be used",
27 "env": "env is a set of default environment variables that will be applied to the build if the specified variables do not exist on the build",
28 "sourceStrategyDefaults": "sourceStrategyDefaults are default values that apply to builds using the source strategy.",
29 "imageLabels": "imageLabels is a list of labels that are applied to the resulting image. User can override a default label by providing a label with the same name in their Build/BuildConfig.",
30 "nodeSelector": "nodeSelector is a selector which must be true for the build pod to fit on a node",
31 "annotations": "annotations are annotations that will be added to the build pod",
32 "resources": "resources defines resource requirements to execute the build.",
33 }
34
35 func (BuildDefaultsConfig) SwaggerDoc() map[string]string {
36 return map_BuildDefaultsConfig
37 }
38
39 var map_BuildOverridesConfig = map[string]string{
40 "": "BuildOverridesConfig controls override settings for builds\n\nCompatibility level 4: No compatibility is provided, the API can change at any point for any reason. These capabilities should not be used by applications needing long term support.",
41 "forcePull": "forcePull overrides, if set, the equivalent value in the builds, i.e. false disables force pull for all builds, true enables force pull for all builds, independently of what each build specifies itself",
42 "imageLabels": "imageLabels is a list of labels that are applied to the resulting image. If user provided a label in their Build/BuildConfig with the same name as one in this list, the user's label will be overwritten.",
43 "nodeSelector": "nodeSelector is a selector which must be true for the build pod to fit on a node",
44 "annotations": "annotations are annotations that will be added to the build pod",
45 "tolerations": "tolerations is a list of Tolerations that will override any existing tolerations set on a build pod.",
46 }
47
48 func (BuildOverridesConfig) SwaggerDoc() map[string]string {
49 return map_BuildOverridesConfig
50 }
51
52 var map_ClusterNetworkEntry = map[string]string{
53 "": "ClusterNetworkEntry defines an individual cluster network. The CIDRs cannot overlap with other cluster network CIDRs, CIDRs reserved for external ips, CIDRs reserved for service networks, and CIDRs reserved for ingress ips.",
54 "cidr": "CIDR defines the total range of a cluster networks address space.",
55 "hostSubnetLength": "HostSubnetLength is the number of bits of the accompanying CIDR address to allocate to each node. eg, 8 would mean that each node would have a /24 slice of the overlay network for its pod.",
56 }
57
58 func (ClusterNetworkEntry) SwaggerDoc() map[string]string {
59 return map_ClusterNetworkEntry
60 }
61
62 var map_DockerPullSecretControllerConfig = map[string]string{
63 "registryURLs": "registryURLs is a list of urls that the docker pull secrets should be valid for.",
64 "internalRegistryHostname": "internalRegistryHostname is the hostname for the default internal image registry. The value must be in \"hostname[:port]\" format. Docker pull secrets will be generated for this registry.",
65 }
66
67 func (DockerPullSecretControllerConfig) SwaggerDoc() map[string]string {
68 return map_DockerPullSecretControllerConfig
69 }
70
71 var map_FrontProxyConfig = map[string]string{
72 "clientCA": "clientCA is a path to the CA bundle to use to verify the common name of the front proxy's client cert",
73 "allowedNames": "allowedNames is an optional list of common names to require a match from.",
74 "usernameHeaders": "usernameHeaders is the set of headers to check for the username",
75 "groupHeaders": "groupHeaders is the set of headers to check for groups",
76 "extraHeaderPrefixes": "extraHeaderPrefixes is the set of header prefixes to check for user extra",
77 }
78
79 func (FrontProxyConfig) SwaggerDoc() map[string]string {
80 return map_FrontProxyConfig
81 }
82
83 var map_ImageConfig = map[string]string{
84 "": "ImageConfig holds the necessary configuration options for building image names for system components",
85 "format": "Format is the format of the name to be built for the system component",
86 "latest": "Latest determines if the latest tag will be pulled from the registry",
87 }
88
89 func (ImageConfig) SwaggerDoc() map[string]string {
90 return map_ImageConfig
91 }
92
93 var map_ImageImportControllerConfig = map[string]string{
94 "maxScheduledImageImportsPerMinute": "maxScheduledImageImportsPerMinute is the maximum number of image streams that will be imported in the background per minute. The default value is 60. Set to -1 for unlimited.",
95 "disableScheduledImport": "disableScheduledImport allows scheduled background import of images to be disabled.",
96 "scheduledImageImportMinimumIntervalSeconds": "scheduledImageImportMinimumIntervalSeconds is the minimum number of seconds that can elapse between when image streams scheduled for background import are checked against the upstream repository. The default value is 15 minutes.",
97 }
98
99 func (ImageImportControllerConfig) SwaggerDoc() map[string]string {
100 return map_ImageImportControllerConfig
101 }
102
103 var map_ImagePolicyConfig = map[string]string{
104 "maxImagesBulkImportedPerRepository": "maxImagesBulkImportedPerRepository controls the number of images that are imported when a user does a bulk import of a container repository. This number is set low to prevent users from importing large numbers of images accidentally. Set -1 for no limit.",
105 "allowedRegistriesForImport": "allowedRegistriesForImport limits the container image registries that normal users may import images from. Set this list to the registries that you trust to contain valid Docker images and that you want applications to be able to import from. Users with permission to create Images or ImageStreamMappings via the API are not affected by this policy - typically only administrators or system integrations will have those permissions.",
106 "internalRegistryHostname": "internalRegistryHostname sets the hostname for the default internal image registry. The value must be in \"hostname[:port]\" format. For backward compatibility, users can still use OPENSHIFT_DEFAULT_REGISTRY environment variable but this setting overrides the environment variable.",
107 "externalRegistryHostnames": "externalRegistryHostnames provides the hostnames for the default external image registry. The external hostname should be set only when the image registry is exposed externally. The first value is used in 'publicDockerImageRepository' field in ImageStreams. The value must be in \"hostname[:port]\" format.",
108 "additionalTrustedCA": "additionalTrustedCA is a path to a pem bundle file containing additional CAs that should be trusted during imagestream import.",
109 }
110
111 func (ImagePolicyConfig) SwaggerDoc() map[string]string {
112 return map_ImagePolicyConfig
113 }
114
115 var map_IngressControllerConfig = map[string]string{
116 "ingressIPNetworkCIDR": "ingressIPNetworkCIDR controls the range to assign ingress ips from for services of type LoadBalancer on bare metal. If empty, ingress ips will not be assigned. It may contain a single CIDR that will be allocated from. For security reasons, you should ensure that this range does not overlap with the CIDRs reserved for external ips, nodes, pods, or services.",
117 }
118
119 func (IngressControllerConfig) SwaggerDoc() map[string]string {
120 return map_IngressControllerConfig
121 }
122
123 var map_JenkinsPipelineConfig = map[string]string{
124 "": "JenkinsPipelineConfig holds configuration for the Jenkins pipeline strategy",
125 "autoProvisionEnabled": "autoProvisionEnabled determines whether a Jenkins server will be spawned from the provided template when the first build config in the project with type JenkinsPipeline is created. When not specified this option defaults to true.",
126 "templateNamespace": "templateNamespace contains the namespace name where the Jenkins template is stored",
127 "templateName": "templateName is the name of the default Jenkins template",
128 "serviceName": "serviceName is the name of the Jenkins service OpenShift uses to detect whether a Jenkins pipeline handler has already been installed in a project. This value *must* match a service name in the provided template.",
129 "parameters": "parameters specifies a set of optional parameters to the Jenkins template.",
130 }
131
132 func (JenkinsPipelineConfig) SwaggerDoc() map[string]string {
133 return map_JenkinsPipelineConfig
134 }
135
136 var map_NetworkControllerConfig = map[string]string{
137 "": "MasterNetworkConfig to be passed to the compiled in network plugin",
138 "clusterNetworks": "clusterNetworks contains a list of cluster networks that defines the global overlay networks L3 space.",
139 }
140
141 func (NetworkControllerConfig) SwaggerDoc() map[string]string {
142 return map_NetworkControllerConfig
143 }
144
145 var map_OpenShiftAPIServerConfig = map[string]string{
146 "": "Compatibility level 4: No compatibility is provided, the API can change at any point for any reason. These capabilities should not be used by applications needing long term support.",
147 "aggregatorConfig": "aggregatorConfig contains information about how to verify the aggregator front proxy",
148 "imagePolicyConfig": "imagePolicyConfig feeds the image policy admission plugin",
149 "projectConfig": "projectConfig feeds an admission plugin",
150 "routingConfig": "routingConfig holds information about routing and route generation",
151 "serviceAccountOAuthGrantMethod": "serviceAccountOAuthGrantMethod is used for determining client authorization for service account oauth client. It must be either: deny, prompt, or \"\"",
152 "jenkinsPipelineConfig": "jenkinsPipelineConfig holds information about the default Jenkins template used for JenkinsPipeline build strategy.",
153 "cloudProviderFile": "cloudProviderFile points to the cloud config file",
154 }
155
156 func (OpenShiftAPIServerConfig) SwaggerDoc() map[string]string {
157 return map_OpenShiftAPIServerConfig
158 }
159
160 var map_OpenShiftControllerManagerConfig = map[string]string{
161 "": "Compatibility level 4: No compatibility is provided, the API can change at any point for any reason. These capabilities should not be used by applications needing long term support.",
162 "servingInfo": "servingInfo describes how to start serving",
163 "leaderElection": "leaderElection defines the configuration for electing a controller instance to make changes to the cluster. If unspecified, the ControllerTTL value is checked to determine whether the legacy direct etcd election code will be used.",
164 "controllers": "controllers is a list of controllers to enable. '*' enables all on-by-default controllers, 'foo' enables the controller \"+ named 'foo', '-foo' disables the controller named 'foo'. Defaults to \"*\".",
165 "featureGates": "featureGates are the set of extra OpenShift feature gates for openshift-controller-manager. These feature gates can be used to enable features that are tech preview or otherwise not available on OpenShift by default.",
166 }
167
168 func (OpenShiftControllerManagerConfig) SwaggerDoc() map[string]string {
169 return map_OpenShiftControllerManagerConfig
170 }
171
172 var map_ProjectConfig = map[string]string{
173 "defaultNodeSelector": "defaultNodeSelector holds default project node label selector",
174 "projectRequestMessage": "projectRequestMessage is the string presented to a user if they are unable to request a project via the projectrequest api endpoint",
175 "projectRequestTemplate": "projectRequestTemplate is the template to use for creating projects in response to projectrequest. It is in the format namespace/template and it is optional. If it is not specified, a default template is used.",
176 }
177
178 func (ProjectConfig) SwaggerDoc() map[string]string {
179 return map_ProjectConfig
180 }
181
182 var map_RegistryLocation = map[string]string{
183 "": "RegistryLocation contains a location of the registry specified by the registry domain name. The domain name might include wildcards, like '*' or '??'.",
184 "domainName": "DomainName specifies a domain name for the registry In case the registry use non-standard (80 or 443) port, the port should be included in the domain name as well.",
185 "insecure": "Insecure indicates whether the registry is secure (https) or insecure (http) By default (if not specified) the registry is assumed as secure.",
186 }
187
188 func (RegistryLocation) SwaggerDoc() map[string]string {
189 return map_RegistryLocation
190 }
191
192 var map_RoutingConfig = map[string]string{
193 "": "RoutingConfig holds the necessary configuration options for routing to subdomains",
194 "subdomain": "subdomain is the suffix appended to $service.$namespace. to form the default route hostname DEPRECATED: This field is being replaced by routers setting their own defaults. This is the \"default\" route.",
195 }
196
197 func (RoutingConfig) SwaggerDoc() map[string]string {
198 return map_RoutingConfig
199 }
200
201 var map_SecurityAllocator = map[string]string{
202 "": "SecurityAllocator controls the automatic allocation of UIDs and MCS labels to a project. If nil, allocation is disabled.",
203 "uidAllocatorRange": "UIDAllocatorRange defines the total set of Unix user IDs (UIDs) that will be allocated to projects automatically, and the size of the block each namespace gets. For example, 1000-1999/10 will allocate ten UIDs per namespace, and will be able to allocate up to 100 blocks before running out of space. The default is to allocate from 1 billion to 2 billion in 10k blocks (which is the expected size of the ranges container images will use once user namespaces are started).",
204 "mcsAllocatorRange": "MCSAllocatorRange defines the range of MCS categories that will be assigned to namespaces. The format is \"<prefix>/<numberOfLabels>[,<maxCategory>]\". The default is \"s0/2\" and will allocate from c0 -> c1023, which means a total of 535k labels are available (1024 choose 2 ~ 535k). If this value is changed after startup, new projects may receive labels that are already allocated to other projects. Prefix may be any valid SELinux set of terms (including user, role, and type), although leaving them as the default will allow the server to set them automatically.\n\nExamples: * s0:/2 - Allocate labels from s0:c0,c0 to s0:c511,c511 * s0:/2,512 - Allocate labels from s0:c0,c0,c0 to s0:c511,c511,511",
205 "mcsLabelsPerProject": "MCSLabelsPerProject defines the number of labels that should be reserved per project. The default is 5 to match the default UID and MCS ranges (100k namespaces, 535k/5 labels).",
206 }
207
208 func (SecurityAllocator) SwaggerDoc() map[string]string {
209 return map_SecurityAllocator
210 }
211
212 var map_ServiceAccountControllerConfig = map[string]string{
213 "managedNames": "managedNames is a list of service account names that will be auto-created in every namespace. If no names are specified, the ServiceAccountsController will not be started.",
214 }
215
216 func (ServiceAccountControllerConfig) SwaggerDoc() map[string]string {
217 return map_ServiceAccountControllerConfig
218 }
219
220 var map_ServiceServingCert = map[string]string{
221 "": "ServiceServingCert holds configuration for service serving cert signer which creates cert/key pairs for pods fulfilling a service to serve with.",
222 "signer": "Signer holds the signing information used to automatically sign serving certificates. If this value is nil, then certs are not signed automatically.",
223 }
224
225 func (ServiceServingCert) SwaggerDoc() map[string]string {
226 return map_ServiceServingCert
227 }
228
229 var map_SourceStrategyDefaultsConfig = map[string]string{
230 "": "SourceStrategyDefaultsConfig contains values that apply to builds using the source strategy.",
231 "incremental": "incremental indicates if s2i build strategies should perform an incremental build or not",
232 }
233
234 func (SourceStrategyDefaultsConfig) SwaggerDoc() map[string]string {
235 return map_SourceStrategyDefaultsConfig
236 }
237
238
239
View as plain text