File tree Expand file tree Collapse file tree 1 file changed +4
-6
lines changed
content/en/docs/tasks/extend-kubernetes/custom-resources Expand file tree Collapse file tree 1 file changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -15,10 +15,9 @@ level of your CustomResourceDefinitions or advance your API to a new version wit
15
15
16
16
## {{% heading "prerequisites" %}}
17
17
18
-
19
18
{{< include "task-tutorial-prereqs.md" >}}
20
19
21
- You should have a initial understanding of [ custom resources] ( /docs/concepts/extend-kubernetes/api-extension/custom-resources/ ) .
20
+ You should have an initial understanding of [ custom resources] ( /docs/concepts/extend-kubernetes/api-extension/custom-resources/ ) .
22
21
23
22
{{< version-check >}}
24
23
@@ -42,10 +41,9 @@ Later it might be necessary to add new version such as `v1`.
42
41
43
42
Adding a new version:
44
43
45
- 1 . Pick a conversion strategy. Since custom resource objects need to be able to
46
- be served at both versions, that means they will sometimes be served at a
47
- different version than their storage version. In order for this to be
48
- possible, the custom resource objects must sometimes be converted between the
44
+ 1 . Pick a conversion strategy. Since custom resource objects need the ability to
45
+ be served at both versions, that means they will sometimes be served in a
46
+ different version than the one stored. To make this possible, the custom resource objects must sometimes be converted between the
49
47
version they are stored at and the version they are served at. If the
50
48
conversion involves schema changes and requires custom logic, a conversion
51
49
webhook should be used. If there are no schema changes, the default ` None `
You can’t perform that action at this time.
0 commit comments