-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
64 lines (52 loc) · 1.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
package main
import (
"fmt"
"io/ioutil"
"log"
"os"
"gopkg.in/yaml.v2"
"github.com/concourse/fly/template"
flags "github.com/jessevdk/go-flags"
"github.com/pkg/errors"
)
var opts struct {
YamlFile string `short:"y" long:"yaml" description:"YAML file with the placeholders" required:"true"`
VarsFrom []string `short:"f" long:"vars-from" description:"Load placeholders from this file"`
}
func init() {
args, err := flags.Parse(&opts)
if err != nil {
log.Printf("&v\n", args)
os.Exit(1)
}
}
func main() {
configFile, err := ioutil.ReadFile(opts.YamlFile)
if err != nil {
log.Println(errors.Wrap(err, "Unable to read yaml file").Error())
os.Exit(1)
}
var resultVars template.Variables
for _, path := range opts.VarsFrom {
fileVars, err := template.LoadVariablesFromFile(path)
if err != nil {
log.Println(errors.Wrap(err, "Unable to read plaheholder from "+path).Error())
os.Exit(1)
}
resultVars = resultVars.Merge(fileVars)
}
configFile, err = template.Evaluate(configFile, resultVars)
if err != nil {
log.Println(errors.Wrap(err, "Unable to replace placeholders").Error())
os.Exit(1)
}
var configStructure interface{}
err = yaml.Unmarshal(configFile, &configStructure)
if err != nil {
fmt.Println(errors.Wrap(err, "Unable to replace placeholders").Error())
os.Exit(1)
}
parsedYaml, _ := yaml.Marshal(configStructure)
fmt.Println("---")
fmt.Println(string(parsedYaml))
}