-
Notifications
You must be signed in to change notification settings - Fork 107
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from manning-ncsa/patch-1
Minor English language improvements in docs
- Loading branch information
Showing
3 changed files
with
12 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,31 @@ | ||
## Why | ||
|
||
Given application configuration for Kubernetes software could be specified in various forms: | ||
Given that application configurations for Kubernetes software can be specified in various forms: | ||
|
||
- plain YAML configurations | ||
- Helm charts | ||
- ytt templates | ||
- jsonnet templates | ||
- etc. | ||
|
||
and is found in various locations: | ||
and found in various locations: | ||
|
||
- Git repository | ||
- Archive over HTTP | ||
- Helm repository | ||
- etc. | ||
|
||
and is written/provided by: | ||
and written/provided by: | ||
|
||
- in-house development teams | ||
- vendors offering COTS products | ||
|
||
as a Kubernetes user I would like to customize, install, and update such software in a _consistent_ and _manageable_ manner. | ||
|
||
kapp-controller provides a Kubernetes native way, via App CRD, to specify how to fetch, configure and finally deploy software it to the cluster. | ||
kapp-controller provides a Kubernetes native way, via App CRD, to specify how to fetch, configure and deploy software to the cluster. | ||
|
||
Another motivation for kapp-controller was to make a small and single purpose system (as opposed to a general CD system); hence, it's lightweight, easy-to-understand and easy-to-debug. It builds on small composable tools to achieve its goal and therefore is easy to think about. | ||
|
||
Finally, for the fans of GitOps, kapp-controller turns [kapp](https://get-kapp.io) into your continious cluster reconciler. | ||
Finally, for the fans of GitOps, kapp-controller turns [kapp](https://get-kapp.io) into your continuous cluster reconciler. | ||
|
||
Next: [Install](install.md) |