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 typos #27

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions content/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ lives easier and work more efficiently. For example:

* The [platform-deploy](https://github.com/cisco-sso/k8s-deploy) code pattern
allows a user to enter a "cluster" directory and automatically have all
tools pre-configured for that specific enviroment. Thus, by opening
tools pre-configured for that specific environment. Thus, by opening
multiple shells to different "cluster" directories the user may be
configured to operate on several clusters simultaneously. This sounds
simple, however it is not possible with "kubectl" today because only a
Expand All @@ -57,6 +57,6 @@ lives easier and work more efficiently. For example:
"platform-deploy" code pattern relies on
[direnv](https://github.com/direnv/direnv) which is pre-configured in the
[Kubernetes Development Kit (KDK)](https://github.com/cisco-sso/kdk), to
auto-magically set enviroment variables upon entering a cluster directory
auto-magically set environment variables upon entering a cluster directory
and pull secrets from a [keybase](https://keybase.io/) team to properly
configure all of the cloud tools such as kubectl, helm, aws-cli, etc.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[Framework-deploy](https://github.com/cisco-sso/framework-deploy) is a git repo which implments the KDF deployment
[Framework-deploy](https://github.com/cisco-sso/framework-deploy) is a git repo which implements the KDF deployment
pattern. The boilerplate structure in framework-deploy is made to fit perfectly with the tools available in the KDK
container. One may fork this repo as a basis for implementing the framework-deploy pattern for private kubernetes
clusters.
2 changes: 1 addition & 1 deletion content/kubernetes/best-practices/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ and thus can fit on any worker node. In addition, that pod is allowed to consum
resources, allowing the risk of out of memory issues on the worker node causing instability and having the Linux OOM
killer trigger and kill processes at random.

Guidlines for setting Pod Memory/Cpu Limits and Requests:
Guidelines for setting Pod Memory/Cpu Limits and Requests:

* Set memory and cpu limits and requests are set on every pod
* Set default memory and cpu limits on every namespace using
Expand Down
2 changes: 1 addition & 1 deletion content/kubernetes/deploying/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ functionality.
worker node. Its persistent volume is local to a node and cannot be network mounted on a different worker node.
This drastically decreases the resilience of any stateful application in Kubernetes upon node failures.
* Load-balancer integration
* Without this, applications within kubernetes will not be auto-wired to be reachable from outside of kuberentes.
* Without this, applications within kubernetes will not be auto-wired to be reachable from outside of Kubernetes.

There are less resilient and unpalatable workarounds for the above, for example:

Expand Down
2 changes: 1 addition & 1 deletion content/team/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ At minimum:

## Upstreaming

If you modify an open-source project, make the effort to submit an upsteam PR and get your code merged.
If you modify an open-source project, make the effort to submit an upstream PR and get your code merged.

This eliminates the long term burden of maintaining forked code, thus reducing costs for your business. It also is important to contribute to the open-source community.

Expand Down