-
Notifications
You must be signed in to change notification settings - Fork 212
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
base: main
Are you sure you want to change the base?
Conversation
[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 |
Signed-off-by: Evgeny Slutsky <[email protected]>
4251f49
to
1035b88
Compare
Signed-off-by: Evgeny Slutsky <[email protected]>
@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:
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. |
4aa0478
to
46439f4
Compare
Signed-off-by: Evgeny Slutsky <[email protected]>
/retest |
@eslutsky: The following tests failed, say
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. |
%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 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
%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 |
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 |
There was a problem hiding this comment.
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 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
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 \ |
There was a problem hiding this comment.
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 |
There was a problem hiding this comment.
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)
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 |
There was a problem hiding this comment.
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 |
There was a problem hiding this comment.
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
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 |
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 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
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 |
fi && if [ -n "$WITH_TOPOLVM" ] ; then \ | ||
dnf install -y microshift-topolvm ; \ | ||
systemctl disable openvswitch ; \ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
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 ; \ |
There was a problem hiding this comment.
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
?
Which issue(s) this PR addresses:
Closes #