@@ -21,12 +21,17 @@ type Release struct {
21
21
Version string `json:"version"`
22
22
}
23
23
24
+ const (
25
+ stdOutOutput = "stdout"
26
+ )
27
+
24
28
// This program is used to generate Google Kubernetes Engine JSON versions for Renovate custom datasource.
25
29
// Custom datasource docs: https://docs.renovatebot.com/modules/datasource/custom/
26
30
func main () {
27
31
ctx := context .Background ()
28
32
requestedChannel := flag .String ("channel" , "stable" , "Channel to scrape" )
29
- requestedLocation := flag .String ("location" , "us-central-1c" , "GCP location to check versions for (they might differ per location)" )
33
+ requestedLocation := flag .String ("location" , "us-central1-c" , "GCP location to check versions for (they might differ per location)" )
34
+ targetFile := flag .String ("out" , stdOutOutput , "Target file to write the output" )
30
35
flag .Parse ()
31
36
32
37
channel , err := scrapeChannel (ctx , * requestedChannel , * requestedLocation )
@@ -35,12 +40,30 @@ func main() {
35
40
os .Exit (1 )
36
41
}
37
42
38
- encoder := json .NewEncoder (os .Stdout )
43
+ if saveOutput (channel , * targetFile ); err != nil {
44
+ fmt .Println ("Error saving output:" , err )
45
+ os .Exit (1 )
46
+ }
47
+ }
48
+
49
+ func saveOutput (channel Channel , targetFile string ) error {
50
+ var encoder * json.Encoder
51
+ if targetFile == stdOutOutput {
52
+ encoder = json .NewEncoder (os .Stdout )
53
+ } else {
54
+ file , err := os .Create (targetFile )
55
+ if err != nil {
56
+ return fmt .Errorf ("error creating file: %w" , err )
57
+ }
58
+ defer file .Close ()
59
+ encoder = json .NewEncoder (file )
60
+ }
61
+
39
62
encoder .SetIndent ("" , " " )
40
63
if err := encoder .Encode (channel ); err != nil {
41
- fmt .Println ("Error encoding JSON:" , err )
42
- os .Exit (1 )
64
+ return fmt .Errorf ("error encoding JSON: %w" , err )
43
65
}
66
+ return nil
44
67
}
45
68
46
69
func scrapeChannel (ctx context.Context , channel string , location string ) (Channel , error ) {
0 commit comments