diff --git a/models/source.go b/models/source.go index 4b43f527..b75b48f1 100644 --- a/models/source.go +++ b/models/source.go @@ -5,4 +5,5 @@ const ( SourceConfigFile = "ConfigFile" SourceUI = "UI" SourceTopology = "Topology" + SourcePush = "Push" ) diff --git a/schema/vars.hcl b/schema/vars.hcl index e2fed8d2..2c0ee65e 100644 --- a/schema/vars.hcl +++ b/schema/vars.hcl @@ -8,5 +8,5 @@ enum "source" { # The "Topology" value cannot be dropped as migration drops the enum # and tries to recreate it # TODO: Create new enum, replace usage and delete this one - values = ["KubernetesCRD", "ConfigFile", "UI", "Topology"] + values = ["KubernetesCRD", "ConfigFile", "UI", "Push", "Topology"] }