@@ -38,6 +38,26 @@ func NewRefVarTransformer(vars map[string]string) (Transformer, error) {
38
38
GroupVersionKind : & schema.GroupVersionKind {Kind : "Job" },
39
39
Path : []string {"spec" , "template" , "spec" , "containers" , "command" },
40
40
},
41
+ {
42
+ GroupVersionKind : & schema.GroupVersionKind {Kind : "StatefulSet" },
43
+ Path : []string {"spec" , "template" , "spec" , "initContainers" , "args" },
44
+ },
45
+ {
46
+ GroupVersionKind : & schema.GroupVersionKind {Kind : "StatefulSet" },
47
+ Path : []string {"spec" , "template" , "spec" , "containers" , "args" },
48
+ },
49
+ {
50
+ GroupVersionKind : & schema.GroupVersionKind {Kind : "Deployment" },
51
+ Path : []string {"spec" , "template" , "spec" , "initContainers" , "args" },
52
+ },
53
+ {
54
+ GroupVersionKind : & schema.GroupVersionKind {Kind : "Deployment" },
55
+ Path : []string {"spec" , "template" , "spec" , "containers" , "args" },
56
+ },
57
+ {
58
+ GroupVersionKind : & schema.GroupVersionKind {Kind : "Job" },
59
+ Path : []string {"spec" , "template" , "spec" , "containers" , "args" },
60
+ },
41
61
},
42
62
}, nil
43
63
}
0 commit comments