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

task(devx): Re-enable package manager install instructions and set/confirm node operator URLs and values #4042

Merged
merged 9 commits into from
Nov 18, 2024
8 changes: 0 additions & 8 deletions docs/content/developer/getting-started/install-iota.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,6 @@ IOTA supports the following operating systems:
- macOS - macOS Monterey or later
- Microsoft Windows - Windows 10 or later

{/* TODO: Re-enable and check if we have packages published */}
{/*

## Install Using a Package Manager

You can use the following commands to let a package manager handle the installation process. You can
Expand All @@ -56,15 +53,10 @@ brew install iota
choco install iota
```

Find more [versions of IOTA for Windows](https://community.chocolatey.org/packages/iota) on the Chocolatey community
website. TODO Check Link availability

</TabItem>

</Tabs>

*/}

## Install From Binaries

You can find a set of binaries for most operating systems with
Expand Down
1 change: 1 addition & 0 deletions docs/content/operator/iota-full-node.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,7 @@ Open a terminal or console to the `iota` directory you downloaded in the previou
1. Install the required prerequisites.
1. Make a copy of the [Full node YAML template](https://github.com/iotaledger/iota/blob/develop/crates/iota-config/data/fullnode-template.yaml):
`cp crates/iota-config/data/fullnode-template.yaml fullnode.yaml`

1. Download the genesis and migration blob for the network to use:
- [Testnet genesis blob](https://dbfiles.testnet.iota.cafe/genesis.blob):
`curl -fLJO https://dbfiles.testnet.iota.cafe/genesis.blob`
Expand Down
2 changes: 0 additions & 2 deletions docs/content/operator/snapshots.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -129,11 +129,9 @@ The IOTA Foundation hosts two tiers of snapshot storage access. **High throughpu
### Bucket Names
**S3**
Testnet: `s3://iota-testnet-snapshots/`, `s3://iota-testnet-formal/`
Mainnet: `s3://iota-mainnet-snapshots/`, `s3://iota-mainnet-formal/`

**GCS**
Testnet: `gs://iota-testnet-snapshots/`, `gs://iota-testnet-formal/`
Mainnet: `gs://iota-mainnet-snapshots/`, `gs://iota-mainnet-formal/`

![IOTA Managed Snapshots](/img/operator/snapshots/iota-cloud-snapshots.png "A diagram that shows the current architecture of iota snapshot availability")

Expand Down
18 changes: 15 additions & 3 deletions nre/validator_tasks.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,19 +6,31 @@ This document focuses on running the Iota Node software as a Validator.

## Contents

- [Overview](#overview)
- [Contents](#contents)
- [Requirements](#requirements)
- [Deployment](#deployment)
- [Configuration](#configuration)
- [Connectivity](#connectivity)
- [Network Buffer](#network-buffer)
- [Option 1: With /etc/sysctl.d/](#option-1-with-etcsysctld)
- [Option 2: With sysctl command](#option-2-with-sysctl-command)
- [Verification](#verification)
- [Storage](#storage)
- [Key Management](#key-management)
- [Monitoring](#monitoring)
- [Logs](#logs)
- [Metrics](#metrics)
- [Logs](#logs)
- [Dashboards](#dashboards)
- [Software Updates](#software-updates)
- [State Sync](#state-sync)
- [Chain Operations](#chain-operations)
- [Updating On-chain Metadata](#updating-on-chain-metadata)
- [Operation Cap](#operation-cap)
- [Updating the Gas Price Survey Quote](#updating-the-gas-price-survey-quote)
- [Reporting/Un-reporting Validators](#reportingun-reporting-validators)
- [Joining the Validator Set](#joining-the-validator-set)
- [Leaving the Validator Set](#leaving-the-validator-set)
- [Private Security Fixes](#private-security-fixes)

</div>
Expand Down Expand Up @@ -322,7 +334,7 @@ iota client call --package 0x3 --module iota_system --function update_validator_
```

<!-- Will be fixed by issue 1867. -->
<!-- See the full list of metadata `update_*` functions starting [from here](<TODO_WIKI_URL>/references/framework/iota-system/iota_system#function-update_validator_name). -->
<!-- See the full list of metadata `update_*` functions starting [from here](https://docs.iota.org/references/framework/iota-system/iota_system#function-update_validator_name). -->

### Operation Cap

Expand Down Expand Up @@ -350,7 +362,7 @@ To get the current valid `Cap` object's ID of a validator, use the Iota Client C
setting the holder as the active address.

<!-- Will be fixed by issue 1867. -->
<!-- Or go to the [explorer](https://<TODO_EXPLORER_URL>/object/0x0000000000000000000000000000000000000005) and look for `operation_cap_id` of that validator in the `validators` module. -->
<!-- Or go to the [explorer](https://explorer.iota.cafe/object/0x0000000000000000000000000000000000000005) and look for `operation_cap_id` of that validator in the `validators` module. -->
lucas-tortora marked this conversation as resolved.
Show resolved Hide resolved

### Updating the Gas Price Survey Quote

Expand Down
Loading