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

Bare metal client setup + monitoring #331

Closed
wants to merge 5 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
scaffolding lodestar
  • Loading branch information
alebanzas committed Dec 16, 2022
commit 13ba49e6d69ccc1b75b42658f825d074679ebf46
47 changes: 47 additions & 0 deletions docs/node/guide/beacon/_partials/_install_cl_lodestar.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';


<Tabs className="tabgroup-with-label network-tabgroup" groupId="network" defaultValue="gnosis" values={[
{label: 'Gnosis', value: 'gnosis'},
{label: 'Chiado', value: 'chiado'}
]}>
<TabItem value="gnosis">

<Tabs className="tabgroup-with-label os-tabgroup" groupId="os" defaultValue="others" values={[
{label: 'Linux, MacOS, Arm64', value: 'others'},
{label: 'Windows', value: 'win'}
]}>
<TabItem value="others">

OTHERS MAINNET

</TabItem>
<TabItem value="win">

WINDOWS MAINNET

</TabItem>
</Tabs>

</TabItem>
<TabItem value="chiado">

<Tabs className="tabgroup-with-label os-tabgroup" groupId="os" defaultValue="others" values={[
{label: 'Linux, MacOS, Arm64', value: 'others'},
{label: 'Windows', value: 'win'}
]}>
<TabItem value="others">

OTHERS CHIADO

</TabItem>
<TabItem value="win">

WINDOWS CHIADO

</TabItem>
</Tabs>

</TabItem>
</Tabs>
11 changes: 3 additions & 8 deletions docs/node/guide/beacon/_partials/_run-consensus-client.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
import InstallLighthousePartial from '@site/docs/node/guide/beacon/_partials/_install_cl_lighthouse.md';
import InstallLodestarPartial from '@site/docs/node/guide/beacon/_partials/_install_cl_lodestar.md';

```mdx-code-block

Expand All @@ -19,15 +20,9 @@ import InstallLighthousePartial from '@site/docs/node/guide/beacon/_partials/_in


<TabItem value="lodestar">
```

:::info

Please refer to [Run a Beacon Node: Lodestar](../lodestar.md)

:::

```mdx-code-block
<InstallLodestarPartial />

</TabItem>

<TabItem value="teku">
Expand Down