Skip to content

Commit

Permalink
DO NOT UPSTREAM: use quay.io/multi-arch URLs
Browse files Browse the repository at this point in the history
  • Loading branch information
yselkowitz committed Feb 13, 2020
1 parent b3dfd5e commit f0abcff
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion internal/scaffold/ansible/build_dockerfile.go
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ func (b *BuildDockerfile) GetInput() (input.Input, error) {
return b.Input, nil
}

const buildDockerfileAnsibleTmpl = `FROM quay.io/operator-framework/ansible-operator:[[.ImageTag]]
const buildDockerfileAnsibleTmpl = `FROM quay.io/multi-arch/operator-framework-ansible-operator:[[.ImageTag]]
COPY watches.yaml ${HOME}/watches.yaml
Expand Down
2 changes: 1 addition & 1 deletion internal/scaffold/helm/dockerfile.go
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ func (d *Dockerfile) GetInput() (input.Input, error) {
return d.Input, nil
}

const dockerFileHelmTmpl = `FROM quay.io/operator-framework/helm-operator:{{.ImageTag}}
const dockerFileHelmTmpl = `FROM quay.io/multi-arch/operator-framework-helm-operator:{{.ImageTag}}
COPY watches.yaml ${HOME}/watches.yaml
COPY {{.HelmChartsDir}}/ ${HOME}/{{.HelmChartsDir}}/
Expand Down
2 changes: 1 addition & 1 deletion internal/scorecard/interfaces.go
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ func setConfigDefaults(config *scplugins.BasicAndOLMPluginConfig, kubeconfig str
config.InitTimeout = 60
}
if config.ProxyImage == "" {
config.ProxyImage = fmt.Sprintf("quay.io/operator-framework/scorecard-proxy:%s", strings.TrimSuffix(version.Version, "+git"))
config.ProxyImage = fmt.Sprintf("quay.io/multi-arch/operator-framework-scorecard-proxy:%s", strings.TrimSuffix(version.Version, "+git"))
}
if config.ProxyPullPolicy == "" {
config.ProxyPullPolicy = v1.PullAlways
Expand Down

0 comments on commit f0abcff

Please sign in to comment.