-
Notifications
You must be signed in to change notification settings - Fork 0
/
sidecars.go
125 lines (119 loc) · 3.33 KB
/
sidecars.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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
package pipeline
import "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
func tektonSidecarFields() map[string]*schema.Schema {
return map[string]*schema.Schema{
"name": {
Type: schema.TypeString,
Description: "Name of the sidecar",
Required: true,
},
"image": {
Type: schema.TypeString,
Description: "Image of the sidecar",
Optional: true,
},
"command": {
Type: schema.TypeList,
Description: "Command to execute in the container",
Optional: true,
Elem: &schema.Schema{
Type: schema.TypeString,
},
},
"args": {
Type: schema.TypeList,
Description: "Arguments to the entrypoint",
Optional: true,
Elem: &schema.Schema{
Type: schema.TypeString,
},
},
"working_dir": {
Type: schema.TypeString,
Description: "Working directory to use when executing the sidecar",
Optional: true,
},
"env": {
Type: schema.TypeList,
Description: "Environment variables to set for the sidecar",
Optional: true,
Elem: &schema.Resource{
Schema: map[string]*schema.Schema{
"name": {
Type: schema.TypeString,
Description: "Name of the environment variable",
Required: true,
},
"value": {
Type: schema.TypeString,
Description: "Value of the environment variable",
Required: true,
},
},
},
},
"volume_mounts": {
Type: schema.TypeList,
Description: "Volume mounts for the sidecar",
Optional: true,
Elem: &schema.Resource{
Schema: map[string]*schema.Schema{
"name": {
Type: schema.TypeString,
Description: "Name of the volume mount",
Required: true,
},
"mount_path": {
Type: schema.TypeString,
Description: "Path to mount the volume",
Required: true,
},
},
},
},
}
}
func expandTektonSidecar(d []interface{}) []interface{} {
if len(d) == 0 || d[0] == nil {
return nil
}
sidecars := make([]interface{}, len(d))
for i, sidecar := range d {
sidecars[i] = expandTektonSidecarElement(sidecar)
}
return sidecars
}
func expandTektonSidecarElement(d interface{}) interface{} {
sidecar := d.(map[string]interface{})
return map[string]interface{}{
"name": sidecar["name"].(string),
"image": sidecar["image"].(string),
"command": sidecar["command"].([]interface{}),
"args": sidecar["args"].([]interface{}),
"working_dir": sidecar["working_dir"].(string),
"env": sidecar["env"].([]interface{}),
"volume_mount": sidecar["volume_mounts"].([]interface{}),
}
}
func flattenTektonSidecar(d []interface{}) []interface{} {
if len(d) == 0 || d[0] == nil {
return nil
}
sidecars := make([]interface{}, len(d))
for i, sidecar := range d {
sidecars[i] = flattenTektonSidecarElement(sidecar)
}
return sidecars
}
func flattenTektonSidecarElement(d interface{}) interface{} {
sidecar := d.(map[string]interface{})
return map[string]interface{}{
"name": sidecar["name"].(string),
"image": sidecar["image"].(string),
"command": sidecar["command"].([]interface{}),
"args": sidecar["args"].([]interface{}),
"working_dir": sidecar["working_dir"].(string),
"env": sidecar["env"].([]interface{}),
"volume_mounts": sidecar["volume_mount"].([]interface{}),
}
}