Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: typo respresented -> represented #75

Merged
merged 1 commit into from
Feb 24, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/dev.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ For those interested in extending and improving `kapp`, below is a quick referen
- [pkg/kapp/app](https://github.com/k14s/kapp/tree/master/pkg/kapp/app) package includes two types of app and details about them (such as app change tracking):
- `LabeledApp` which represents app based on user provided label
- `RecordedApp` which represents app backed by `ConfigMap`. `RecordedApp` uses LabeledApp internally.
- [pkg/kapp/resources](https://github.com/k14s/kapp/tree/master/pkg/kapp/resources) package is responsible for parsing, fetching, and modifying k8s resources (respresented through Resource interface and ResourceImpl)
- [pkg/kapp/resources](https://github.com/k14s/kapp/tree/master/pkg/kapp/resources) package is responsible for parsing, fetching, and modifying k8s resources (represented through Resource interface and ResourceImpl)
- [pkg/kapp/diff](https://github.com/k14s/kapp/tree/master/pkg/kapp/diff) allows to diff two resources represented by Change object, and multiple resources via ChangeSet. **This package does not know anything about k8s.**
- [pkg/kapp/diffgraph](https://github.com/k14s/kapp/tree/master/pkg/kapp/diffgraph) applies deploy/delete order to set of changes. **This package does not know anything about k8s.**
- [pkg/kapp/clusterapply](https://github.com/k14s/kapp/tree/master/pkg/kapp/clusterapply) allow to apply diff to k8s cluster via ClusterChange object.
Expand Down