From 388a17b204f8615d916c06b7edf2f083782be947 Mon Sep 17 00:00:00 2001 From: mboukhalfa Date: Wed, 19 Oct 2022 15:25:12 +0300 Subject: [PATCH] tiny spell fix and rephrasing --- .../custom-resource-definition-versioning.md | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/content/en/docs/tasks/extend-kubernetes/custom-resources/custom-resource-definition-versioning.md b/content/en/docs/tasks/extend-kubernetes/custom-resources/custom-resource-definition-versioning.md index fdcc276a45f..5e26dbc8bc0 100644 --- a/content/en/docs/tasks/extend-kubernetes/custom-resources/custom-resource-definition-versioning.md +++ b/content/en/docs/tasks/extend-kubernetes/custom-resources/custom-resource-definition-versioning.md @@ -15,10 +15,9 @@ level of your CustomResourceDefinitions or advance your API to a new version wit ## {{% heading "prerequisites" %}} - {{< include "task-tutorial-prereqs.md" >}} -You should have a initial understanding of [custom resources](/docs/concepts/extend-kubernetes/api-extension/custom-resources/). +You should have an initial understanding of [custom resources](/docs/concepts/extend-kubernetes/api-extension/custom-resources/). {{< version-check >}} @@ -42,10 +41,9 @@ Later it might be necessary to add new version such as `v1`. Adding a new version: -1. Pick a conversion strategy. Since custom resource objects need to be able to - be served at both versions, that means they will sometimes be served at a - different version than their storage version. In order for this to be - possible, the custom resource objects must sometimes be converted between the +1. Pick a conversion strategy. Since custom resource objects need the ability to + be served at both versions, that means they will sometimes be served in a + different version than the one stored. To make this possible, the custom resource objects must sometimes be converted between the version they are stored at and the version they are served at. If the conversion involves schema changes and requires custom logic, a conversion webhook should be used. If there are no schema changes, the default `None`