Skip to content

Commit

Permalink
feat(catalog): add configmap server image config flag
Browse files Browse the repository at this point in the history
this is the image that will be used when generating pods for
configmaps
  • Loading branch information
ecordell committed Nov 8, 2018
1 parent 5e0175f commit cd04ec3
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions cmd/catalog/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ import (
const (
defaultWakeupInterval = 15 * time.Minute
defaultCatalogNamespace = "tectonic-system"
defaultConfigMapServerImage = "quay.io/operatorframework/configmap-operator-registry:latest"
)

// config flags defined globally so that they appear on the test binary as well
Expand All @@ -34,6 +35,9 @@ var (
catalogNamespace = flag.String(
"namespace", defaultCatalogNamespace, "namespace where catalog will run and install catalog resources")

configmapServerImage = flag.String(
"configmapServerImage", defaultConfigMapServerImage, "the image to use for serving the operator registry api for a configmap")

debug = flag.Bool(
"debug", false, "use debug log level")

Expand Down

0 comments on commit cd04ec3

Please sign in to comment.