* Documentation for ApplySet-based pruning (KEP3659)
* Apply suggestions from code review
Co-authored-by: Tim Bannister <tim@scalefactory.com>
* Add ApplySet labels and annotations to well-known list
* Minor fixups
* Address feedback on label/annotation listing
* Apply suggestions from code review
Co-authored-by: Tim Bannister <tim@scalefactory.com>
* fix label vs annotation copy-paste errors
* Update prefix to kubernetes.io
---------
Co-authored-by: Tim Bannister <tim@scalefactory.com>
* Modified the NOTE for Kubectl Subresource Support.
Improvement: Removed word tool.
Typo fix.
* Added task for patch the deployment using subresource flag.
* Updated the content.
* Updated the link for kubectl patch.
* Resolved nits.
* Improvement: updated the content.
* Removed new deployment and used existing deployment manifests.
Fix typo for the *volumeMount* field
Running the previous snippets with `kubectl apply -k .` would generate this error:
```
error validating ".": error validating data: ValidationError(Deployment.spec.template.spec.containers[0]): unknown field "volumeMount" in io.k8s.api.core.v1.Container;
```
According to [this page](https://kubernetes.io/docs/concepts/storage/volumes/), the correct field is "volumeMounts".
/docs/tasks/tools/install-kubectl/ is redirected to
/docs/tasks/tools/
This commit replace the redirect links for installing kubectl
with direct links.
command: ["start", "--host", "\$(MY_SERVICE_NAME)"]
The back slash causes an error. So removed it.
The error detail below
```
Error: rawResources failed to read Resources: YAML file [deployment.yaml] encounters a format error.
error converting YAML to JSON: yaml: line 18: found unknown escape character
```
```
kubectl version
Client Version: version.Info{Major:"1", Minor:"19", GitVersion:"v1.19.3", GitCommit:"1e11e4a2108024935ecfcb2912226cedeafd99df", GitTreeState:"clean", BuildDate:"2020-10-14T12:50:19Z", GoVersion:"go1.15.2", Compiler:"gc", Platform:"windows/amd64"}
Server Version: version.Info{Major:"1", Minor:"19", GitVersion:"v1.19.3", GitCommit:"1e11e4a2108024935ecfcb2912226cedeafd99df", GitTreeState:"clean", BuildDate:"2020-10-14T12:41:49Z", GoVersion:"go1.15.2", Compiler:"gc", Platform:"linux/amd64"}
```