Skip to content

Commit 5baf5e4

Browse files
committed
sync system-traces finalizers deploy-intro
Update system-traces.md
1 parent 2a8e5ff commit 5baf5e4

File tree

3 files changed

+19
-7
lines changed

3 files changed

+19
-7
lines changed

content/zh-cn/docs/concepts/cluster-administration/system-traces.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -74,13 +74,14 @@ receivers:
7474
grpc:
7575
exporters:
7676
# Replace this exporter with the exporter for your backend
77-
logging:
78-
logLevel: debug
77+
exporters:
78+
debug:
79+
verbosity: detailed
7980
service:
8081
pipelines:
8182
traces:
8283
receivers: [otlp]
83-
exporters: [logging]
84+
exporters: [debug]
8485
```
8586
-->
8687
```yaml
@@ -90,13 +91,14 @@ receivers:
9091
grpc:
9192
exporters:
9293
# 用适合你后端环境的导出器替换此处的导出器
93-
logging:
94-
logLevel: debug
94+
exporters:
95+
debug:
96+
verbosity: detailed
9597
service:
9698
pipelines:
9799
traces:
98100
receivers: [otlp]
99-
exporters: [logging]
101+
exporters: [debug]
100102
```
101103
102104
<!--

content/zh-cn/docs/concepts/overview/working-with-objects/finalizers.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,16 @@ object once it is set.
100100
* 删除请求已被发出之后,你无法复活该对象。唯一的方法是删除它并创建一个新的相似对象。
101101
{{</note>}}
102102

103+
{{<note>}}
104+
<!--
105+
Custom finalizer names **must** be publicly qualified finalizer names, such as `example.com/finalizer-name`.
106+
Kubernetes enforces this format; the API server rejects writes to objects where the change does not use qualified finalizer names for any custom finalizer.
107+
-->
108+
自定义的 finalizer 名称**必须**是具有公共限定前缀的 finalizer 名称,
109+
例如 `example.com/finalizer-name`。Kubernetes 强制要求使用这种格式;
110+
如果对象中的更改未使用合规的限定格式,API 服务器将拒绝写入包含自定义 finalizer 的对象。
111+
{{</note>}}
112+
103113
<!--
104114
## Owner references, labels, and finalizers {#owners-labels-finalizers}
105115

content/zh-cn/docs/tutorials/kubernetes-basics/deploy-app/deploy-intro.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ that first by following the instructions from the [Hello Minikube tutorial](/doc
123123

124124
<!--
125125
You will need to have installed kubectl as well. If you need to install it, visit
126-
[install tools](/docs/tasks/tools/#kubectl) install tools.
126+
[install tools](/docs/tasks/tools/#kubectl).
127127
128128
Now that you know what Deployments are, let's deploy our first app!
129129
-->

0 commit comments

Comments
 (0)