Fixed namepace typo in the repo

This commit is contained in:
Huy Le 2019-03-02 13:49:42 -08:00
parent 793ab524b0
commit 6befee79c2
4 changed files with 5 additions and 5 deletions

View File

@ -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
```

View File

@ -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
```

View File

@ -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:

View File

@ -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 {