Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

USHIFT-4537: introduce topolvm to upstream #4736

Open
wants to merge 3 commits into
base: main
Choose a base branch
from

Conversation

eslutsky
Copy link
Contributor

Which issue(s) this PR addresses:

Closes #

@openshift-ci openshift-ci bot requested review from agullon and dhensel-rh March 26, 2025 15:31
Copy link
Contributor

openshift-ci bot commented Mar 26, 2025

[APPROVALNOTIFIER] This PR is APPROVED

This pull-request has been approved by: eslutsky

The full list of commands accepted by this bot can be found here.

The pull request process is described here

Needs approval from an approver in each of these files:

Approvers can indicate their approval by writing /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment

@openshift-ci openshift-ci bot added the approved Indicates a PR has been approved by an approver from all required OWNERS files. label Mar 26, 2025
@eslutsky eslutsky force-pushed the okd-storage branch 3 times, most recently from 4251f49 to 1035b88 Compare March 31, 2025 10:30
@eslutsky eslutsky changed the title shift-week: upstream introduce storage USHIFT-4537: upstream introduce storage Apr 1, 2025
@openshift-ci-robot openshift-ci-robot added the jira/valid-reference Indicates that this PR references a valid Jira ticket of any type. label Apr 1, 2025
@openshift-ci-robot
Copy link

openshift-ci-robot commented Apr 1, 2025

@eslutsky: This pull request references USHIFT-4537 which is a valid jira issue.

Warning: The referenced jira issue has an invalid target version for the target branch this PR targets: expected the story to target the "4.19.0" version, but no target version was set.

In response to this:

Which issue(s) this PR addresses:

Closes #

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the openshift-eng/jira-lifecycle-plugin repository.

@eslutsky eslutsky changed the title USHIFT-4537: upstream introduce storage USHIFT-4537: introduce topolvm to upstream Apr 1, 2025
@eslutsky eslutsky force-pushed the okd-storage branch 5 times, most recently from 4aa0478 to 46439f4 Compare April 2, 2025 12:19
@eslutsky
Copy link
Contributor Author

eslutsky commented Apr 3, 2025

/retest

Copy link
Contributor

openshift-ci bot commented Apr 3, 2025

@eslutsky: The following tests failed, say /retest to rerun all failed tests or /retest-required to rerun all mandatory failed tests:

Test name Commit Details Required Rerun command
ci/prow/e2e-aws-tests-bootc-periodic-arm effa5ca link true /test e2e-aws-tests-bootc-periodic-arm
ci/prow/e2e-aws-tests-bootc-periodic effa5ca link true /test e2e-aws-tests-bootc-periodic

Full PR test history. Your PR dashboard.

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. I understand the commands that are listed here.

Comment on lines +480 to +488
%if %{with_topolvm}
# topolvm
install -d -m755 %{buildroot}/%{_prefix}/lib/microshift/manifests.d/001-microshift-topolvm
# Copy all the manifests except the arch specific ones
install -p -m644 assets/optional/topolvm/0* %{buildroot}/%{_prefix}/lib/microshift/manifests.d/001-microshift-topolvm
install -p -m644 assets/optional/topolvm/kustomization.yaml %{buildroot}/%{_prefix}/lib/microshift/manifests.d/001-microshift-topolvm
install -p -m644 packaging/topolvm/00-disableDefaultCSI.yaml %{buildroot}%{_sysconfdir}/microshift/config.d/01-disableDefaultCSI.yaml

%endif
Copy link
Member

Choose a reason for hiding this comment

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

Suggested change
%if %{with_topolvm}
# topolvm
install -d -m755 %{buildroot}/%{_prefix}/lib/microshift/manifests.d/001-microshift-topolvm
# Copy all the manifests except the arch specific ones
install -p -m644 assets/optional/topolvm/0* %{buildroot}/%{_prefix}/lib/microshift/manifests.d/001-microshift-topolvm
install -p -m644 assets/optional/topolvm/kustomization.yaml %{buildroot}/%{_prefix}/lib/microshift/manifests.d/001-microshift-topolvm
install -p -m644 packaging/topolvm/00-disableDefaultCSI.yaml %{buildroot}%{_sysconfdir}/microshift/config.d/01-disableDefaultCSI.yaml
%endif
%if %{with_topolvm}
# topolvm
install -d -m755 %{buildroot}/%{_prefix}/lib/microshift/manifests.d/001-microshift-topolvm
install -p -m644 assets/optional/topolvm/*.yaml %{buildroot}/%{_prefix}/lib/microshift/manifests.d/001-microshift-topolvm
install -p -m644 packaging/topolvm/00-disableDefaultCSI.yaml %{buildroot}%{_sysconfdir}/microshift/config.d/01-disableDefaultCSI.yaml
%endif

Comment on lines +5 to +13
1. prepare the LVM backend on the host (example only)
```bash
truncate --size=20G /tmp/lvmdisk
losetup -f /tmp/lvmdisk
device_name=$(losetup -j /tmp/lvmdisk | cut -d: -f1)
vgcreate -f -y myvg1 ${device_name}
lvcreate -T myvg1/thinpool -L 6G
```
1. build microshift with upstream TopoLVM Support
Copy link
Member

Choose a reason for hiding this comment

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

I think we could change the order of these two steps: first build, then prepare lvm, then run the container

```


1. run microshift in OKD and wait for it to be ready
Copy link
Member

Choose a reason for hiding this comment

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

Suggested change
1. run microshift in OKD and wait for it to be ready
1. Run microshift in container and wait for it to be ready

```bash
sudo podman run --privileged --rm --name microshift-okd \
--volume /dev:/dev:rslave \
--hostname 127.0.0.1.nip.io \
Copy link
Member

Choose a reason for hiding this comment

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

I'm not sure if it's best course of action to use nip.io. Maybe in future we could use container's IP

```
1. build microshift with upstream TopoLVM Support
```bash
cd ~/microshift && sudo podman build --env WITH_FLANNEL=1 --env WITH_TOPOLVM=1 -f okd/src/microshift-okd-multi-build.Containerfile . -t microshift-okd
Copy link
Member

Choose a reason for hiding this comment

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

I don't like assuming that microshift repo is checked out to ~/microshift (especially that this guide does not contain git clone)

Suggested change
cd ~/microshift && sudo podman build --env WITH_FLANNEL=1 --env WITH_TOPOLVM=1 -f okd/src/microshift-okd-multi-build.Containerfile . -t microshift-okd
sudo podman build --env WITH_FLANNEL=1 --env WITH_TOPOLVM=1 -f okd/src/microshift-okd-multi-build.Containerfile . -t microshift-okd

chmod 700 /tmp/get_helm.sh
/tmp/get_helm.sh

# TODO: install HELM
Copy link
Member

Choose a reason for hiding this comment

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

Is this still valid TODO?


# patch replicas to 1
# shellcheck disable=SC2016
yq e '. | select(.kind == "Deployment") as $deployment | select(.kind != "Deployment") as $other | $deployment.spec.replicas = 1 | ($deployment, $other)' -i manifests/topolvm.yaml
Copy link
Member

Choose a reason for hiding this comment

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

I think this also works

Suggested change
yq e '. | select(.kind == "Deployment") as $deployment | select(.kind != "Deployment") as $other | $deployment.spec.replicas = 1 | ($deployment, $other)' -i manifests/topolvm.yaml
yq 'select(.kind == "Deployment").spec.replicas = 1' -i manifests/topolvm.yaml

Comment on lines +7 to +11
truncate --size=20G /tmp/lvmdisk
losetup -f /tmp/lvmdisk
device_name=$(losetup -j /tmp/lvmdisk | cut -d: -f1)
vgcreate -f -y myvg1 ${device_name}
lvcreate -T myvg1/thinpool -L 6G
Copy link
Member

Choose a reason for hiding this comment

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

Suggested change
truncate --size=20G /tmp/lvmdisk
losetup -f /tmp/lvmdisk
device_name=$(losetup -j /tmp/lvmdisk | cut -d: -f1)
vgcreate -f -y myvg1 ${device_name}
lvcreate -T myvg1/thinpool -L 6G
truncate --size=20G /tmp/lvmdisk
sudo losetup -f /tmp/lvmdisk
device_name=$(losetup -j /tmp/lvmdisk | cut -d: -f1)
sudo vgcreate -f -y myvg1 ${device_name}
sudo lvcreate -T myvg1/thinpool -L 6G

Comment on lines +56 to +58
fi && if [ -n "$WITH_TOPOLVM" ] ; then \
dnf install -y microshift-topolvm ; \
systemctl disable openvswitch ; \
Copy link
Member

Choose a reason for hiding this comment

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

Suggested change
fi && if [ -n "$WITH_TOPOLVM" ] ; then \
dnf install -y microshift-topolvm ; \
systemctl disable openvswitch ; \
fi && \
if [ -n "$WITH_TOPOLVM" ] ; then \
dnf install -y microshift-topolvm ; \

Copy link
Member

Choose a reason for hiding this comment

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

Do we need these files here? Are they any different from the ones in the assets/optional/topolvm?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
approved Indicates a PR has been approved by an approver from all required OWNERS files. jira/valid-reference Indicates that this PR references a valid Jira ticket of any type.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants