Skip to content

Commit

Permalink
Fixed namepace typo in the repo
Browse files Browse the repository at this point in the history
  • Loading branch information
huydinhle committed Mar 2, 2019
1 parent 793ab52 commit 6befee7
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/gitbook/how-it-works.md
Original file line number Diff line number Diff line change
Expand Up @@ -509,7 +509,7 @@ Or by using Helm:
helm repo add flagger https://flagger.app
helm upgrade -i flagger-loadtester flagger/loadtester \
--namepace=test \
--namespace=test \
--set cmd.logOutput=true \
--set cmd.timeout=1h
```
Expand Down
2 changes: 1 addition & 1 deletion docs/gitbook/install/flagger-install-on-kubernetes.md
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ Deploy the load test runner with Helm:

```bash
helm upgrade -i flagger-loadtester flagger/loadtester \
--namepace=test \
--namespace=test \
--set cmd.logOutput=true \
--set cmd.timeout=1h
```
Expand Down
2 changes: 1 addition & 1 deletion docs/gitbook/tutorials/canary-helm-gitops.md
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ First let's install a load testing service that will generate traffic during ana

```bash
helm upgrade -i flagger-loadtester flagger/loadtester \
--namepace=test
--namespace=test
```

Enable the load tester and deploy a new `frontend` version:
Expand Down
4 changes: 2 additions & 2 deletions pkg/controller/webhook.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ import (

// CallWebhook does a HTTP POST to an external service and
// returns an error if the response status code is non-2xx
func CallWebhook(name string, namepace string, w flaggerv1.CanaryWebhook) error {
func CallWebhook(name string, namespace string, w flaggerv1.CanaryWebhook) error {
payload := flaggerv1.CanaryWebhookPayload{
Name: name,
Namespace: namepace,
Namespace: namespace,
}

if w.Metadata != nil {
Expand Down

0 comments on commit 6befee7

Please sign in to comment.