Created
May 19, 2021 01:50
-
-
Save woodgear/42faffa0fbe76dc9400f31ee20e2bc17 to your computer and use it in GitHub Desktop.
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
package main | |
import ( | |
"fmt" | |
metaV1 "k8s.io/apimachinery/pkg/apis/meta/v1" | |
"k8s.io/client-go/kubernetes" | |
"k8s.io/client-go/tools/clientcmd" | |
"os" | |
) | |
func main() { | |
// Location of kubeconfig file | |
kubeconfig := os.Getenv("HOME") + "/.kube/config" | |
// Create a Config (k8s.io/client-go/rest) | |
config, err := clientcmd.BuildConfigFromFlags("", kubeconfig) | |
if err != nil { | |
panic(err.Error()) | |
} | |
// Create an API Clientset (k8s.io/client-go/kubernetes) | |
clientset, err := kubernetes.NewForConfig(config) | |
if err != nil { | |
panic(err.Error()) | |
} | |
// Create a CoreV1Client (k8s.io/client-go/kubernetes/typed/core/v1) | |
coreV1Client := clientset.CoreV1() | |
// Create an AppsV1Client (k8s.io/client-go/kubernetes/typed/apps/v1) | |
appsV1Client := clientset.AppsV1() | |
//-------------------------------------------------------------------------// | |
// List pods (all namespaces) | |
//-------------------------------------------------------------------------// | |
// Get a *PodList (k8s.io/api/core/v1) | |
pods, err := coreV1Client.Pods("").List(metaV1.ListOptions{}) | |
if err != nil { | |
panic(err.Error()) | |
} | |
// List each Pod (k8s.io/api/core/v1) | |
for i, pod := range pods.Items { | |
fmt.Printf("Pod %d: %s\n", i+1, pod.ObjectMeta.Name) | |
} | |
//-------------------------------------------------------------------------// | |
// List nodes | |
//-------------------------------------------------------------------------// | |
// Get a *NodeList (k8s.io/api/core/v1) | |
nodes, err := coreV1Client.Nodes().List(metaV1.ListOptions{}) | |
if err != nil { | |
panic(err.Error()) | |
} | |
// For each Node (k8s.io/api/core/v1) | |
for i, node := range nodes.Items { | |
fmt.Printf("Node %d: %s\n", i+1, node.ObjectMeta.Name) | |
} | |
//-------------------------------------------------------------------------// | |
// List deployments (all namespaces) | |
//-------------------------------------------------------------------------// | |
// Get a *DeploymentList (k8s.io/api/apps/v1) | |
deployments, err := appsV1Client.Deployments("").List(metaV1.ListOptions{}) | |
if err != nil { | |
panic(err.Error()) | |
} | |
// For each Deployment (k8s.io/api/apps/v1) | |
for i, deployment := range deployments.Items { | |
fmt.Printf("Deployment %d: %s\n", i+1, deployment.ObjectMeta.Name) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment