Skip to content

Commit

Permalink
deploy: 0fa3430
Browse files Browse the repository at this point in the history
  • Loading branch information
PierreBesson committed Sep 22, 2023
1 parent f6977ea commit 2d3bb05
Show file tree
Hide file tree
Showing 30 changed files with 55 additions and 55 deletions.
2 changes: 1 addition & 1 deletion customchain.html
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ <h3 id="rpc"><a class="header" href="#rpc">RPC</a></h3>
curl -H &quot;Content-Type: application/json&quot; \ --data '{ &quot;jsonrpc&quot;:&quot;2.0&quot;, &quot;method&quot;:&quot;author_insertKey&quot;, &quot;params&quot;:[&quot;'&quot;${KEY_TYPE}&quot;'&quot;, &quot;'&quot;${KEY_SEED}&quot;'&quot;],&quot;id&quot;:1 }' http://localhost:9933

</code></pre>
<footer id="last-change">Last change: 2022-12-07, commit: <a href="https://github.com/paritytech/devops-guide/commit/b841e9e">b841e9e</a></footer>
<footer id="last-change">Last change: 2023-09-22, commit: <a href="https://github.com/paritytech/devops-guide/commit/0fa3430">0fa3430</a></footer>
</main>

<nav class="nav-wrapper" aria-label="Page navigation">
Expand Down
2 changes: 1 addition & 1 deletion deployments/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ <h1 id="deployments"><a class="header" href="#deployments">Deployments</a></h1>
<p><a href="./deployments/options.html">Role Specific Arguments</a> lists specific options to be used for each node type</p>
</li>
</ul>
<footer id="last-change">Last change: 2022-12-07, commit: <a href="https://github.com/paritytech/devops-guide/commit/b841e9e">b841e9e</a></footer>
<footer id="last-change">Last change: 2023-09-22, commit: <a href="https://github.com/paritytech/devops-guide/commit/0fa3430">0fa3430</a></footer>
</main>

<nav class="nav-wrapper" aria-label="Page navigation">
Expand Down
2 changes: 1 addition & 1 deletion deployments/options.html
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ <h2 id="parachain-specifics"><a class="header" href="#parachain-specifics">Parac
<p>A real life example of this while executing as a statemine collator would be:</p>
<pre><code>./statemine --chain statemine --in-peers 25 --out-peers 25 --db-cache 512 --pruning=1000 --unsafe-pruning -- --chain kusama -db-cache 512 --pruning=1000 --wasm-execution Compiled
</code></pre>
<footer id="last-change">Last change: 2022-12-07, commit: <a href="https://github.com/paritytech/devops-guide/commit/b841e9e">b841e9e</a></footer>
<footer id="last-change">Last change: 2023-09-22, commit: <a href="https://github.com/paritytech/devops-guide/commit/0fa3430">0fa3430</a></footer>
</main>

<nav class="nav-wrapper" aria-label="Page navigation">
Expand Down
2 changes: 1 addition & 1 deletion deployments/targets.html
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ <h2 id="deployment-targets"><a class="header" href="#deployment-targets">Deploym
<tr><td>Kubernetes</td><td>A container orchestration engine to host your blockchain instances. This option is only recommended if you already have prior experience with kubernetes, especially in production environments.</td></tr>
<tr><td>Local Container</td><td>An instance running on a local container engine (e.g. containerd, docker, podman).</td></tr>
</tbody></table>
<footer id="last-change">Last change: 2022-12-07, commit: <a href="https://github.com/paritytech/devops-guide/commit/b841e9e">b841e9e</a></footer>
<footer id="last-change">Last change: 2023-09-22, commit: <a href="https://github.com/paritytech/devops-guide/commit/0fa3430">0fa3430</a></footer>
</main>

<nav class="nav-wrapper" aria-label="Page navigation">
Expand Down
2 changes: 1 addition & 1 deletion deployments/types.html
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ <h2 id="node-types"><a class="header" href="#node-types">Node Types</a></h2>
<tr><td>Archive Node</td><td>A node which is syncing to the relay chain or parachain and has a complete database starting all the way from the genesis block.</td></tr>
<tr><td>Full Node</td><td>A node which is syncing the relay chain or parachain to the current best block.</td></tr>
</tbody></table>
<footer id="last-change">Last change: 2022-12-07, commit: <a href="https://github.com/paritytech/devops-guide/commit/b841e9e">b841e9e</a></footer>
<footer id="last-change">Last change: 2023-09-22, commit: <a href="https://github.com/paritytech/devops-guide/commit/0fa3430">0fa3430</a></footer>
</main>

<nav class="nav-wrapper" aria-label="Page navigation">
Expand Down
2 changes: 1 addition & 1 deletion examples/ansible.html
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ <h4 id="custom-network-deployment-playbook"><a class="header" href="#custom-netw
roles:
- parity.chain.onboard_para
</code></pre>
<footer id="last-change">Last change: 2022-12-07, commit: <a href="https://github.com/paritytech/devops-guide/commit/b841e9e">b841e9e</a></footer>
<footer id="last-change">Last change: 2023-09-22, commit: <a href="https://github.com/paritytech/devops-guide/commit/0fa3430">0fa3430</a></footer>
</main>

<nav class="nav-wrapper" aria-label="Page navigation">
Expand Down
2 changes: 1 addition & 1 deletion examples/docker.html
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ <h3 id="automated-build-pipeline"><a class="header" href="#automated-build-pipel
push: true
tags: ${{ env.DOCKER_REPO }}:v${{ steps.rev.outputs.value }}, ${{ secrets.DOCKER_REPO }}:latest
</code></pre>
<footer id="last-change">Last change: 2022-12-07, commit: <a href="https://github.com/paritytech/devops-guide/commit/b841e9e">b841e9e</a></footer>
<footer id="last-change">Last change: 2023-09-22, commit: <a href="https://github.com/paritytech/devops-guide/commit/0fa3430">0fa3430</a></footer>
</main>

<nav class="nav-wrapper" aria-label="Page navigation">
Expand Down
2 changes: 1 addition & 1 deletion examples/helmfile.html
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ <h3 id="basic_helmfile"><a class="header" href="#basic_helmfile">Basic_helmfile<
paraId: &quot;1002&quot;
ss58Format: &quot;0&quot;
</code></pre>
<footer id="last-change">Last change: 2022-12-07, commit: <a href="https://github.com/paritytech/devops-guide/commit/b841e9e">b841e9e</a></footer>
<footer id="last-change">Last change: 2023-09-22, commit: <a href="https://github.com/paritytech/devops-guide/commit/0fa3430">0fa3430</a></footer>
</main>

<nav class="nav-wrapper" aria-label="Page navigation">
Expand Down
2 changes: 1 addition & 1 deletion examples/polkadotjstools.html
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ <h3 id="example-chain-transactionsextrinsics"><a class="header" href="#example-c
<p>Transfer 1.23 units from <code>//Alice</code> on the relay chain to <code>//Charlie</code> on the parachain <code>1000</code>:</p>
<pre><code>yarn run:api tx.xcmPallet.limitedTeleportAssets '{&quot;v1&quot;:{&quot;parents&quot;:0,&quot;interior&quot;:{&quot;x1&quot;:{&quot;parachain&quot;:1000}}}}' '{&quot;v1&quot;:{&quot;parents&quot;:0,&quot;interior&quot;:{&quot;x1&quot;:{&quot;AccountId32&quot;: {&quot;id&quot;: &quot;0x90b5ab205c6974c9ea841be688864633dc9ca8a357843eeacf2314649965fe22&quot;, &quot;network&quot;: &quot;Any&quot;}}}}}' '{&quot;v1&quot;: [ {&quot;id&quot;: { &quot;Concrete&quot;: {&quot;parents&quot;:0, &quot;interior&quot;:&quot;Here&quot; }}, &quot;Fun&quot;: { &quot;Fungible&quot;: &quot;12300000000&quot;}}]}' 0 Unlimited --seed &quot;//Alice&quot;
</code></pre>
<footer id="last-change">Last change: 2022-12-07, commit: <a href="https://github.com/paritytech/devops-guide/commit/b841e9e">b841e9e</a></footer>
<footer id="last-change">Last change: 2023-09-22, commit: <a href="https://github.com/paritytech/devops-guide/commit/0fa3430">0fa3430</a></footer>
</main>

<nav class="nav-wrapper" aria-label="Page navigation">
Expand Down
2 changes: 1 addition & 1 deletion examples/zombienet.html
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ <h3 id="zombienet_example"><a class="header" href="#zombienet_example">Zombienet
maxCapacity = 4
maxMessageSize = 512
</code></pre>
<footer id="last-change">Last change: 2022-12-07, commit: <a href="https://github.com/paritytech/devops-guide/commit/b841e9e">b841e9e</a></footer>
<footer id="last-change">Last change: 2023-09-22, commit: <a href="https://github.com/paritytech/devops-guide/commit/0fa3430">0fa3430</a></footer>
</main>

<nav class="nav-wrapper" aria-label="Page navigation">
Expand Down
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ <h2 id="general-approach-to-security"><a class="header" href="#general-approach-
<p>First is using cold / warm / hot keys, so that the compromise of say a session key would not lead to any funds being stolen. Also using multi-sig accounts on offline devices can greatly help security and also give an on-chain audit trail of all actions, allows for alerting for any onchain actions etc..</p>
<p><img src="images/AEEVr6.png" alt="key stages" /></p>
<p>Proxy accounts also let you limit the permission that an account or multisig account has on a particular target account (e.g. only staking functions can be executed by the staking controller multisig account and require 3 of 5 people to approve).</p>
<footer id="last-change">Last change: 2022-12-07, commit: <a href="https://github.com/paritytech/devops-guide/commit/b841e9e">b841e9e</a></footer>
<footer id="last-change">Last change: 2023-09-22, commit: <a href="https://github.com/paritytech/devops-guide/commit/0fa3430">0fa3430</a></footer>
</main>

<nav class="nav-wrapper" aria-label="Page navigation">
Expand Down
2 changes: 1 addition & 1 deletion keys_accounts.html
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ <h2 id="inspection"><a class="header" href="#inspection">Inspection</a></h2>
Public key (SS58): 15uRtdeE4MyMHV9LP1UHKqTx4f8Qa8uVZUpxWWw8VKSroucK
SS58 Address: 15uRtdeE4MyMHV9LP1UHKqTx4f8Qa8uVZUpxWWw8VKSroucK
</code></pre>
<footer id="last-change">Last change: 2022-12-07, commit: <a href="https://github.com/paritytech/devops-guide/commit/b841e9e">b841e9e</a></footer>
<footer id="last-change">Last change: 2023-09-22, commit: <a href="https://github.com/paritytech/devops-guide/commit/0fa3430">0fa3430</a></footer>
</main>

<nav class="nav-wrapper" aria-label="Page navigation">
Expand Down
2 changes: 1 addition & 1 deletion kubernetes/helm.html
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ <h2 id="important-chart-options"><a class="header" href="#important-chart-option
<tr><td>node.flags</td><td>Flags to use with binary in container</td></tr>
<tr><td>node.customChainspecUrl</td><td>Custon Chainspec URL</td></tr>
</tbody></table>
<footer id="last-change">Last change: 2022-12-07, commit: <a href="https://github.com/paritytech/devops-guide/commit/b841e9e">b841e9e</a></footer>
<footer id="last-change">Last change: 2023-09-22, commit: <a href="https://github.com/paritytech/devops-guide/commit/0fa3430">0fa3430</a></footer>
</main>

<nav class="nav-wrapper" aria-label="Page navigation">
Expand Down
2 changes: 1 addition & 1 deletion kubernetes/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ <h1 id="kubernetes"><a class="header" href="#kubernetes">Kubernetes</a></h1>
<p><a href="./helm/testnetmanager.html">Testnet Manager</a> a powerful tool for deploying and maintaining test networks in kubernetes.</p>
</li>
</ul>
<footer id="last-change">Last change: 2022-12-07, commit: <a href="https://github.com/paritytech/devops-guide/commit/b841e9e">b841e9e</a></footer>
<footer id="last-change">Last change: 2023-09-22, commit: <a href="https://github.com/paritytech/devops-guide/commit/0fa3430">0fa3430</a></footer>
</main>

<nav class="nav-wrapper" aria-label="Page navigation">
Expand Down
2 changes: 1 addition & 1 deletion kubernetes/testnetmanager.html
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ <h3 id="examples"><a class="header" href="#examples">Examples</a></h3>
<h3 id="how-does-it-work-"><a class="header" href="#how-does-it-work-">How does it work ?</a></h3>
<p>The testnet-manager is deployed in the same Kubernetes namespaces as nodes deployed with the <a href="https://github.com/paritytech/helm-charts/tree/main/charts/node">node helm-chart</a>. As node pods deployed with the chart are tagged with the appropriate labels (eg. chain name, para ID), the manager is able to query the Kubernetes API and list the running nodes for each network (relay-chain, parachains).</p>
<p>By combining this list of nodes with the on-chain state retrieved from RPC endpoints (eg. list of active validators accounts), the manager can automate node key setup (by interacting directly with each node RPC endpoint) and registration (by submitting sudo extrinsics). Behind the scenes, it uses a derivation formula for generating deterministic Validator/Collator accounts addresses: &quot;${VALIDATORS_ROOT_SEED}//${node-name}&quot;.</p>
<footer id="last-change">Last change: 2022-12-07, commit: <a href="https://github.com/paritytech/devops-guide/commit/b841e9e">b841e9e</a></footer>
<footer id="last-change">Last change: 2023-09-22, commit: <a href="https://github.com/paritytech/devops-guide/commit/0fa3430">0fa3430</a></footer>
</main>

<nav class="nav-wrapper" aria-label="Page navigation">
Expand Down
2 changes: 1 addition & 1 deletion monitoring/alertmanager.html
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ <h2 id="alertmanager"><a class="header" href="#alertmanager">Alertmanager</a></h
severity: warning
</code></pre>
<p>This will then be sent to the outbound path for the severity warning.</p>
<footer id="last-change">Last change: 2022-12-07, commit: <a href="https://github.com/paritytech/devops-guide/commit/b841e9e">b841e9e</a></footer>
<footer id="last-change">Last change: 2023-09-22, commit: <a href="https://github.com/paritytech/devops-guide/commit/0fa3430">0fa3430</a></footer>
</main>

<nav class="nav-wrapper" aria-label="Page navigation">
Expand Down
2 changes: 1 addition & 1 deletion monitoring/example.html
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ <h1 id="example-monitoring-stack"><a class="header" href="#example-monitoring-st
<li>Loki - A highly scalable log aggregation system that allows you to view and search logs from all your infrastruture in one place.</li>
<li>Exporter - A process that listens on a port and reports appliation specific metrics to prometheus when scraped. Lots of exporters exist and new ones are easy to write. It just requires you return data in the format of: `<key>: <value>' with labels being optional.</li>
</ul>
<footer id="last-change">Last change: 2022-12-07, commit: <a href="https://github.com/paritytech/devops-guide/commit/b841e9e">b841e9e</a></footer>
<footer id="last-change">Last change: 2023-09-22, commit: <a href="https://github.com/paritytech/devops-guide/commit/0fa3430">0fa3430</a></footer>
</main>

<nav class="nav-wrapper" aria-label="Page navigation">
Expand Down
2 changes: 1 addition & 1 deletion monitoring/grafana.html
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ <h2 id="grafana"><a class="header" href="#grafana">Grafana</a></h2>
</code></pre>
<p>You can find <a href="https://grafana.com/grafana/dashboards/?search=polkadot">existing</a> polkadot dashboards at grafana.com -</p>
<p><img src="../images/lb0gOx.png" alt="grafana example" /></p>
<footer id="last-change">Last change: 2022-12-07, commit: <a href="https://github.com/paritytech/devops-guide/commit/b841e9e">b841e9e</a></footer>
<footer id="last-change">Last change: 2023-09-22, commit: <a href="https://github.com/paritytech/devops-guide/commit/0fa3430">0fa3430</a></footer>
</main>

<nav class="nav-wrapper" aria-label="Page navigation">
Expand Down
2 changes: 1 addition & 1 deletion monitoring/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ <h2 id="on-host"><a class="header" href="#on-host">On-Host</a></h2>
<h2 id="telemetry"><a class="header" href="#telemetry">Telemetry</a></h2>
<p>The telemetry server is used for real time information from nodes, showing information about their name, location, current best &amp; finalized blocks etc… This gives you a useful dashboard to view the state of nodes.</p>
<p>The project is in the <a href="https://github.com/paritytech/substrate-telemetry">substrate-telemetry</a> github repo, a <a href="https://github.com/paritytech/helm-charts/tree/main/charts/substrate-telemetry">helm chart</a> is also available to allow easy kubernetes deployments.</p>
<footer id="last-change">Last change: 2022-12-07, commit: <a href="https://github.com/paritytech/devops-guide/commit/b841e9e">b841e9e</a></footer>
<footer id="last-change">Last change: 2023-09-22, commit: <a href="https://github.com/paritytech/devops-guide/commit/0fa3430">0fa3430</a></footer>
</main>

<nav class="nav-wrapper" aria-label="Page navigation">
Expand Down
2 changes: 1 addition & 1 deletion monitoring/loki.html
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ <h2 id="loki"><a class="header" href="#loki">Loki</a></h2>
replacement: $1
</code></pre>
<p>The above example also configures the following custom metrics derived from logs <code>promtail_chain_log_lines_total</code>, <code>promtail_chain_error_log_lines_total</code> and <code>promtail_chain_panic_log_lines_total</code> to be exposed on the promtail metrics endpoint (http://host:9080).</p>
<footer id="last-change">Last change: 2022-12-07, commit: <a href="https://github.com/paritytech/devops-guide/commit/b841e9e">b841e9e</a></footer>
<footer id="last-change">Last change: 2023-09-22, commit: <a href="https://github.com/paritytech/devops-guide/commit/0fa3430">0fa3430</a></footer>
</main>

<nav class="nav-wrapper" aria-label="Page navigation">
Expand Down
2 changes: 1 addition & 1 deletion monitoring/prometheus.html
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ <h3 id="rules"><a class="header" href="#rules">Rules</a></h3>
severity: warning
</code></pre>
<p>Here’s an <a href="https://github.com/ddorgan/substrate-alerting-rules/blob/main/alerting-rules.yaml">example</a> with some basic block production rules.</p>
<footer id="last-change">Last change: 2022-12-07, commit: <a href="https://github.com/paritytech/devops-guide/commit/b841e9e">b841e9e</a></footer>
<footer id="last-change">Last change: 2023-09-22, commit: <a href="https://github.com/paritytech/devops-guide/commit/0fa3430">0fa3430</a></footer>
</main>

<nav class="nav-wrapper" aria-label="Page navigation">
Expand Down
2 changes: 1 addition & 1 deletion overview.html
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ <h2 id="general-approach-to-security"><a class="header" href="#general-approach-
<p>First is using cold / warm / hot keys, so that the compromise of say a session key would not lead to any funds being stolen. Also using multi-sig accounts on offline devices can greatly help security and also give an on-chain audit trail of all actions, allows for alerting for any onchain actions etc..</p>
<p><img src="images/AEEVr6.png" alt="key stages" /></p>
<p>Proxy accounts also let you limit the permission that an account or multisig account has on a particular target account (e.g. only staking functions can be executed by the staking controller multisig account and require 3 of 5 people to approve).</p>
<footer id="last-change">Last change: 2022-12-07, commit: <a href="https://github.com/paritytech/devops-guide/commit/b841e9e">b841e9e</a></footer>
<footer id="last-change">Last change: 2023-09-22, commit: <a href="https://github.com/paritytech/devops-guide/commit/0fa3430">0fa3430</a></footer>
</main>

<nav class="nav-wrapper" aria-label="Page navigation">
Expand Down

0 comments on commit 2d3bb05

Please sign in to comment.