Merge pull request #43446 from windsonsea/config13
[zh] Sync kube-scheduler-config.v1beta3.mdpull/43450/head
commit
a2690163fe
|
@ -24,6 +24,248 @@ auto_generated: true
|
|||
- [PodTopologySpreadArgs](#kubescheduler-config-k8s-io-v1beta3-PodTopologySpreadArgs)
|
||||
- [VolumeBindingArgs](#kubescheduler-config-k8s-io-v1beta3-VolumeBindingArgs)
|
||||
|
||||
## `ClientConnectionConfiguration` {#ClientConnectionConfiguration}
|
||||
|
||||
<!--
|
||||
**Appears in:**
|
||||
-->
|
||||
**出现在:**
|
||||
|
||||
- [KubeSchedulerConfiguration](#kubescheduler-config-k8s-io-v1beta3-KubeSchedulerConfiguration)
|
||||
|
||||
<!--
|
||||
ClientConnectionConfiguration contains details for constructing a client.
|
||||
-->
|
||||
<p>ClientConnectionConfiguration 中包含用来构造客户端所需的细节。</p>
|
||||
|
||||
<table class="table">
|
||||
<thead><tr><th width="30%"><!--Field-->字段</th><th><!--Description-->描述</th></tr></thead>
|
||||
<tbody>
|
||||
|
||||
<tr><td><code>kubeconfig</code> <B><!--[Required]-->[必需]</B><br/>
|
||||
<code>string</code>
|
||||
</td>
|
||||
<td>
|
||||
<!--
|
||||
kubeconfig is the path to a KubeConfig file.
|
||||
-->
|
||||
<p>此字段为指向 KubeConfig 文件的路径。</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr><td><code>acceptContentTypes</code> <B><!--[Required]-->[必需]</B><br/>
|
||||
<code>string</code>
|
||||
</td>
|
||||
<td>
|
||||
<!--
|
||||
acceptContentTypes defines the Accept header sent by clients when connecting to a server, overriding the
|
||||
default value of 'application/json'. This field will control all connections to the server used by a particular client.
|
||||
-->
|
||||
<p>
|
||||
<code>acceptContentTypes</code> 定义的是客户端与服务器建立连接时要发送的 Accept 头部,
|
||||
这里的设置值会覆盖默认值 "application/json"。此字段会影响某特定客户端与服务器的所有连接。
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr><td><code>contentType</code> <B><!--[Required]-->[必需]</B><br/>
|
||||
<code>string</code>
|
||||
</td>
|
||||
<td>
|
||||
<!--
|
||||
contentType is the content type used when sending data to the server from this client.
|
||||
-->
|
||||
<p>
|
||||
<code>contentType</code> 包含的是此客户端向服务器发送数据时使用的内容类型(Content Type)。
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr><td><code>qps</code> <B><!--[Required]-->[必需]</B><br/>
|
||||
<code>float32</code>
|
||||
</td>
|
||||
<td>
|
||||
<!--
|
||||
qps controls the number of queries per second allowed for this connection.
|
||||
-->
|
||||
<p><code>qps</code> 控制此连接允许的每秒查询次数。</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr><td><code>burst</code> <B><!--[Required]-->[必需]</B><br/>
|
||||
<code>int32</code>
|
||||
</td>
|
||||
<td>
|
||||
<!--
|
||||
burst allows extra queries to accumulate when a client is exceeding its rate.
|
||||
-->
|
||||
<p><code>burst</code> 允许在客户端超出其速率限制时可以累积的额外查询个数。</p>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
## `DebuggingConfiguration` {#DebuggingConfiguration}
|
||||
|
||||
<!--
|
||||
**Appears in:**
|
||||
-->
|
||||
**出现在:**
|
||||
|
||||
- [KubeSchedulerConfiguration](#kubescheduler-config-k8s-io-v1beta3-KubeSchedulerConfiguration)
|
||||
|
||||
<!--
|
||||
DebuggingConfiguration holds configuration for Debugging related features.
|
||||
-->
|
||||
<p>DebuggingConfiguration 保存与调试功能相关的配置。</p>
|
||||
|
||||
<table class="table">
|
||||
<thead><tr><th width="30%"><!--Field-->字段</th><th><!--Description-->描述</th></tr></thead>
|
||||
<tbody>
|
||||
|
||||
<tr><td><code>enableProfiling</code> <B><!--[Required]-->[必需]</B><br/>
|
||||
<code>bool</code>
|
||||
</td>
|
||||
<td>
|
||||
<!--
|
||||
enableProfiling enables profiling via web interface host:port/debug/pprof/
|
||||
-->
|
||||
<p>此字段允许通过 Web 接口 host:port/debug/pprof/ 执行性能分析。</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr><td><code>enableContentionProfiling</code> <B><!--[Required]-->[必需]</B><br/>
|
||||
<code>bool</code>
|
||||
</td>
|
||||
<td>
|
||||
<!--
|
||||
enableContentionProfiling enables block profiling, if
|
||||
enableProfiling is true.
|
||||
-->
|
||||
<p>此字段在 <code>enableProfiling</code> 为 true 时允许执行阻塞性能分析。</p>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
## `LeaderElectionConfiguration` {#LeaderElectionConfiguration}
|
||||
|
||||
<!--
|
||||
**Appears in:**
|
||||
-->
|
||||
**出现在:**
|
||||
|
||||
- [KubeSchedulerConfiguration](#kubescheduler-config-k8s-io-v1beta3-KubeSchedulerConfiguration)
|
||||
|
||||
<!--
|
||||
LeaderElectionConfiguration defines the configuration of leader election
|
||||
clients for components that can run with leader election enabled.
|
||||
-->
|
||||
<p>
|
||||
LeaderElectionConfiguration 为能够支持领导者选举的组件定义其领导者选举客户端的配置。
|
||||
</p>
|
||||
|
||||
<table class="table">
|
||||
<thead><tr><th width="30%"><!--Field-->字段</th><th><!--Description-->描述</th></tr></thead>
|
||||
<tbody>
|
||||
|
||||
<tr><td><code>leaderElect</code> <B><!--[Required]-->[必需]</B><br/>
|
||||
<code>bool</code>
|
||||
</td>
|
||||
<td>
|
||||
<!--
|
||||
leaderElect enables a leader election client to gain leadership
|
||||
before executing the main loop. Enable this when running replicated
|
||||
components for high availability.
|
||||
-->
|
||||
<p>
|
||||
<code>leaderElect</code> 允许领导者选举客户端在进入主循环执行之前先获得领导者角色。
|
||||
运行多副本组件时启用此功能有助于提高可用性。
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr><td><code>leaseDuration</code> <B><!--[Required]-->[必需]</B><br/>
|
||||
<a href="https://pkg.go.dev/k8s.io/apimachinery/pkg/apis/meta/v1#Duration"><code>meta/v1.Duration</code></a>
|
||||
</td>
|
||||
<td>
|
||||
<!--
|
||||
leaseDuration is the duration that non-leader candidates will wait
|
||||
after observing a leadership renewal until attempting to acquire
|
||||
leadership of a led but unrenewed leader slot. This is effectively the
|
||||
maximum duration that a leader can be stopped before it is replaced
|
||||
by another candidate. This is only applicable if leader election is
|
||||
enabled.
|
||||
-->
|
||||
<p>
|
||||
<code>leaseDuration</code> 是非领导角色候选者在观察到需要领导席位更新时要等待的时间;
|
||||
只有经过所设置时长才可以尝试去获得一个仍处于领导状态但需要被刷新的席位。
|
||||
这里的设置值本质上意味着某个领导者在被另一个候选者替换掉之前可以停止运行的最长时长。
|
||||
只有当启用了领导者选举时此字段有意义。
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr><td><code>renewDeadline</code> <B><!--[Required]-->[必需]</B><br/>
|
||||
<a href="https://pkg.go.dev/k8s.io/apimachinery/pkg/apis/meta/v1#Duration"><code>meta/v1.Duration</code></a>
|
||||
</td>
|
||||
<td>
|
||||
<!--
|
||||
renewDeadline is the interval between attempts by the acting master to
|
||||
renew a leadership slot before it stops leading. This must be less
|
||||
than or equal to the lease duration. This is only applicable if leader
|
||||
election is enabled.
|
||||
-->
|
||||
<p>
|
||||
<code>renewDeadline</code> 设置的是当前领导者在停止扮演领导角色之前需要刷新领导状态的时间间隔。
|
||||
此值必须小于或等于租约期限的长度。只有到启用了领导者选举时此字段才有意义。
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr><td><code>retryPeriod</code> <B><!--[Required]-->[必需]</B><br/>
|
||||
<a href="https://pkg.go.dev/k8s.io/apimachinery/pkg/apis/meta/v1#Duration"><code>meta/v1.Duration</code></a>
|
||||
</td>
|
||||
<td>
|
||||
<!--
|
||||
retryPeriod is the duration the clients should wait between attempting
|
||||
acquisition and renewal of a leadership. This is only applicable if
|
||||
leader election is enabled.
|
||||
-->
|
||||
<p>
|
||||
<code>retryPeriod</code> 是客户端在连续两次尝试获得或者刷新领导状态之间需要等待的时长。
|
||||
只有当启用了领导者选举时此字段才有意义。
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr><td><code>resourceLock</code> <B><!--[Required]-->[必需]</B><br/>
|
||||
<code>string</code>
|
||||
</td>
|
||||
<td>
|
||||
<!--
|
||||
resourceLock indicates the resource object type that will be used to lock
|
||||
during leader election cycles.
|
||||
-->
|
||||
<p>resourceLock 给出在领导者选举期间要作为锁来使用的资源对象类型。</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr><td><code>resourceName</code> <B><!--[Required]-->[必需]</B><br/>
|
||||
<code>string</code>
|
||||
</td>
|
||||
<td>
|
||||
<!--
|
||||
resourceName indicates the name of resource object that will be used to lock
|
||||
during leader election cycles.
|
||||
-->
|
||||
<p>resourceName 给出在领导者选举期间要作为锁来使用的资源对象名称。</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr><td><code>resourceNamespace</code> <B><!--[Required]-->[必需]</B><br/>
|
||||
<code>string</code>
|
||||
</td>
|
||||
<td>
|
||||
<!--
|
||||
resourceNamespace indicates the namespace of resource object that will be used to lock
|
||||
during leader election cycles.
|
||||
-->
|
||||
<p>resourceNamespace 给出在领导者选举期间要作为锁来使用的资源对象所在名字空间。</p>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
## `DefaultPreemptionArgs` {#kubescheduler-config-k8s-io-v1beta3-DefaultPreemptionArgs}
|
||||
|
||||
<!--
|
||||
|
@ -1450,245 +1692,3 @@ UtilizationShapePoint represents single point of priority function shape.
|
|||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
## `ClientConnectionConfiguration` {#ClientConnectionConfiguration}
|
||||
|
||||
<!--
|
||||
**Appears in:**
|
||||
-->
|
||||
**出现在:**
|
||||
|
||||
- [KubeSchedulerConfiguration](#kubescheduler-config-k8s-io-v1beta3-KubeSchedulerConfiguration)
|
||||
|
||||
<!--
|
||||
ClientConnectionConfiguration contains details for constructing a client.
|
||||
-->
|
||||
<p>ClientConnectionConfiguration 中包含用来构造客户端所需的细节。</p>
|
||||
|
||||
<table class="table">
|
||||
<thead><tr><th width="30%"><!--Field-->字段</th><th><!--Description-->描述</th></tr></thead>
|
||||
<tbody>
|
||||
|
||||
<tr><td><code>kubeconfig</code> <B><!--[Required]-->[必需]</B><br/>
|
||||
<code>string</code>
|
||||
</td>
|
||||
<td>
|
||||
<!--
|
||||
kubeconfig is the path to a KubeConfig file.
|
||||
-->
|
||||
<p>此字段为指向 KubeConfig 文件的路径。</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr><td><code>acceptContentTypes</code> <B><!--[Required]-->[必需]</B><br/>
|
||||
<code>string</code>
|
||||
</td>
|
||||
<td>
|
||||
<!--
|
||||
acceptContentTypes defines the Accept header sent by clients when connecting to a server, overriding the
|
||||
default value of 'application/json'. This field will control all connections to the server used by a particular client.
|
||||
-->
|
||||
<p>
|
||||
<code>acceptContentTypes</code> 定义的是客户端与服务器建立连接时要发送的 Accept 头部,
|
||||
这里的设置值会覆盖默认值 "application/json"。此字段会影响某特定客户端与服务器的所有连接。
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr><td><code>contentType</code> <B><!--[Required]-->[必需]</B><br/>
|
||||
<code>string</code>
|
||||
</td>
|
||||
<td>
|
||||
<!--
|
||||
contentType is the content type used when sending data to the server from this client.
|
||||
-->
|
||||
<p>
|
||||
<code>contentType</code> 包含的是此客户端向服务器发送数据时使用的内容类型(Content Type)。
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr><td><code>qps</code> <B><!--[Required]-->[必需]</B><br/>
|
||||
<code>float32</code>
|
||||
</td>
|
||||
<td>
|
||||
<!--
|
||||
qps controls the number of queries per second allowed for this connection.
|
||||
-->
|
||||
<p><code>qps</code> 控制此连接允许的每秒查询次数。</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr><td><code>burst</code> <B><!--[Required]-->[必需]</B><br/>
|
||||
<code>int32</code>
|
||||
</td>
|
||||
<td>
|
||||
<!--
|
||||
burst allows extra queries to accumulate when a client is exceeding its rate.
|
||||
-->
|
||||
<p><code>burst</code> 允许在客户端超出其速率限制时可以累积的额外查询个数。</p>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
## `DebuggingConfiguration` {#DebuggingConfiguration}
|
||||
|
||||
<!--
|
||||
**Appears in:**
|
||||
-->
|
||||
**出现在:**
|
||||
|
||||
- [KubeSchedulerConfiguration](#kubescheduler-config-k8s-io-v1beta3-KubeSchedulerConfiguration)
|
||||
|
||||
<!--
|
||||
DebuggingConfiguration holds configuration for Debugging related features.
|
||||
-->
|
||||
<p>DebuggingConfiguration 保存与调试功能相关的配置。</p>
|
||||
|
||||
<table class="table">
|
||||
<thead><tr><th width="30%"><!--Field-->字段</th><th><!--Description-->描述</th></tr></thead>
|
||||
<tbody>
|
||||
|
||||
<tr><td><code>enableProfiling</code> <B><!--[Required]-->[必需]</B><br/>
|
||||
<code>bool</code>
|
||||
</td>
|
||||
<td>
|
||||
<!--
|
||||
enableProfiling enables profiling via web interface host:port/debug/pprof/
|
||||
-->
|
||||
<p>此字段允许通过 Web 接口 host:port/debug/pprof/ 执行性能分析。</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr><td><code>enableContentionProfiling</code> <B><!--[Required]-->[必需]</B><br/>
|
||||
<code>bool</code>
|
||||
</td>
|
||||
<td>
|
||||
<!--
|
||||
enableContentionProfiling enables block profiling, if
|
||||
enableProfiling is true.
|
||||
-->
|
||||
<p>此字段在 <code>enableProfiling</code> 为 true 时允许执行阻塞性能分析。</p>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
## `LeaderElectionConfiguration` {#LeaderElectionConfiguration}
|
||||
|
||||
<!--
|
||||
**Appears in:**
|
||||
-->
|
||||
**出现在:**
|
||||
|
||||
- [KubeSchedulerConfiguration](#kubescheduler-config-k8s-io-v1beta3-KubeSchedulerConfiguration)
|
||||
|
||||
<!--
|
||||
LeaderElectionConfiguration defines the configuration of leader election
|
||||
clients for components that can run with leader election enabled.
|
||||
-->
|
||||
<p>
|
||||
LeaderElectionConfiguration 为能够支持领导者选举的组件定义其领导者选举客户端的配置。
|
||||
</p>
|
||||
|
||||
<table class="table">
|
||||
<thead><tr><th width="30%"><!--Field-->字段</th><th><!--Description-->描述</th></tr></thead>
|
||||
<tbody>
|
||||
|
||||
<tr><td><code>leaderElect</code> <B><!--[Required]-->[必需]</B><br/>
|
||||
<code>bool</code>
|
||||
</td>
|
||||
<td>
|
||||
<!--
|
||||
leaderElect enables a leader election client to gain leadership
|
||||
before executing the main loop. Enable this when running replicated
|
||||
components for high availability.
|
||||
-->
|
||||
<p>
|
||||
<code>leaderElect</code> 允许领导者选举客户端在进入主循环执行之前先获得领导者角色。
|
||||
运行多副本组件时启用此功能有助于提高可用性。
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr><td><code>leaseDuration</code> <B><!--[Required]-->[必需]</B><br/>
|
||||
<a href="https://pkg.go.dev/k8s.io/apimachinery/pkg/apis/meta/v1#Duration"><code>meta/v1.Duration</code></a>
|
||||
</td>
|
||||
<td>
|
||||
<!--
|
||||
leaseDuration is the duration that non-leader candidates will wait
|
||||
after observing a leadership renewal until attempting to acquire
|
||||
leadership of a led but unrenewed leader slot. This is effectively the
|
||||
maximum duration that a leader can be stopped before it is replaced
|
||||
by another candidate. This is only applicable if leader election is
|
||||
enabled.
|
||||
-->
|
||||
<p>
|
||||
<code>leaseDuration</code> 是非领导角色候选者在观察到需要领导席位更新时要等待的时间;
|
||||
只有经过所设置时长才可以尝试去获得一个仍处于领导状态但需要被刷新的席位。
|
||||
这里的设置值本质上意味着某个领导者在被另一个候选者替换掉之前可以停止运行的最长时长。
|
||||
只有当启用了领导者选举时此字段有意义。
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr><td><code>renewDeadline</code> <B><!--[Required]-->[必需]</B><br/>
|
||||
<a href="https://pkg.go.dev/k8s.io/apimachinery/pkg/apis/meta/v1#Duration"><code>meta/v1.Duration</code></a>
|
||||
</td>
|
||||
<td>
|
||||
<!--
|
||||
renewDeadline is the interval between attempts by the acting master to
|
||||
renew a leadership slot before it stops leading. This must be less
|
||||
than or equal to the lease duration. This is only applicable if leader
|
||||
election is enabled.
|
||||
-->
|
||||
<p>
|
||||
<code>renewDeadline</code> 设置的是当前领导者在停止扮演领导角色之前需要刷新领导状态的时间间隔。
|
||||
此值必须小于或等于租约期限的长度。只有到启用了领导者选举时此字段才有意义。
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr><td><code>retryPeriod</code> <B><!--[Required]-->[必需]</B><br/>
|
||||
<a href="https://pkg.go.dev/k8s.io/apimachinery/pkg/apis/meta/v1#Duration"><code>meta/v1.Duration</code></a>
|
||||
</td>
|
||||
<td>
|
||||
<!--
|
||||
retryPeriod is the duration the clients should wait between attempting
|
||||
acquisition and renewal of a leadership. This is only applicable if
|
||||
leader election is enabled.
|
||||
-->
|
||||
<p>
|
||||
<code>retryPeriod</code> 是客户端在连续两次尝试获得或者刷新领导状态之间需要等待的时长。
|
||||
只有当启用了领导者选举时此字段才有意义。
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr><td><code>resourceLock</code> <B><!--[Required]-->[必需]</B><br/>
|
||||
<code>string</code>
|
||||
</td>
|
||||
<td>
|
||||
<!--
|
||||
resourceLock indicates the resource object type that will be used to lock
|
||||
during leader election cycles.
|
||||
-->
|
||||
<p>resourceLock 给出在领导者选举期间要作为锁来使用的资源对象类型。</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr><td><code>resourceName</code> <B><!--[Required]-->[必需]</B><br/>
|
||||
<code>string</code>
|
||||
</td>
|
||||
<td>
|
||||
<!--
|
||||
resourceName indicates the name of resource object that will be used to lock
|
||||
during leader election cycles.
|
||||
-->
|
||||
<p>resourceName 给出在领导者选举期间要作为锁来使用的资源对象名称。</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr><td><code>resourceNamespace</code> <B><!--[Required]-->[必需]</B><br/>
|
||||
<code>string</code>
|
||||
</td>
|
||||
<td>
|
||||
<!--
|
||||
resourceNamespace indicates the namespace of resource object that will be used to lock
|
||||
during leader election cycles.
|
||||
-->
|
||||
<p>resourceNamespace 给出在领导者选举期间要作为锁来使用的资源对象所在名字空间。</p>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
|
Loading…
Reference in New Issue