Skip to content
This repository has been archived by the owner on Nov 6, 2019. It is now read-only.

Commit

Permalink
Fix typos in docs, comments and variables
Browse files Browse the repository at this point in the history
  • Loading branch information
alexandear committed Dec 14, 2018
1 parent dbcd22a commit 4b2534c
Show file tree
Hide file tree
Showing 12 changed files with 14 additions and 14 deletions.
6 changes: 3 additions & 3 deletions README.md
Expand Up @@ -43,7 +43,7 @@ For a full installation process, have a look at the [installation docs](docs/ins
Ensure that you have an API token installed in your cluster. Follow our [how to](docs/design/github-connector.md#APIToken)
for further instructions.

The GitHub repository resource is used to syncronize releases and pull requests
The GitHub repository resource is used to synchronize releases and pull requests
with cluster state, and update pull requests with deployment status.

```yaml
Expand Down Expand Up @@ -76,7 +76,7 @@ spec:

### Configure an Image Policy

The image policy resource syncronizes Docker container images with cluster
The image policy resource synchronizes Docker container images with cluster
state. It cross references with GitHub releases, filtering out images that do
not match the versioning policy.

Expand Down Expand Up @@ -143,5 +143,5 @@ Thanks for taking the time to join the community and helping out!

- Please familiarize yourself with the [Code of Conduct](./CODE_OF_CONDUCT.md)
before contributing.
- Look at our [Contributing Guidelines](./CONTRIBUTING.md) for more infirmation
- Look at our [Contributing Guidelines](./CONTRIBUTING.md) for more information
about setting up your environment and how to contribute.
2 changes: 1 addition & 1 deletion _examples/config-policy.yaml
Expand Up @@ -3,7 +3,7 @@
# Mounts through the ConfigPolicy.
#
# The ConfigPolicy will be monitored for changes, once changes are detected in
# the configuration or the values of the confniguration (envs), a new deployment
# the configuration or the values of the configuration (envs), a new deployment
# for the Microservices which reference this ConfigPolicy will be created.
apiVersion: hlnr.io/v1alpha1
kind: ConfigPolicy
Expand Down
2 changes: 1 addition & 1 deletion _examples/hello-hlnr/github-repository.yaml
@@ -1,4 +1,4 @@
# This secret is your GH API ACCESS token set up with premissions according to [/docs/design/github-connector.md](/docs/design/github-connector.md)
# This secret is your GH API ACCESS token set up with permissions according to [/docs/design/github-connector.md](/docs/design/github-connector.md)
apiVersion: v1
kind: Secret
metadata:
Expand Down
2 changes: 1 addition & 1 deletion _examples/image-policy-match.yaml
Expand Up @@ -49,7 +49,7 @@ spec:

---

# This configuration uses label matching. You can match on any number of lables,
# This configuration uses label matching. You can match on any number of labels,
# with or without name. If a given label does not exist on a container image,
# it will not match.
#
Expand Down
2 changes: 1 addition & 1 deletion docs/design/github-connector.md
Expand Up @@ -6,7 +6,7 @@ have been opened.

To do this, there is a CRD installed which allows you to specify a repository
and credentials to connect to this repository. The connector will configure the
appropiate webhooks with this repository to get callback information based on
appropriate webhooks with this repository to get callback information based on
Release and PullRequest events.

The connector also takes care of setting up a callback server, allowing GitHub
Expand Down
2 changes: 1 addition & 1 deletion docs/design/image-policy.md
Expand Up @@ -8,7 +8,7 @@ from. The ImagePolicy is then responsible for validating that the desired images
are available in the linked registry.

ImagePolicies can optionally define a match configuration. Match is used to
control how GitHub releases map to container registry images. By defaut, the
control how GitHub releases map to container registry images. By default, the
release name is directly mapped to an image tag name. You can use `from` and
`to` values to do pattern matching on the GitHub release, and templating to
match container image tags. You can also define container image labels to match
Expand Down
2 changes: 1 addition & 1 deletion docs/design/versioning-policy.md
Expand Up @@ -17,7 +17,7 @@ form of `v1.2.3`.

Release Candidates are used for staging environments. These should be in the
form off `v1.2.3-rc.0`. This indicates that we can also have multiple release
candiates for the same release.
candidates for the same release.

## Preview

Expand Down
2 changes: 1 addition & 1 deletion internal/configpolicy/controller.go
Expand Up @@ -21,7 +21,7 @@ import (
)

// Controller represents the MicroserviceController. This controller
// takes care of creating, updating and deleting lower level Kubernetese
// takes care of creating, updating and deleting lower level Kubernetes
// components that are associated with a specific Microservice.
type Controller struct {
rc *rest.RESTClient
Expand Down
2 changes: 1 addition & 1 deletion internal/networkpolicy/controller.go
Expand Up @@ -23,7 +23,7 @@ import (
)

// Controller represents the MicroserviceController. This controller
// takes care of creating, updating and deleting lower level Kubernetese
// takes care of creating, updating and deleting lower level Kubernetes
// components that are associated with a specific Microservice.
type Controller struct {
rc *rest.RESTClient
Expand Down
2 changes: 1 addition & 1 deletion internal/svc/controller.go
Expand Up @@ -29,7 +29,7 @@ type patchClient interface {
}

// Controller represents the MicroserviceController. This controller
// takes care of creating, updating and deleting lower level Kubernetese
// takes care of creating, updating and deleting lower level Kubernetes
// components that are associated with a specific Microservice.
type Controller struct {
rc *rest.RESTClient
Expand Down
2 changes: 1 addition & 1 deletion internal/vsvc/controller.go
Expand Up @@ -21,7 +21,7 @@ import (
)

// Controller represents the VersionedMicroserviceController. This controller
// takes care of creating, updating and deleting lower level Kubernetese
// takes care of creating, updating and deleting lower level Kubernetes
// components that are associated with a specific VersionedMicroservice.
type Controller struct {
rc *rest.RESTClient
Expand Down
2 changes: 1 addition & 1 deletion internal/vsvc/disruption.go
Expand Up @@ -15,7 +15,7 @@ import (

var (
// ErrMinMaxAvailabilitySet is used when the Availability Configuration has
// both MinAvailabe and MaxUnavailable set.
// both MinAvailable and MaxUnavailable set.
ErrMinMaxAvailabilitySet = errors.New("Can't have both MinAvailable and MaxUnavailable configured")
)

Expand Down

0 comments on commit 4b2534c

Please sign in to comment.