Skip to content
Closed
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
4 changes: 3 additions & 1 deletion data/data/bootstrap/files/usr/local/bin/bootkube.sh.template
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ MACHINE_CONFIG_ETCD_IMAGE=$(podman run --quiet --rm ${release} image etcd)
MACHINE_CONFIG_SETUP_ETCD_ENV_IMAGE=$(podman run --quiet --rm ${release} image setup-etcd-environment)
MACHINE_CONFIG_KUBE_CLIENT_AGENT_IMAGE=$(podman run --quiet --rm ${release} image kube-client-agent)
MACHINE_CONFIG_INFRA_IMAGE=$(podman run --quiet --rm ${release} image pod)
MACHINE_CONFIG_ETCD_QUORUM_GUARD_IMAGE=$(podman run --quiet --rm ${release} image etcd-quorum-guard)

KUBE_ETCD_SIGNER_SERVER_IMAGE=$(podman run --quiet --rm ${release} image kube-etcd-signer-server)

Expand Down Expand Up @@ -187,7 +188,8 @@ then
--machine-config-server-image=${MACHINE_CONFIG_SERVER_IMAGE} \
--machine-config-daemon-image=${MACHINE_CONFIG_DAEMON_IMAGE} \
--machine-config-oscontent-image=${MACHINE_CONFIG_OSCONTENT} \
--infra-image=${MACHINE_CONFIG_INFRA_IMAGE}
--infra-image=${MACHINE_CONFIG_INFRA_IMAGE} \
--etcd-quorum-guard-image=${MACHINE_CONFIG_ETCD_QUORUM_GUARD_IMAGE}

# Bootstrap MachineConfigController uses /etc/mcc/bootstrap/manifests/ dir to
# 1. read the controller config rendered by MachineConfigOperator
Expand Down