-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Keep last created when removing duplicates * Add FAQ page * . * .
- Loading branch information
Showing
9 changed files
with
134 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,117 @@ | ||
import Layout from "@src/components/layout/Layout"; | ||
import PageContainer from "@src/components/shared/PageContainer"; | ||
import { Title } from "@src/components/shared/Title"; | ||
import { NextSeo } from "next-seo"; | ||
import Image from "next/image"; | ||
import Link from "next/link"; | ||
|
||
export default function FaqPage() { | ||
return ( | ||
<Layout> | ||
<NextSeo title={`Frequently Asked Questions`} /> | ||
|
||
<PageContainer> | ||
<Title value="Frequently Asked Questions" /> | ||
|
||
<ul> | ||
<li> | ||
<Link href="#lease-closed">My lease is closed, but the deployment isn't.</Link> | ||
</li> | ||
<li> | ||
<Link href="#shell-lost">Can't access shell: "The connection to your Cloudmos Shell was lost."</Link> | ||
</li> | ||
<li> | ||
<Link href="#send-manifest-resources-mismatch"> | ||
Error while sending manifest to provider. Error: manifest cross-validation error: group "X": service "X": CPU/Memory resources mismatch for ID 1 | ||
</Link> | ||
</li> | ||
<li> | ||
<Link href="#other-issues">My issue is not listed</Link> | ||
</li> | ||
</ul> | ||
|
||
<h2 id="lease-closed">My lease is closed, but the deployment isn't.</h2> | ||
<p> | ||
If your lease is closed, but your deployment isn't, that means your provider closed it. You will need to close your deployment and create a new one. | ||
You can try deploying on a different provider to see if that helps. | ||
<br /> | ||
<br /> | ||
Here's some possible reasons why a provider could close your lease: | ||
</p> | ||
<ul> | ||
<li>Your docker image was not able to be downloaded or crashed on launch.</li> | ||
<li>Your deployment was using more resources than what was specified in your sdl. For example, you used more disk space than allowed.</li> | ||
<li>Your deployment did not meet the terms of service of the provider. Ultimately, each provider can choose what workload they allow.</li> | ||
<li>The provider had to close your lease due to some outage or maintenance on their servers.</li> | ||
</ul> | ||
<p> | ||
To know the exact cause you can try contacting your provider in the{" "} | ||
<Link href="https://discord.com/channels/747885925232672829/1111749310325981315" target="_blank"> | ||
#provider | ||
</Link>{" "} | ||
discord channel. | ||
</p> | ||
|
||
<h2 id="shell-lost">Can't access shell: "The connection to your Cloudmos Shell was lost."</h2> | ||
<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> | ||
<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> | ||
|
||
<h2 id="send-manifest-resources-mismatch"> | ||
Error while sending manifest to provider. Error: manifest cross-validation error: group "X": service "X": CPU/Memory resources mismatch for ID 1 | ||
</h2> | ||
<p> | ||
This commonly happen if you try to change the hardware specs of your deployment. For example, if you try to increase the amount of memory or cpu. If | ||
you need to change the hardware spec you will need to close your deployment and create a new one. | ||
</p> | ||
<p> | ||
This can also happen if your deployment has multiple services and was created before the Mainnet 6 upgrade on August 31st, 2023. In this case, you | ||
will also need to close your deployment and create a new one. | ||
</p> | ||
|
||
<h2 id="other-issues">My issue is not listed</h2> | ||
<p>Here are some actions you can take to fix most of the errors you may encounter:</p> | ||
<ul> | ||
<li> | ||
<strong>Change the selected node in the settings.</strong> Nodes are public services and can have outages and rate limiting. | ||
<br /> | ||
<Image src={"/images/faq/change-node.png"} alt="Change Node" width={400} height={294} /> | ||
</li> | ||
<li> | ||
<strong>Try using another provider.</strong> The provider may be misconfigured or suffering from an outage. | ||
</li> | ||
<li> | ||
<strong>Wait a bit and try again later.</strong> Some problem are temporary and simply waiting a bit and trying again will work. | ||
</li> | ||
</ul> | ||
<p> | ||
If you still have an issue after taking these steps, please ask your question in the{" "} | ||
<Link href="https://discord.com/channels/747885925232672829/1111749073322660034" target="_blank"> | ||
#ecosystem-cloudmos | ||
</Link>{" "} | ||
channel. If you have issue creating or updating a deployment, it can help to include your SDL. Make sure to remove any sensitive information from it | ||
before sharing (ex: secrets in your env variables). | ||
</p> | ||
</PageContainer> | ||
</Layout> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -51,4 +51,4 @@ | |
font-size: 85%; | ||
background-color: rgba(175, 184, 193, 0.2); | ||
border-radius: 6px; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters