You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: cmd/list_metadata.go
+31-1
Original file line number
Diff line number
Diff line change
@@ -41,6 +41,10 @@ var listMetadataCmd = &cobra.Command{
41
41
funcinit() {
42
42
fl.AddCommonListFlags(listMetadataCmd)
43
43
44
+
// Add template and function processing flags
45
+
listMetadataCmd.PersistentFlags().Bool("process-templates", true, "Enable/disable Go template processing in Atmos stack manifests when executing the command")
46
+
listMetadataCmd.PersistentFlags().Bool("process-functions", true, "Enable/disable YAML functions processing in Atmos stack manifests when executing the command")
Copy file name to clipboardexpand all lines: cmd/list_settings.go
+31-1
Original file line number
Diff line number
Diff line change
@@ -41,6 +41,10 @@ var listSettingsCmd = &cobra.Command{
41
41
funcinit() {
42
42
fl.AddCommonListFlags(listSettingsCmd)
43
43
44
+
// Add template and function processing flags
45
+
listSettingsCmd.PersistentFlags().Bool("process-templates", true, "Enable/disable Go template processing in Atmos stack manifests when executing the command")
46
+
listSettingsCmd.PersistentFlags().Bool("process-functions", true, "Enable/disable YAML functions processing in Atmos stack manifests when executing the command")
listValuesCmd.PersistentFlags().Bool("vars", false, "Show only vars (equivalent to `--query .vars`)")
121
+
listValuesCmd.PersistentFlags().Bool("process-templates", true, "Enable/disable Go template processing in Atmos stack manifests when executing the command")
122
+
listValuesCmd.PersistentFlags().Bool("process-functions", true, "Enable/disable YAML functions processing in Atmos stack manifests when executing the command")
listVarsCmd.PersistentFlags().Bool("process-templates", true, "Enable/disable Go template processing in Atmos stack manifests when executing the command")
133
+
listVarsCmd.PersistentFlags().Bool("process-functions", true, "Enable/disable YAML functions processing in Atmos stack manifests when executing the command")
0 commit comments