-
Notifications
You must be signed in to change notification settings - Fork 4.7k
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 #9762 from olemarkus/kops-get-nodes
Add command for listing cloud instances
- Loading branch information
Showing
5 changed files
with
248 additions
and
0 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,192 @@ | ||
/* | ||
Copyright 2020 The Kubernetes Authors. | ||
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 main | ||
|
||
import ( | ||
"context" | ||
"fmt" | ||
"io" | ||
"os" | ||
"strings" | ||
|
||
"k8s.io/kops/pkg/cloudinstances" | ||
"k8s.io/kubectl/pkg/util/i18n" | ||
"k8s.io/kubectl/pkg/util/templates" | ||
|
||
"k8s.io/klog/v2" | ||
|
||
"k8s.io/client-go/kubernetes" | ||
|
||
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" | ||
"k8s.io/cli-runtime/pkg/genericclioptions" | ||
|
||
"k8s.io/kops/util/pkg/tables" | ||
|
||
"k8s.io/kops/pkg/apis/kops" | ||
|
||
"github.com/spf13/cobra" | ||
"k8s.io/kops/cmd/kops/util" | ||
"k8s.io/kops/upup/pkg/fi/cloudup" | ||
) | ||
|
||
func NewCmdGetInstances(f *util.Factory, out io.Writer, options *GetOptions) *cobra.Command { | ||
getInstancesShort := i18n.T(`Display cluster instances.`) | ||
|
||
getInstancesLong := templates.LongDesc(i18n.T(` | ||
Display cluster instances.`)) | ||
|
||
getInstancesExample := templates.Examples(i18n.T(` | ||
# Display all instances. | ||
kops get instances | ||
`)) | ||
|
||
cmd := &cobra.Command{ | ||
Use: "instances", | ||
Short: getInstancesShort, | ||
Long: getInstancesLong, | ||
Example: getInstancesExample, | ||
Run: func(cmd *cobra.Command, args []string) { | ||
ctx := context.TODO() | ||
|
||
if err := rootCommand.ProcessArgs(args); err != nil { | ||
exitWithError(err) | ||
} | ||
|
||
err := RunGetInstances(ctx, f, out, options) | ||
if err != nil { | ||
exitWithError(err) | ||
} | ||
}, | ||
} | ||
|
||
return cmd | ||
} | ||
|
||
func RunGetInstances(ctx context.Context, f *util.Factory, out io.Writer, options *GetOptions) error { | ||
|
||
clientset, err := f.Clientset() | ||
if err != nil { | ||
return err | ||
} | ||
|
||
clusterName := rootCommand.ClusterName() | ||
options.clusterName = clusterName | ||
if clusterName == "" { | ||
return fmt.Errorf("--name is required") | ||
} | ||
|
||
cluster, err := clientset.GetCluster(ctx, options.clusterName) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
if cluster == nil { | ||
return fmt.Errorf("cluster not found %q", options.clusterName) | ||
} | ||
|
||
cloud, err := cloudup.BuildCloud(cluster) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
k8sClient, err := createK8sClient(cluster) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
nodeList, err := k8sClient.CoreV1().Nodes().List(ctx, metav1.ListOptions{}) | ||
if err != nil { | ||
klog.V(2).Infof("error listing nodes: %v", err) | ||
} | ||
|
||
igList, err := clientset.InstanceGroupsFor(cluster).List(ctx, metav1.ListOptions{}) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
var instanceGroups []*kops.InstanceGroup | ||
for i := range igList.Items { | ||
instanceGroups = append(instanceGroups, &igList.Items[i]) | ||
} | ||
|
||
var cloudInstances []*cloudinstances.CloudInstance | ||
|
||
cloudGroups, err := cloud.GetCloudGroups(cluster, instanceGroups, false, nodeList.Items) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
for _, cg := range cloudGroups { | ||
cloudInstances = append(cloudInstances, cg.Ready...) | ||
cloudInstances = append(cloudInstances, cg.NeedUpdate...) | ||
} | ||
|
||
switch options.output { | ||
case OutputTable: | ||
return instanceOutputTable(cloudInstances, out) | ||
default: | ||
return fmt.Errorf("unsupported output format: %q", options.output) | ||
} | ||
} | ||
|
||
func instanceOutputTable(instances []*cloudinstances.CloudInstance, out io.Writer) error { | ||
t := &tables.Table{} | ||
t.AddColumn("ID", func(i *cloudinstances.CloudInstance) string { | ||
return i.ID | ||
}) | ||
t.AddColumn("NODE-NAME", func(i *cloudinstances.CloudInstance) string { | ||
node := i.Node | ||
if node == nil { | ||
return "NotJoined" | ||
} else { | ||
return node.Name | ||
} | ||
}) | ||
t.AddColumn("STATUS", func(i *cloudinstances.CloudInstance) string { | ||
return i.Status | ||
}) | ||
t.AddColumn("ROLES", func(i *cloudinstances.CloudInstance) string { | ||
return strings.Join(i.Roles, ", ") | ||
}) | ||
t.AddColumn("INTERNAL-IP", func(i *cloudinstances.CloudInstance) string { | ||
return i.PrivateIP | ||
}) | ||
t.AddColumn("INSTANCE-GROUP", func(i *cloudinstances.CloudInstance) string { | ||
return i.CloudInstanceGroup.HumanName | ||
}) | ||
t.AddColumn("MACHINE-TYPE", func(i *cloudinstances.CloudInstance) string { | ||
return i.MachineType | ||
}) | ||
return t.Render(instances, os.Stdout, "ID", "NODE-NAME", "STATUS", "ROLES", "INTERNAL-IP", "INSTANCE-GROUP", "MACHINE-TYPE") | ||
} | ||
|
||
func createK8sClient(cluster *kops.Cluster) (*kubernetes.Clientset, error) { | ||
contextName := cluster.ObjectMeta.Name | ||
clientGetter := genericclioptions.NewConfigFlags(true) | ||
clientGetter.Context = &contextName | ||
|
||
config, err := clientGetter.ToRESTConfig() | ||
if err != nil { | ||
return nil, fmt.Errorf("cannot load kubecfg settings for %q: %v", contextName, err) | ||
} | ||
k8sClient, err := kubernetes.NewForConfig(config) | ||
if err != nil { | ||
return nil, fmt.Errorf("cannot build kubernetes api client for %q: %v", contextName, err) | ||
} | ||
return k8sClient, nil | ||
|
||
} |
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,53 @@ | ||
|
||
<!--- This file is automatically generated by make gen-cli-docs; changes should be made in the go CLI command code (under cmd/kops) --> | ||
|
||
## kops get instances | ||
|
||
Display cluster instances. | ||
|
||
### Synopsis | ||
|
||
Display cluster instances. | ||
|
||
``` | ||
kops get instances [flags] | ||
``` | ||
|
||
### Examples | ||
|
||
``` | ||
# Display all instances. | ||
kops get instances | ||
``` | ||
|
||
### Options | ||
|
||
``` | ||
-h, --help help for instances | ||
``` | ||
|
||
### Options inherited from parent commands | ||
|
||
``` | ||
--add_dir_header If true, adds the file directory to the header of the log messages | ||
--alsologtostderr log to standard error as well as files | ||
--config string yaml config file (default is $HOME/.kops.yaml) | ||
--log_backtrace_at traceLocation when logging hits line file:N, emit a stack trace (default :0) | ||
--log_dir string If non-empty, write log files in this directory | ||
--log_file string If non-empty, use this log file | ||
--log_file_max_size uint Defines the maximum size a log file can grow to. Unit is megabytes. If the value is 0, the maximum file size is unlimited. (default 1800) | ||
--logtostderr log to standard error instead of files (default true) | ||
--name string Name of cluster. Overrides KOPS_CLUSTER_NAME environment variable | ||
-o, --output string output format. One of: table, yaml, json (default "table") | ||
--skip_headers If true, avoid header prefixes in the log messages | ||
--skip_log_headers If true, avoid headers when opening log files | ||
--state string Location of state storage (kops 'config' file). Overrides KOPS_STATE_STORE environment variable | ||
--stderrthreshold severity logs at or above this threshold go to stderr (default 2) | ||
-v, --v Level number for the log level verbosity | ||
--vmodule moduleSpec comma-separated list of pattern=N settings for file-filtered logging | ||
``` | ||
|
||
### SEE ALSO | ||
|
||
* [kops get](kops_get.md) - Get one or many resources. | ||
|