This documentation is for a release that is no longer maintained
See documentation for the latest supported version 3 or the latest supported version 4.此内容没有您所选择的语言版本。
Chapter 42. Idling Applications
42.1. Overview 复制链接链接已复制到粘贴板!
As an OpenShift Container Platform administrator, you can idle applications to reduce resource consumption. This is useful when deployed on a public cloud where cost is related to resource consumption.
If any scalable resources are not in use, OpenShift Container Platform discovers, then idles them, by scaling them to 0 replicas. When network traffic is directed to the resources, they are unidled by scaling up the replicas, then operation continues.
Applications are made of services, as well as other scalable resources, such as deployment configurations. The action of idling an application involves idling all associated resources.
42.2. Idling Applications 复制链接链接已复制到粘贴板!
Idling an application involves finding the scalable resources (deployment configurations, replication controllers, and others) associated with a service. Idling an application finds the service and marks it as idled, scaling down the resources to zero replicas.
You can use the oc idle
command to idle a single service, or use the --resource-names-file
option to idle multiple services.
42.2.1. Idling Single Services 复制链接链接已复制到粘贴板!
Idle a single service with the following command:
oc idle <service>
$ oc idle <service>
42.2.2. Idling Multiple Services 复制链接链接已复制到粘贴板!
Idle multiple services by creating a list of the desired services, then using the --resource-names-file
option with the oc idle
command.
This is helpful if an application spans across a set of services within a project, or when idling multiple services in conjunction with a script in order to idle multiple applications in bulk within the same project.
- Create a text file containing a list of the services, each on their own line.
Idle the services using the
--resource-names-file
option:oc idle --resource-names-file <filename>
$ oc idle --resource-names-file <filename>
Copy to Clipboard Copied! Toggle word wrap Toggle overflow
The idle command is limited to a single project. For idling applications across a cluster, run the idle command for each project individually.
42.3. Unidling Applications 复制链接链接已复制到粘贴板!
Application services become active again when they receive network traffic and will be scaled back up their previous state. This includes both traffic to the services and traffic passing through routes.
Applications may be manually unidled by scaling up the resources. For example, to scale up a deploymentconfig, run the command:
oc scale --replicas=1 dc <deploymentconfig>
$ oc scale --replicas=1 dc <deploymentconfig>
Automatic unidling by a router is currently only supported by the default HAProxy router.