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

chore: update console FAQ + add amd64 cpu support #399

Merged
merged 3 commits into from
Oct 8, 2024
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 @@ -283,12 +283,7 @@ export const DeploymentLeaseShell: React.FunctionComponent<Props> = ({ leases })
<ViewPanel stickToBottom className="overflow-hidden">
{isConnectionClosed && (
<Alert variant="warning" className="rounded-none">
The connection to your Akash Console Shell was lost. (
<Link href={UrlService.faq("shell-lost")} target="_blank" className="inline-flex items-center space-x-2">
<span>More Info</span>
<OpenNewWindow className="text-xs" alignmentBaseline="middle" />
</Link>
)
The connection to your Akash Console Shell was not established or lost.
</Alert>
)}
<XTerm ref={terminalRef} onKey={onTerminalKey} onTerminalPaste={onTerminalPaste} />
Expand Down
92 changes: 46 additions & 46 deletions apps/deploy-web/src/pages/faq/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,34 @@ import Layout from "@src/components/layout/Layout";
import { Title } from "@src/components/shared/Title";

const FaqEntries = [
{
anchor: "cpu-support",
title: "Which CPUs are officially supported?",
content: (
<>
<p>
<Link href="https://akash.network/docs/deployments/akash-cli/installation/#cpu-support" target="_blank">
Only x86_64 processors
</Link>{" "}
are officially supported for Akash deployments. This may change in the future and when ARM processors are supported it will be announced and
documented.
</p>
<p>
If you're on MacOS or linux, you can specify the{" "}
<Link
href="https://stackoverflow.com/questions/69054921/docker-on-mac-m1-gives-the-requested-images-platform-linux-amd64-does-not-m/69119815#69119815"
target="_blank"
>
target platform
</Link>{" "}
when building your docker image. For example, if you're using a Dockerfile you can use the following command:
</p>
<p>
<code>docker build -t my-image --platform linux/amd64 .</code>
</p>
</>
)
},
{
anchor: "lease-closed",
title: "My lease is closed, but the deployment isn't.",
Expand Down Expand Up @@ -34,36 +62,6 @@ const FaqEntries = [
</>
)
},
{
anchor: "shell-lost",
title: "Can't access shell: 'The connection to your Akash Console Shell was lost.'",
content: (
<>
<p>
There is a{" "}
<a href="https://github.com/akash-network/support/issues/87" target="_blank">
known issue
</a>{" "}
where the shell access will stop working if the provider pod gets restarted. Here's two workarounds you can try:
</p>
<ul className="list-disc py-4 pl-8">
<li>
You can try the "UPDATE DEPLOYMENT" button in the "UPDATE" tab of your deployment. Even without changing your SDL, this should temporarily restore
the shell access.
<br />
<Image src="/images/faq/update-deployment-btn.png" alt="Update Deployment" width={500} height={116} />
</li>
<li>
A permanent solution would be to add your own ssh access to your deployment, here is an{" "}
<Link href="https://gist.github.com/arno01/f33b7c618ecf090108a33deea38c3c10" target="_blank">
example SDL
</Link>{" "}
with ssh.
</li>
</ul>
</>
)
},
{
anchor: "shell-arrows-and-completion",
title: "Shell: UP arrow and TAB autocompletion does not work",
Expand Down Expand Up @@ -130,23 +128,25 @@ export default function FaqPage() {
<NextSeo title={`Frequently Asked Questions`} />
<Title>Frequently Asked Questions</Title>

<ul className="list-disc py-4 pl-8">
{FaqEntries.map(entry => (
<li key={entry.anchor}>
<Link href={"#" + entry.anchor}>{entry.title}</Link>
</li>
))}
</ul>
<div className="prose dark:prose-invert prose-code:before:hidden prose-code:after:hidden">
<ul className="list-disc py-4 pl-8">
{FaqEntries.map(entry => (
<li key={entry.anchor}>
<Link href={"#" + entry.anchor}>{entry.title}</Link>
</li>
))}
</ul>

<div className="pb-8">
{FaqEntries.map(entry => (
<div key={entry.anchor}>
<Title subTitle id={entry.anchor} className="my-4">
{entry.title}
</Title>
{entry.content}
</div>
))}
<div className="pb-8">
{FaqEntries.map(entry => (
<div key={entry.anchor}>
<Title subTitle id={entry.anchor} className="my-4">
{entry.title}
</Title>
{entry.content}
</div>
))}
</div>
</div>
</Layout>
);
Expand Down
2 changes: 1 addition & 1 deletion packages/network-store/src/network.store.ts
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ export class NetworkStore {
}
}

private initiateNetworkFromUrlQuery(): Network["id"] {
private initiateNetworkFromUrlQuery(): Network["id"] | undefined {
if (typeof window === "undefined") {
return;
}
Expand Down
Loading