Skip to content

Commit 1584516

Browse files
authored
Merge pull request #36699 from pacoxu/checkpointcontainer
correct CheckpointContainer to ContainerCheckpoint
2 parents 1949220 + 410a78b commit 1584516

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

content/en/docs/reference/command-line-tools-reference/feature-gates.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ different Kubernetes components.
6464
| `AnyVolumeDataSource` | `false` | Alpha | 1.18 | 1.23 |
6565
| `AnyVolumeDataSource` | `true` | Beta | 1.24 | |
6666
| `AppArmor` | `true` | Beta | 1.4 | |
67-
| `CheckpointContainer` | `false` | Alpha | 1.25 | |
67+
| `ContainerCheckpoint` | `false` | Alpha | 1.25 | |
6868
| `CPUManager` | `false` | Alpha | 1.8 | 1.9 |
6969
| `CPUManager` | `true` | Beta | 1.10 | |
7070
| `CPUManagerPolicyAlphaOptions` | `false` | Alpha | 1.23 | |
@@ -663,7 +663,7 @@ Each feature gate is designed for enabling/disabling a specific feature:
663663
flag `--service-account-extend-token-expiration=false`.
664664
Check [Bound Service Account Tokens](https://github.com/kubernetes/enhancements/blob/master/keps/sig-auth/1205-bound-service-account-tokens/README.md)
665665
for more details.
666-
- `CheckpointContainer`: Enables the kubelet `checkpoint` API.
666+
- `ContainerCheckpoint`: Enables the kubelet `checkpoint` API.
667667
See [Kubelet Checkpoint API](/docs/reference/node/kubelet-checkpoint-api/) for more details.
668668
- `ControllerManagerLeaderMigration`: Enables Leader Migration for
669669
[kube-controller-manager](/docs/tasks/administer-cluster/controller-manager-leader-migration/#initial-leader-migration-configuration) and

content/en/docs/reference/node/kubelet-checkpoint-api.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ POST /checkpoint/{namespace}/{pod}/{container}
8080

8181
401: Unauthorized
8282

83-
404: Not Found (if the `CheckpointContainer` feature gate is disabled)
83+
404: Not Found (if the `ContainerCheckpoint` feature gate is disabled)
8484

8585
404: Not Found (if the specified `namespace`, `pod` or `container` cannot be found)
8686

@@ -91,6 +91,6 @@ POST /checkpoint/{namespace}/{pod}/{container}
9191
{{< comment >}}
9292
TODO: Add more information about return codes once CRI implementation have checkpoint/restore.
9393
This TODO cannot be fixed before the release, because the CRI implementation need
94-
the Kubernetes changes to be merged to implement the new CheckpointContainer CRI API
94+
the Kubernetes changes to be merged to implement the new ContainerCheckpoint CRI API
9595
call. We need to wait after the 1.25 release to fix this.
9696
{{< /comment >}}

0 commit comments

Comments
 (0)