提交 41cc0022 编写于 作者: D Dan Lorenc 提交者: dlorenc

IP command.

上级 46fcb928
/*
Copyright 2016 The Kubernetes Authors All rights reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package cmd
import (
"fmt"
"log"
"os"
"github.com/docker/machine/libmachine"
"k8s.io/minikube/pkg/minikube/constants"
"github.com/spf13/cobra"
)
// ipCmd represents the ip command
var ipCmd = &cobra.Command{
Use: "ip",
Short: "Retrieve the IP address of the running cluster.",
Long: `Retrieves the IP address of the running cluster, and writes it to STDOUT.`,
Run: func(cmd *cobra.Command, args []string) {
api := libmachine.NewClient(constants.Minipath, constants.MakeMiniPath("certs"))
defer api.Close()
host, err := api.Load(constants.MachineName)
if err != nil {
log.Println("Error getting IP: ", err)
os.Exit(1)
}
ip, err := host.Driver.GetIP()
if err != nil {
log.Println("Error getting IP: ", err)
os.Exit(1)
}
fmt.Println(ip)
},
}
func init() {
RootCmd.AddCommand(ipCmd)
}
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册