We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 35cb19e commit d086a8bCopy full SHA for d086a8b
plugins/kubernetes/ir.go
@@ -18,3 +18,15 @@ func (n *Application) Name() string {
18
func (n *Application) String() string {
19
return ir.PrettyPrintNamespace(n.AppName, "KubeApp", n.Edges, n.Nodes)
20
}
21
+
22
+// Implements ir.ArtifactGenerator
23
+func (n *Application) GenerateArtifacts(dir string) error {
24
+ nodes := ir.Filter[ir.ArtifactGenerator](n.Nodes)
25
+ for _, node := range nodes {
26
+ err := node.GenerateArtifacts(dir)
27
+ if err != nil {
28
+ return err
29
+ }
30
31
+ return nil
32
+}
0 commit comments