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/docs/concepts/services-networking/ingress.md
+4-5Lines changed: 4 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -134,11 +134,10 @@ path types:
134
134
to the list of labels in the path split by the `/` separator. A request is a
135
135
match for path _p_ if every _p_ is an element-wise prefix of _p_ of the
136
136
request path.
137
-
{{< note >}}
138
-
If the last element of the path is a substring of the
139
-
last element in request path, it is not a match (for example:
140
-
`/foo/bar`matches`/foo/bar/baz`, but does not match `/foo/barbaz`).
141
-
{{< /note >}}
137
+
138
+
{{< note >}}
139
+
If the last element of the path is a substring of the last element in request path, it is not a match (for example: `/foo/bar`matches`/foo/bar/baz`, but does not match `/foo/barbaz`).
140
+
{{< /note >}}
142
141
143
142
#### Multiple Matches
144
143
In some cases, multiple paths within an Ingress will match a request. In those
Copy file name to clipboardExpand all lines: content/en/docs/concepts/workloads/controllers/deployment.md
+6-11Lines changed: 6 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -53,11 +53,9 @@ In this example:
53
53
In this case, you simply select a label that is defined in the Pod template (`app: nginx`).
54
54
However, more sophisticated selection rules are possible,
55
55
as long as the Pod template itself satisfies the rule.
56
+
56
57
{{< note >}}
57
-
The `.spec.selector.matchLabels` field is a map of {key,value} pairs. A single {key,value} in the `matchLabels` map
58
-
is equivalent to an element of `matchExpressions`, whose key field is "key" the operator is "In",
59
-
and the values array contains only "value".
60
-
All of the requirements, from both `matchLabels` and `matchExpressions`, must be satisfied in order to match.
58
+
The `.spec.selector.matchLabels` field is a map of {key,value} pairs. A single {key,value} in the `matchLabels` map is equivalent to an element of `matchExpressions`, whose key field is "key" the operator is "In", and the values array contains only "value". All of the requirements, from both `matchLabels` and `matchExpressions`, must be satisfied in order to match.
61
59
{{< /note >}}
62
60
63
61
* The `template` field contains the following sub-fields:
@@ -73,10 +71,9 @@ In this example:
73
71
74
72
1. Create the Deployment by running the following command:
75
73
76
-
{{< note >}}
77
-
You may specify the `--record` flag to write the command executed in the resource annotation `kubernetes.io/change-cause`. It is useful for future introspection.
78
-
For example, to see the commands executed in each Deployment revision.
79
-
{{< /note >}}
74
+
{{< note >}}
75
+
You may specify the `--record` flag to write the command executed in the resource annotation `kubernetes.io/change-cause`. It is useful for future introspection. For example, to see the commands executed in each Deployment revision.
The Deployment controller stops the bad rollout automatically, and stops scaling up the new
413
-
ReplicaSet. This depends on the rollingUpdate parameters (`maxUnavailable` specifically) that you have specified.
414
-
Kubernetes by default sets the value to 25%.
409
+
The Deployment controller stops the bad rollout automatically, and stops scaling up the new ReplicaSet. This depends on the rollingUpdate parameters (`maxUnavailable` specifically) that you have specified. sKubernetes by default sets the value to 25%.
0 commit comments