k8s: fix typo

This commit is contained in:
Miya Chen 2017-12-12 22:22:28 +08:00
parent 7e3e077519
commit 37c35ed210
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))
}
}