@@ -5,7 +5,7 @@ Licensed under the Apache License, Version 2.0 (the "License");
5
5
you may not use this file except in compliance with the License.
6
6
You may obtain a copy of the License at
7
7
8
- http://www.apache.org/licenses/LICENSE-2.0
8
+ http://www.apache.org/licenses/LICENSE-2.0
9
9
10
10
Unless required by applicable law or agreed to in writing, software
11
11
distributed under the License is distributed on an "AS IS" BASIS,
@@ -16,122 +16,24 @@ limitations under the License.
16
16
package cmd
17
17
18
18
import (
19
- "fmt"
20
- "os"
21
- "path/filepath"
22
- "strconv"
23
-
24
- "github.com/DataReply/korgi/pkg/utils"
25
19
"github.com/spf13/cobra"
20
+ "os"
26
21
)
27
22
28
- func templateApp (app string , namespace string , inputFilePath string , appGroupDir string , lint bool ) error {
29
-
30
- targeAppDir := utils .ConcatDirs (appGroupDir , app )
31
-
32
- err := os .MkdirAll (targeAppDir , os .ModePerm )
33
- if err != nil {
34
- return fmt .Errorf ("creating app dir: %w" , err )
35
- }
36
- if lint {
37
- err = helmfileEngine .Lint (app , inputFilePath )
38
- if err != nil {
39
- return err
40
- }
41
- }
42
- err = helmfileEngine .Template (app , namespace , inputFilePath , targeAppDir )
43
- if err != nil {
44
- return err
45
- }
46
-
47
- return nil
48
- }
49
-
50
- func getFinalOutputDir (outputDir string , isolated bool ) string {
51
- if isolated {
52
- return utils .ConcatDirs (outputDir , strconv .FormatInt (execTime .UTC ().Unix (), 10 ))
53
- }
54
- return outputDir
55
- }
56
-
57
- func applyAppGroup (group string , namespace string , outputDir string , appFilter string , lint bool , dryRun bool , askUser bool ) error {
58
-
59
- log .V (0 ).Info ("applying" , "group" , group , "namespace" , namespace , "app" , appFilter , "lint" , lint , "dry" , dryRun , "ask" , askUser )
60
- namespaceDir := utils .GetNamespaceDir (namespace )
61
- if _ , err := os .Stat (namespaceDir ); os .IsNotExist (err ) {
62
- return fmt .Errorf ("%s directory does not exist" , namespaceDir )
63
- }
64
-
65
- appGroupDir := utils .ConcatDirs (namespaceDir , group )
66
-
67
- targetAppGroupDir := utils .ConcatDirs (outputDir , namespace , group )
68
-
69
- err := os .MkdirAll (targetAppGroupDir , os .ModePerm )
70
- if err != nil {
71
- return fmt .Errorf ("creating group directory: %w" , err )
72
- }
73
-
74
- matches , err := filepath .Glob (appGroupDir + "/*" )
75
- if err != nil {
76
- return fmt .Errorf ("listing group directory: %w" , err )
77
- }
78
-
79
- for _ , matchedAppFile := range matches {
80
- appFile := filepath .Base (matchedAppFile )
81
- if appFile != "_app_group.yaml" {
82
- app := utils .SanitzeAppName (appFile )
83
- if appFilter != "" {
84
-
85
- if app != appFilter {
86
- continue
87
- }
88
- }
89
-
90
- err = templateApp (app , namespace , matchedAppFile , targetAppGroupDir , lint )
91
- if err != nil {
92
- return fmt .Errorf ("templating app: %w" , err )
93
- }
94
-
95
- }
96
-
97
- }
98
- if ! dryRun {
99
- if appFilter != "" {
100
- err = kappEngine .DeployApp (group + "-" + appFilter , utils .ConcatDirs (targetAppGroupDir , appFilter ), namespace )
101
- if err != nil {
102
- return fmt .Errorf ("running kapp deploy with appFilter: %w" , err )
103
- }
104
- return nil
105
- }
106
-
107
- err = kappEngine .DeployGroup (group , targetAppGroupDir , namespace )
108
- if err != nil {
109
- return fmt .Errorf ("running kapp deploy: %w" , err )
110
- }
111
- }
112
-
113
- return nil
114
- }
115
-
116
23
// applyCmd represents the apply command
117
24
var applyCmd = & cobra.Command {
118
- Use : "apply" ,
119
- Short : "Apply resources to k8s" ,
120
- Args : cobra .ExactArgs (1 ),
25
+ Use : "apply" ,
26
+ Short : "Apply resources to k8s" ,
27
+ Args : cobra .ExactArgs (1 ),
28
+ TraverseChildren : true ,
121
29
RunE : func (cmd * cobra.Command , args []string ) error {
122
30
123
31
namespace , _ := cmd .Flags ().GetString ("namespace" )
124
-
125
32
lint , _ := cmd .Flags ().GetBool ("lint" )
126
-
127
33
dryRun , _ := cmd .Flags ().GetBool ("dry-run" )
128
-
129
34
appFilter , _ := cmd .Flags ().GetString ("app" )
130
-
131
35
outputDir , _ := cmd .Flags ().GetString ("output-dir" )
132
-
133
36
isolated , _ := cmd .Flags ().GetBool ("isolate" )
134
-
135
37
askForConfirmation , _ := cmd .Flags ().GetBool ("ask-for-confirmation" )
136
38
137
39
if ! askForConfirmation {
@@ -144,21 +46,19 @@ var applyCmd = &cobra.Command{
144
46
}
145
47
}
146
48
147
- err := applyAppGroup (args [0 ], namespace , getFinalOutputDir (outputDir , isolated ), appFilter , lint , dryRun , askForConfirmation )
49
+ err := applyAppGroup (args [0 ], namespace , getFinalOutputDir (outputDir , isolated ), appFilter , lint , dryRun , defaultMatcher , askForConfirmation )
148
50
if err != nil {
149
51
return err
150
52
}
151
-
152
53
return nil
153
54
},
154
55
}
155
56
156
57
func init () {
157
58
rootCmd .AddCommand (applyCmd )
158
-
159
- applyCmd .Flags ().BoolP ("lint" , "l" , false , "Lint temlate" )
160
- applyCmd .Flags ().BoolP ("dry-run" , "d" , false , "Dry Run" )
161
- applyCmd .Flags ().StringP ("namespace" , "n" , "" , "Target namespace" )
59
+ applyCmd .PersistentFlags ().BoolP ("lint" , "l" , false , "Lint temlate" )
60
+ applyCmd .PersistentFlags ().BoolP ("dry-run" , "d" , false , "Dry Run" )
61
+ applyCmd .PersistentFlags ().StringP ("namespace" , "n" , "" , "Target namespace" )
162
62
applyCmd .MarkFlagRequired ("namespace" )
163
63
164
64
}
0 commit comments