forked from kubernetes/test-infra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
100 lines (82 loc) · 2.41 KB
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
/*
Copyright 2017 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 (
"errors"
"flag"
"fmt"
"io/ioutil"
"os"
"github.com/sirupsen/logrus"
v1 "k8s.io/api/core/v1"
"sigs.k8s.io/yaml"
prowapi "k8s.io/test-infra/prow/apis/prowjobs/v1"
"k8s.io/test-infra/prow/pod-utils/decorate"
)
type options struct {
prowJobPath string
buildID string
}
func (o *options) Validate() error {
if o.prowJobPath == "" {
return errors.New("required flag --prow-job was unset")
}
return nil
}
func gatherOptions() options {
o := options{}
flag.StringVar(&o.prowJobPath, "prow-job", "", "ProwJob to decorate, - for stdin.")
flag.StringVar(&o.buildID, "build-id", "", "Build ID for the job run.")
flag.Parse()
return o
}
func main() {
o := gatherOptions()
if err := o.Validate(); err != nil {
logrus.Fatalf("Invalid options: %v", err)
}
var rawJob []byte
if o.prowJobPath == "-" {
raw, err := ioutil.ReadAll(os.Stdin)
if err != nil {
logrus.WithError(err).Fatal("Could not read ProwJob YAML from stdin.")
}
rawJob = raw
} else {
raw, err := ioutil.ReadFile(o.prowJobPath)
if err != nil {
logrus.WithError(err).Fatal("Could not open ProwJob YAML.")
}
rawJob = raw
}
var job prowapi.ProwJob
if err := yaml.Unmarshal(rawJob, &job); err != nil {
logrus.WithError(err).Fatal("Could not unmarshal ProwJob YAML.")
}
if o.buildID == "" && job.Status.BuildID != "" {
o.buildID = job.Status.BuildID
}
if o.buildID == "" {
logrus.Warning("No BuildID found in ProwJob status or given with --build-id, GCS interaction will be poor.")
}
pod, err := decorate.ProwJobToPod(job, o.buildID)
if err != nil {
logrus.WithError(err).Fatal("Could not decorate PodSpec.")
}
pod.GetObjectKind().SetGroupVersionKind(v1.SchemeGroupVersion.WithKind("Pod"))
podYAML, err := yaml.Marshal(pod)
if err != nil {
logrus.WithError(err).Fatal("Could not marshal Pod YAML.")
}
fmt.Println(string(podYAML))
}