-
Notifications
You must be signed in to change notification settings - Fork 971
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into feature/admission_job
- Loading branch information
Showing
5 changed files
with
120 additions
and
20 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
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 @@ | ||
package job | ||
|
||
import ( | ||
"fmt" | ||
"io" | ||
"os" | ||
"strings" | ||
|
||
"github.com/spf13/cobra" | ||
|
||
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" | ||
|
||
"volcano.sh/volcano/pkg/apis/batch/v1alpha1" | ||
"volcano.sh/volcano/pkg/client/clientset/versioned" | ||
) | ||
|
||
type viewFlags struct { | ||
commonFlags | ||
|
||
Namespace string | ||
JobName string | ||
} | ||
|
||
var viewJobFlags = &viewFlags{} | ||
|
||
func InitViewFlags(cmd *cobra.Command) { | ||
initFlags(cmd, &viewJobFlags.commonFlags) | ||
|
||
cmd.Flags().StringVarP(&viewJobFlags.Namespace, "namespace", "N", "default", "the namespace of job") | ||
cmd.Flags().StringVarP(&viewJobFlags.JobName, "name", "n", "", "the name of job") | ||
} | ||
|
||
func ViewJob() error { | ||
config, err := buildConfig(viewJobFlags.Master, viewJobFlags.Kubeconfig) | ||
if err != nil { | ||
return err | ||
} | ||
if viewJobFlags.JobName == "" { | ||
err := fmt.Errorf("job name (specified by --name or -n) is mandaorty to view a particular job") | ||
return err | ||
} | ||
|
||
jobClient := versioned.NewForConfigOrDie(config) | ||
job, err := jobClient.BatchV1alpha1().Jobs(viewJobFlags.Namespace).Get(viewJobFlags.JobName, metav1.GetOptions{}) | ||
if err != nil { | ||
return err | ||
} | ||
if job == nil { | ||
fmt.Printf("No resources found\n") | ||
return nil | ||
} | ||
PrintJob(job, os.Stdout) | ||
|
||
return nil | ||
} | ||
|
||
func PrintJob(job *v1alpha1.Job, writer io.Writer) { | ||
replicas := int32(0) | ||
for _, ts := range job.Spec.Tasks { | ||
replicas += ts.Replicas | ||
} | ||
lines := []string{ | ||
fmt.Sprintf("%s:\t\t%s", Name, job.Name), | ||
fmt.Sprintf("%s:\t%s", Creation, job.CreationTimestamp.Format("2006-01-02 15:04:05")), | ||
fmt.Sprintf("%s:\t%d", Replicas, replicas), | ||
fmt.Sprintf("%s:\t\t%d", Min, job.Status.MinAvailable), | ||
fmt.Sprintf("%s:\t%s", Scheduler, job.Spec.SchedulerName), | ||
"Status", | ||
fmt.Sprintf(" %s:\t%s", Phase, job.Status.State.Phase), | ||
fmt.Sprintf(" %s:\t%d", Version, job.Status.Version), | ||
fmt.Sprintf(" %s:\t%d", RetryCount, job.Status.RetryCount), | ||
fmt.Sprintf(" %s:\t%d", Pending, job.Status.Pending), | ||
fmt.Sprintf(" %s:\t%d", Running, job.Status.Running), | ||
fmt.Sprintf(" %s:\t%d", Succeeded, job.Status.Succeeded), | ||
fmt.Sprintf(" %s:\t%d", Failed, job.Status.Failed), | ||
fmt.Sprintf(" %s:\t%d", Terminating, job.Status.Terminating), | ||
} | ||
_, err := fmt.Fprint(writer, strings.Join(lines, "\n"), "\n") | ||
if err != nil { | ||
fmt.Printf("Failed to print view command result: %s.\n", err) | ||
} | ||
} |