Skip to content

Commit 85b568e

Browse files
SergeyKanzhelevTim Bannister
andauthored
registry change in docs (k8s.gcr.io -> registry.k8s.io) (#38501)
* registry change in en docs * Update content/en/blog/_posts/2019-04-04-local-persistent-volumes-ga.md Co-authored-by: Tim Bannister <[email protected]> * Update content/en/blog/_posts/2019-04-04-local-persistent-volumes-ga.md Co-authored-by: Tim Bannister <[email protected]> * Update content/en/blog/_posts/2022-05-13-grpc-probes-in-beta.md Co-authored-by: Tim Bannister <[email protected]> * Update content/en/blog/_posts/2022-05-27-maxunavailable-for-statefulset.md Co-authored-by: Tim Bannister <[email protected]> --------- Co-authored-by: Tim Bannister <[email protected]>
1 parent f6abf85 commit 85b568e

4 files changed

+7
-5
lines changed

content/en/blog/_posts/2019-04-04-local-persistent-volumes-ga.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ spec:
129129
spec:
130130
containers:
131131
- name: test-container
132-
image: k8s.gcr.io/busybox
132+
image: registry.k8s.io/busybox # updated after publication (previously used k8s.gcr.io/busybox)
133133
command:
134134
- "/bin/sh"
135135
args:

content/en/blog/_posts/2020-05-27-An-Introduction-to-the-K8s-Infrastructure-Working-Group.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ The team has made progress in the last few months that is well worth celebrating
5555

5656
- The K8s-Infrastructure Working Group released an automated billing report that they start every meeting off by reviewing as a group.
5757
- DNS for k8s.io and kubernetes.io are also fully [community-owned](https://groups.google.com/g/kubernetes-dev/c/LZTYJorGh7c/m/u-ydk-yNEgAJ), with community members able to [file issues](https://github.com/kubernetes/k8s.io/issues/new?assignees=&labels=wg%2Fk8s-infra&template=dns-request.md&title=DNS+REQUEST%3A+%3Cyour-dns-record%3E) to manage records.
58-
- The container registry [k8s.gcr.io](https://github.com/kubernetes/k8s.io/tree/main/k8s.gcr.io) is also fully community-owned and available for all Kubernetes subprojects to use.
58+
- The container registry [registry.k8s.io](https://github.com/kubernetes/k8s.io/tree/main/registry.k8s.io) is also fully community-owned and available for all Kubernetes subprojects to use.
5959
_Note:_ The container registry has changed to registry.k8s.io. Updated on August 25, 2022.
6060
- The Kubernetes [publishing-bot](https://github.com/kubernetes/publishing-bot) responsible for keeping k8s.io/kubernetes/staging repositories published to their own top-level repos (For example: [kubernetes/api](https://github.com/kubernetes/api)) runs on a community-owned cluster.
6161
- The gcsweb.k8s.io service used to provide anonymous access to GCS buckets for kubernetes artifacts runs on a community-owned cluster.

content/en/blog/_posts/2022-05-13-grpc-probes-in-beta.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,8 @@ metadata:
115115
spec:
116116
containers:
117117
- name: agnhost
118-
image: k8s.gcr.io/e2e-test-images/agnhost:2.35
118+
# image changed since publication (previously used registry "k8s.gcr.io")
119+
image: registry.k8s.io/e2e-test-images/agnhost:2.35
119120
command: ["/agnhost", "grpc-health-checking"]
120121
ports:
121122
- containerPort: 5000

content/en/blog/_posts/2022-05-27-maxunavailable-for-statefulset.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,8 @@ spec:
5050
app: nginx
5151
spec:
5252
containers:
53-
- image: k8s.gcr.io/nginx-slim:0.8
53+
# image changed since publication (previously used registry "k8s.gcr.io")
54+
- image: registry.k8s.io/nginx-slim:0.8
5455
imagePullPolicy: IfNotPresent
5556
name: nginx
5657
updateStrategy:
@@ -66,7 +67,7 @@ If you enable the new feature and you don't specify a value for `maxUnavailable`
6667
I'll run through a scenario based on that example manifest to demonstrate how this feature works. I will deploy a StatefulSet that
6768
has 5 replicas, with `maxUnavailable` set to 2 and `partition` set to 0.
6869

69-
I can trigger a rolling update by changing the image to `k8s.gcr.io/nginx-slim:0.9`. Once I initiate the rolling update, I can
70+
I can trigger a rolling update by changing the image to `registry.k8s.io/nginx-slim:0.9`. Once I initiate the rolling update, I can
7071
watch the pods update 2 at a time as the current value of maxUnavailable is 2. The below output shows a span of time and is not
7172
complete. The maxUnavailable can be an absolute number (for example, 2) or a percentage of desired Pods (for example, 10%). The
7273
absolute number is calculated from percentage by rounding up to the nearest integer.

0 commit comments

Comments
 (0)