forked from volcano-sh/volcano
-
Notifications
You must be signed in to change notification settings - Fork 1
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 volcano-sh#178 from SrinivasChilveri/QueueStatus
Added queue get command & changed list command to print status
- Loading branch information
Showing
3 changed files
with
105 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
/* | ||
Copyright 2019 The Volcano 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 queue | ||
|
||
import ( | ||
"fmt" | ||
"io" | ||
"os" | ||
|
||
"github.com/spf13/cobra" | ||
|
||
"github.com/kubernetes-sigs/kube-batch/pkg/apis/scheduling/v1alpha1" | ||
"github.com/kubernetes-sigs/kube-batch/pkg/client/clientset/versioned" | ||
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" | ||
) | ||
|
||
type getFlags struct { | ||
commonFlags | ||
|
||
Name string | ||
} | ||
|
||
var getQueueFlags = &getFlags{} | ||
|
||
// InitGetFlags is used to init all flags | ||
func InitGetFlags(cmd *cobra.Command) { | ||
initFlags(cmd, &getQueueFlags.commonFlags) | ||
|
||
cmd.Flags().StringVarP(&getQueueFlags.Name, "name", "n", "", "the name of queue") | ||
|
||
} | ||
|
||
// GetQueue gets a queue | ||
func GetQueue() error { | ||
config, err := buildConfig(getQueueFlags.Master, getQueueFlags.Kubeconfig) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
if getQueueFlags.Name == "" { | ||
err := fmt.Errorf("name is mandaorty to get the partiular queue details") | ||
return err | ||
} | ||
|
||
queueClient := versioned.NewForConfigOrDie(config) | ||
queue, err := queueClient.SchedulingV1alpha1().Queues().Get(getQueueFlags.Name, metav1.GetOptions{}) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
PrintQueue(queue, os.Stdout) | ||
|
||
return nil | ||
} | ||
|
||
// PrintQueue prints queue information | ||
func PrintQueue(queue *v1alpha1.Queue, writer io.Writer) { | ||
_, err := fmt.Fprintf(writer, "%-25s%-8s%-8s%-8s%-8s\n", | ||
Name, Weight, Pending, Running, Unknown) | ||
if err != nil { | ||
fmt.Printf("Failed to print queue command result: %s.\n", err) | ||
} | ||
_, err = fmt.Fprintf(writer, "%-25s%-8d%-8d%-8d%-8d\n", | ||
queue.Name, queue.Spec.Weight, queue.Status.Pending, queue.Status.Running, queue.Status.Unknown) | ||
if err != nil { | ||
fmt.Printf("Failed to print queue command result: %s.\n", err) | ||
} | ||
} |
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