mirror of https://github.com/istio/api.git
Add sidecar.istio.io/agentLogLevel annotation (#1903)
* Add sidecar.istio.io/agentLogLevel annotation * + add release note * > fix error change
This commit is contained in:
parent
8d2a4ee53a
commit
9780eca5ea
|
|
@ -274,6 +274,17 @@ var (
|
|||
},
|
||||
}
|
||||
|
||||
SidecarAgentLogLevel = Instance {
|
||||
Name: "sidecar.istio.io/agentLogLevel",
|
||||
Description: "Specifies the log output level for pilot-agent.",
|
||||
FeatureStatus: Alpha,
|
||||
Hidden: false,
|
||||
Deprecated: false,
|
||||
Resources: []ResourceTypes{
|
||||
Pod,
|
||||
},
|
||||
}
|
||||
|
||||
SidecarBootstrapOverride = Instance {
|
||||
Name: "sidecar.istio.io/bootstrapOverride",
|
||||
Description: "Specifies an alternative Envoy bootstrap configuration "+
|
||||
|
|
@ -637,6 +648,7 @@ func AllResourceAnnotations() []*Instance {
|
|||
&SidecarStatusReadinessFailureThreshold,
|
||||
&SidecarStatusReadinessInitialDelaySeconds,
|
||||
&SidecarStatusReadinessPeriodSeconds,
|
||||
&SidecarAgentLogLevel,
|
||||
&SidecarBootstrapOverride,
|
||||
&SidecarComponentLogLevel,
|
||||
&SidecarControlPlaneAuthPolicy,
|
||||
|
|
|
|||
|
|
@ -186,6 +186,19 @@ Istio supports to control its behavior.
|
|||
|
||||
|
||||
|
||||
<tr>
|
||||
|
||||
<td><code>sidecar.istio.io/agentLogLevel</code></td>
|
||||
|
||||
<td>Alpha</td>
|
||||
|
||||
<td>[Pod]</td>
|
||||
<td>Specifies the log output level for pilot-agent.</td>
|
||||
</tr>
|
||||
|
||||
|
||||
|
||||
|
||||
<tr>
|
||||
|
||||
<td><code>sidecar.istio.io/bootstrapOverride</code></td>
|
||||
|
|
|
|||
|
|
@ -240,6 +240,14 @@ annotations:
|
|||
resources:
|
||||
- Pod
|
||||
|
||||
- name: sidecar.istio.io/agentLogLevel
|
||||
featureStatus: Alpha
|
||||
description: Specifies the log output level for pilot-agent.
|
||||
deprecated: false
|
||||
hidden: false
|
||||
resources:
|
||||
- Pod
|
||||
|
||||
- name: readiness.status.sidecar.istio.io/initialDelaySeconds
|
||||
featureStatus: Alpha
|
||||
description: Specifies the initial delay (in seconds) for the Envoy sidecar readiness
|
||||
|
|
|
|||
|
|
@ -0,0 +1,9 @@
|
|||
apiVersion: release-notes/v2
|
||||
kind: bug-fix
|
||||
area: documentation
|
||||
issue:
|
||||
- 31248
|
||||
|
||||
releaseNotes:
|
||||
- |
|
||||
**Added** add `sidecar.istio.io/agentLogLevel` to known annotations.
|
||||
Loading…
Reference in New Issue