-
Notifications
You must be signed in to change notification settings - Fork 0
ASB-2846 Add air-gapped installation instructions #63
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
base: master
Are you sure you want to change the base?
Conversation
echo "Working through Python dependencies..." | ||
sudo dpkg -i /var/cache/apt/archives/${service}/*.deb | ||
) | ||
else |
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.
This is one of the bits that I kept fighting with. I was able to isolate the ordering and the fact that we need to install all the packages twice to get python3 to complete it's installation.
libdbusmenu-gtk3-4 | ||
python3 | ||
libappindicator1 | ||
) |
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.
This is the other bit I was fighting with. Once these virtual packages + python3 are installed, the rest of the dependencies will install as intended.
| sed 's|libgcc1|libgcc-s1|' \ | ||
| sed 's|default-dbus-session-bus|dbus-user-session|' \ | ||
| sed 's|dbus-session-bus|dbus|' \ | ||
| sed 's|^gsettings-backend$||' \ |
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.
This is the last bit I fought with. We need to swap out the virtual and package names, mainly for axon-dash-pdf, if I'm not mistaken. But once this is done, we'll download the correct package and upon installation, axon-dash-pdf will have the required dependencies.
Is this only for Cassandra air-gapped installation? Are we going to do the same for Kafka? |
Thanks for catching that @brainJamStark ! I've included instructions for Kafka (but will test them tomorrow). I've also changed the wording to match support for both Cassandra and Kafka agents. I've also made a few changes as requested by Richard over a brief live review today, mainly:
|
No description provided.