Skip to content

Commit

Permalink
Duplicate default value in create node config was wrong
Browse files Browse the repository at this point in the history
  • Loading branch information
smarterclayton committed May 21, 2015
1 parent 50e8ca1 commit 7798730
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pkg/cmd/server/admin/create_nodeconfig.go
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,8 @@ func NewCommandNodeConfig(commandName string, fullName string, out io.Writer) *c
func NewDefaultCreateNodeConfigOptions() *CreateNodeConfigOptions {
options := &CreateNodeConfigOptions{GetSignerCertOptions: &GetSignerCertOptions{}}
options.VolumeDir = "openshift.local.volumes"
options.DNSDomain = "local"
// TODO: replace me with a proper round trip of config options through decode
options.DNSDomain = "cluster.local"
options.APIServerURL = "https://localhost:8443"
options.APIServerCAFile = "openshift.local.config/master/ca.crt"
options.NodeClientCAFile = "openshift.local.config/master/ca.crt"
Expand Down

0 comments on commit 7798730

Please sign in to comment.