Skip to content

Commit

Permalink
Update install.go
Browse files Browse the repository at this point in the history
  • Loading branch information
AdamDang authored Apr 23, 2018
1 parent 28fb950 commit bcf5688
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/helm/installer/install.go
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ func Upgrade(client kubernetes.Interface, opts *Options) error {
if _, err := client.ExtensionsV1beta1().Deployments(opts.Namespace).Update(obj); err != nil {
return err
}
// If the service does not exists that would mean we are upgrading from a Tiller version
// If the service does not exist that would mean we are upgrading from a Tiller version
// that didn't deploy the service, so install it.
_, err = client.CoreV1().Services(opts.Namespace).Get(serviceName, metav1.GetOptions{})
if apierrors.IsNotFound(err) {
Expand Down

0 comments on commit bcf5688

Please sign in to comment.