Skip to content

Commit

Permalink
Merge pull request kubernetes#2011 from brendandburns/fix
Browse files Browse the repository at this point in the history
Further fixes due to validation changes.
  • Loading branch information
jbeda committed Oct 27, 2014
2 parents fca0598 + 455471d commit 1123105
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/kubecfg/kubecfg.go
Original file line number Diff line number Diff line change
Expand Up @@ -306,12 +306,12 @@ func createService(ctx api.Context, name string, port int, client client.Interfa
ObjectMeta: api.ObjectMeta{
Name: name,
Labels: map[string]string{
"simpleService": name,
"name": name,
},
},
Port: port,
Selector: map[string]string{
"simpleService": name,
"name": name,
},
}
svc, err := client.Services(api.Namespace(ctx)).Create(svc)
Expand Down

0 comments on commit 1123105

Please sign in to comment.