You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/en/kanvas/reference/kubernetes-components.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -30,7 +30,7 @@ A Deployment provides declarative updates for Pods and ReplicaSets. It allows yo
30
30
31
31
***`revisionHistoryLimit`***(integer)*
32
32
***What it does:** Specifies the number of old ReplicaSets to retain to allow rollback.
33
-
***Behavior:** Defaults to 10. If set to `0`, you cannot roll back to previous versions of the Deployment.
33
+
***Behavior:** Defaults to `10`. If set to `0`, you cannot roll back to previous versions of the Deployment.
34
34
35
35
***`paused`***(boolean)*
36
36
***What it does:** Indicates whether the deployment is paused.
@@ -50,7 +50,7 @@ A Deployment provides declarative updates for Pods and ReplicaSets. It allows yo
50
50
51
51
***`progressDeadlineSeconds`***(integer)*
52
52
***What it does:** The maximum time in seconds the Deployment controller waits for a rollout to make progress before considering it "failed".
53
-
***Behavior:** If a new Pod gets stuck in a crash loop due to a bad configuration or image, the Deployment will stop trying to roll out after this deadline (defaults to 600s) and report a `ProgressDeadlineExceeded` error condition.
53
+
***Behavior:** If a new Pod gets stuck in a crash loop due to a bad configuration or image, the Deployment will stop trying to roll out after this deadline (defaults to `600s`) and report a `ProgressDeadlineExceeded` error condition.
54
54
55
55
---
56
56
@@ -70,7 +70,7 @@ A Service is an abstract way to expose an application running on a set of Pods a
70
70
71
71
***`selector`***(object)*
72
72
***What it does:** Key-value pairs used to identify which Pods this Service should route traffic to.
73
-
***Behavior:** If a Service has a selector of `app: frontend`, it will automatically discover and load-balance traffic across all Pods in the namespace that possess the `app: frontend` label.
73
+
***Behavior:** If a Service has a selector of `app: frontend`, it will automatically discover and load-balance traffic across all Pods in the namespace that possess the `app: frontend` label.
74
74
75
75
***`ports`***(array)*
76
76
***What it does:** Defines the network ports exposed by the Service.
0 commit comments