diff --git a/generator/03-syndesis-ui.yml.mustache b/generator/03-syndesis-ui.yml.mustache index b1e571e..b10f05c 100644 --- a/generator/03-syndesis-ui.yml.mustache +++ b/generator/03-syndesis-ui.yml.mustache @@ -154,8 +154,8 @@ "branding": { "logoWhiteBg": "", "logoDarkBg": "", - "iconWhiteBg": "assets/images/product-logo.svg", - "iconDarkBg": "assets/images/product-logo.svg", + "iconWhiteBg": "assets/images/FuseIgniteLogo_Black.svg", + "iconDarkBg": "assets/images/FuseIgniteLogo_White.svg", "appName": "Fuse Ignite", "favicon32": "/favicon-32x32.png", "favicon16": "/favicon-16x16.png", diff --git a/generator/syndesis-template.go b/generator/syndesis-template.go index 523984f..a120f29 100644 --- a/generator/syndesis-template.go +++ b/generator/syndesis-template.go @@ -126,7 +126,6 @@ var productContext = Context{ } var context = syndesisContext -var isProduct bool func init() { flags := installCommand.PersistentFlags() @@ -138,14 +137,14 @@ func init() { flags.BoolVar(&context.Probeless, "probeless", false, "Without probes") flags.StringVar(&context.Tags.Syndesis, "syndesis", "latest", "Syndesis Image tag to use") flags.StringVar(&context.Tags.Atlasmap, "atlasmap", "latest", "Atlasmap image to use") - flags.BoolVar(&isProduct, "product", false, "Generate product templates?") + flags.BoolVar(&context.Productized, "product", false, "Generate product templates?") flags.StringVar(&context.Registry, "registry", "docker.io", "Registry to use for imagestreams") pflag.CommandLine.AddGoFlagSet(flag.CommandLine) } func install(cmd *cobra.Command, args []string) { - if isProduct { + if context.Productized { if err := mergo.MergeWithOverwrite(&context, productContext); err != nil { log.Fatal("Cannot merge in product image names") }