Merge pull request #101 from getamis/fix-k8s-docker-image-option

k8s: fix typo
This commit is contained in:
Miya Chen 2017-12-13 10:21:18 +08:00 committed by GitHub
commit 8cd2d8ed22
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ type Option func(*ethereum)
func ImageRepository(repository string) Option {
return func(eth *ethereum) {
eth.args = append(eth.args, fmt.Sprintf("image.respository=%s", repository))
eth.args = append(eth.args, fmt.Sprintf("image.repository=%s", repository))
}
}