-
Notifications
You must be signed in to change notification settings - Fork 4.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #267 from jimmidyson/service-command
Add service command
- Loading branch information
Showing
7 changed files
with
128 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
/* | ||
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" | ||
"os" | ||
|
||
"github.com/docker/machine/libmachine" | ||
"github.com/pkg/browser" | ||
"github.com/spf13/cobra" | ||
"k8s.io/minikube/pkg/minikube/cluster" | ||
"k8s.io/minikube/pkg/minikube/constants" | ||
) | ||
|
||
var ( | ||
namespace string | ||
serviceURLMode bool | ||
) | ||
|
||
// serviceCmd represents the service command | ||
var serviceCmd = &cobra.Command{ | ||
Use: "service [flags] SERVICE", | ||
Short: "Gets the kubernetes URL for the specified service in your local cluster", | ||
Long: `Gets the kubernetes URL for the specified service in your local cluster`, | ||
Run: func(cmd *cobra.Command, args []string) { | ||
if len(args) == 0 || len(args) > 1 { | ||
fmt.Fprintln(os.Stderr, "Please specify a service name.") | ||
os.Exit(1) | ||
} | ||
|
||
service := args[0] | ||
|
||
api := libmachine.NewClient(constants.Minipath, constants.MakeMiniPath("certs")) | ||
defer api.Close() | ||
url, err := cluster.GetServiceURL(api, namespace, service) | ||
if err != nil { | ||
fmt.Fprintln(os.Stderr, err) | ||
fmt.Fprintln(os.Stderr, "Check that minikube is running and that you have specified the correct namespace (-n flag).") | ||
os.Exit(1) | ||
} | ||
if serviceURLMode { | ||
fmt.Fprintln(os.Stdout, url) | ||
} else { | ||
fmt.Fprintln(os.Stdout, "Opening kubernetes service "+namespace+"/"+service+" in default browser...") | ||
browser.OpenURL(url) | ||
} | ||
}, | ||
} | ||
|
||
func init() { | ||
serviceCmd.Flags().StringVarP(&namespace, "namespace", "n", "default", "The service namespace") | ||
serviceCmd.Flags().BoolVar(&serviceURLMode, "url", false, "Display the kubernetes service URL in the CLI instead of opening it in the default browser") | ||
RootCmd.AddCommand(serviceCmd) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
## minikube service | ||
|
||
Gets the kubernetes URL for the specified service in your local cluster | ||
|
||
### Synopsis | ||
|
||
|
||
Gets the kubernetes URL for the specified service in your local cluster | ||
|
||
``` | ||
minikube service [flags] SERVICE | ||
``` | ||
|
||
### Options | ||
|
||
``` | ||
-n, --namespace="default": The service namespace | ||
--url[=false]: Display the kubernetes service URL in the CLI instead of opening it in the default browser | ||
``` | ||
|
||
### Options inherited from parent commands | ||
|
||
``` | ||
--alsologtostderr[=false]: log to standard error as well as files | ||
--log-flush-frequency=5s: Maximum number of seconds between log flushes | ||
--log_backtrace_at=:0: when logging hits line file:N, emit a stack trace | ||
--log_dir="": If non-empty, write log files in this directory | ||
--logtostderr[=false]: log to standard error instead of files | ||
--show-libmachine-logs[=false]: Whether or not to show logs from libmachine. | ||
--stderrthreshold=2: logs at or above this threshold go to stderr | ||
--v=0: log level for V logs | ||
--vmodule=: comma-separated list of pattern=N settings for file-filtered logging | ||
``` | ||
|
||
### SEE ALSO | ||
* [minikube](minikube.md) - Minikube is a tool for managing local Kubernetes clusters. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters