Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cmd/machine-config-operator/bootstrap.go
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ func runBootstrapCmd(cmd *cobra.Command, args []string) {
MachineOSContent: bootstrapOpts.oscontentImage,
Etcd: bootstrapOpts.etcdImage,
SetupEtcdEnv: bootstrapOpts.setupEtcdEnvImage,
InfraImage: bootstrapOpts.infraImage,
InfraImage: "quay.io/openshift/origin-pod:v4.0",
}

if err := operator.RenderBootstrap(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,6 @@ data:
"machineConfigServer": "docker.io/openshift/origin-machine-config-server:v4.0.0",
"etcd": "quay.io/coreos/etcd:v3.3.10",
"setupEtcdEnv": "registry.svc.ci.openshift.org/openshift/origin-v4.0:setup-etcd-environment",
"dummyImage": "quay.io/tectonicshift/pod:42",
"infraImage": "quay.io/openshift/origin-pod:v4.0"
}
2 changes: 1 addition & 1 deletion install/image-references
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ spec:
- name: pod
from:
kind: DockerImage
name: quay.io/openshift/pod:v4.0
name: quay.io/tectonicshift/pod:42
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

what is this image?

we need to use the pod image from the release payload.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This image doesn't exist and we aren't actually using it - we're really using the openshift/pod:v4.0 image still. The reason to add this new dummy image is to help "ratchet" the change here so we can land the installer PR.

Yes, it is very confusing...

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

- name: setup-etcd-environment
from:
kind: DockerImage
Expand Down