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
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ COPY ./bootc-images/$USHIFT_RPM_REPO_NAME.repo ./bootc-images/microshift-centos9
# Print repository configuration contents.
# Install MicroShift and cleanup.
RUN dnf repoinfo --enabled && \
dnf install -y firewalld "microshift-{{ .Env.SOURCE_VERSION }}" "microshift-release-info-{{ .Env.SOURCE_VERSION }}" && \
dnf install -y firewalld systemd-resolved \
"microshift-{{ .Env.SOURCE_VERSION }}" "microshift-release-info-{{ .Env.SOURCE_VERSION }}" && \
systemctl enable microshift && \
rm -vf /etc/yum.repos.d/microshift-*.repo && \
rm -rvf $USHIFT_RPM_REPO_PATH && \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ COPY ./bootc-images/$USHIFT_RPM_REPO_NAME.repo ./bootc-images/microshift-fast-da
# Print repository configuration contents.
# Install MicroShift, test agent and cleanup.
RUN dnf repoinfo --enabled && \
dnf install -y firewalld "microshift-{{ .Env.SOURCE_VERSION }}" "microshift-release-info-{{ .Env.SOURCE_VERSION }}" && \
dnf install -y firewalld systemd-resolved \
"microshift-{{ .Env.SOURCE_VERSION }}" "microshift-release-info-{{ .Env.SOURCE_VERSION }}" && \
systemctl enable microshift microshift-test-agent && \
rm -vf /etc/yum.repos.d/microshift-*.repo && \
rm -rvf $USHIFT_RPM_REPO_PATH && \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,10 @@ COPY ./bootc-images/$USHIFT_RPM_REPO_NAME.repo ./bootc-images/microshift-fast-da

# Print repository configuration contents.
# Install MicroShift optional packages and cleanup.
# Make sure that systemd-resolved is installed as it is used in tests.
RUN dnf repoinfo --enabled && \
dnf install -y "microshift-olm-{{ .Env.SOURCE_VERSION }}" \
"microshift-multus-{{ .Env.SOURCE_VERSION }}" \
"microshift-gateway-api-{{ .Env.SOURCE_VERSION }}" \
systemd-resolved && \
"microshift-gateway-api-{{ .Env.SOURCE_VERSION }}" && \
rm -vf /etc/yum.repos.d/microshift-*.repo && \
rm -rvf $USHIFT_RPM_REPO_PATH && \
dnf clean all
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,10 @@ COPY ./bootc-images/$USHIFT_RPM_REPO_NAME.repo ./bootc-images/microshift-centos9

# Print repository configuration contents.
# Install MicroShift optional packages and cleanup.
# Make sure that systemd-resolved is installed as it is used in tests.
RUN dnf repoinfo --enabled && \
dnf install -y "microshift-olm-{{ .Env.SOURCE_VERSION }}" \
"microshift-multus-{{ .Env.SOURCE_VERSION }}" \
"microshift-gateway-api-{{ .Env.SOURCE_VERSION }}" \
systemd-resolved && \
"microshift-gateway-api-{{ .Env.SOURCE_VERSION }}" && \
rm -vf /etc/yum.repos.d/microshift-*.repo && \
rm -rvf $USHIFT_RPM_REPO_PATH && \
dnf clean all