455 lines
20 KiB
HTML
455 lines
20 KiB
HTML
|
|
<!DOCTYPE HTML>
|
||
|
|
<html lang="en" class="ayu sidebar-visible" dir="ltr">
|
||
|
|
<head>
|
||
|
|
<!-- Book generated using mdBook -->
|
||
|
|
<meta charset="UTF-8">
|
||
|
|
<title>Prerequisites - Provisioning Platform Documentation</title>
|
||
|
|
|
||
|
|
|
||
|
|
<!-- Custom HTML head -->
|
||
|
|
|
||
|
|
<meta name="description" content="Complete documentation for the Provisioning Platform - Infrastructure automation with Nushell, KCL, and Rust">
|
||
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||
|
|
<meta name="theme-color" content="#ffffff">
|
||
|
|
|
||
|
|
<link rel="icon" href="../favicon.svg">
|
||
|
|
<link rel="shortcut icon" href="../favicon.png">
|
||
|
|
<link rel="stylesheet" href="../css/variables.css">
|
||
|
|
<link rel="stylesheet" href="../css/general.css">
|
||
|
|
<link rel="stylesheet" href="../css/chrome.css">
|
||
|
|
<link rel="stylesheet" href="../css/print.css" media="print">
|
||
|
|
|
||
|
|
<!-- Fonts -->
|
||
|
|
<link rel="stylesheet" href="../FontAwesome/css/font-awesome.css">
|
||
|
|
<link rel="stylesheet" href="../fonts/fonts.css">
|
||
|
|
|
||
|
|
<!-- Highlight.js Stylesheets -->
|
||
|
|
<link rel="stylesheet" id="highlight-css" href="../highlight.css">
|
||
|
|
<link rel="stylesheet" id="tomorrow-night-css" href="../tomorrow-night.css">
|
||
|
|
<link rel="stylesheet" id="ayu-highlight-css" href="../ayu-highlight.css">
|
||
|
|
|
||
|
|
<!-- Custom theme stylesheets -->
|
||
|
|
|
||
|
|
|
||
|
|
<!-- Provide site root and default themes to javascript -->
|
||
|
|
<script>
|
||
|
|
const path_to_root = "../";
|
||
|
|
const default_light_theme = "ayu";
|
||
|
|
const default_dark_theme = "navy";
|
||
|
|
</script>
|
||
|
|
<!-- Start loading toc.js asap -->
|
||
|
|
<script src="../toc.js"></script>
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<div id="mdbook-help-container">
|
||
|
|
<div id="mdbook-help-popup">
|
||
|
|
<h2 class="mdbook-help-title">Keyboard shortcuts</h2>
|
||
|
|
<div>
|
||
|
|
<p>Press <kbd>←</kbd> or <kbd>→</kbd> to navigate between chapters</p>
|
||
|
|
<p>Press <kbd>S</kbd> or <kbd>/</kbd> to search in the book</p>
|
||
|
|
<p>Press <kbd>?</kbd> to show this help</p>
|
||
|
|
<p>Press <kbd>Esc</kbd> to hide this help</p>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
<div id="body-container">
|
||
|
|
<!-- Work around some values being stored in localStorage wrapped in quotes -->
|
||
|
|
<script>
|
||
|
|
try {
|
||
|
|
let theme = localStorage.getItem('mdbook-theme');
|
||
|
|
let sidebar = localStorage.getItem('mdbook-sidebar');
|
||
|
|
|
||
|
|
if (theme.startsWith('"') && theme.endsWith('"')) {
|
||
|
|
localStorage.setItem('mdbook-theme', theme.slice(1, theme.length - 1));
|
||
|
|
}
|
||
|
|
|
||
|
|
if (sidebar.startsWith('"') && sidebar.endsWith('"')) {
|
||
|
|
localStorage.setItem('mdbook-sidebar', sidebar.slice(1, sidebar.length - 1));
|
||
|
|
}
|
||
|
|
} catch (e) { }
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<!-- Set the theme before any content is loaded, prevents flash -->
|
||
|
|
<script>
|
||
|
|
const default_theme = window.matchMedia("(prefers-color-scheme: dark)").matches ? default_dark_theme : default_light_theme;
|
||
|
|
let theme;
|
||
|
|
try { theme = localStorage.getItem('mdbook-theme'); } catch(e) { }
|
||
|
|
if (theme === null || theme === undefined) { theme = default_theme; }
|
||
|
|
const html = document.documentElement;
|
||
|
|
html.classList.remove('ayu')
|
||
|
|
html.classList.add(theme);
|
||
|
|
html.classList.add("js");
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<input type="checkbox" id="sidebar-toggle-anchor" class="hidden">
|
||
|
|
|
||
|
|
<!-- Hide / unhide sidebar before it is displayed -->
|
||
|
|
<script>
|
||
|
|
let sidebar = null;
|
||
|
|
const sidebar_toggle = document.getElementById("sidebar-toggle-anchor");
|
||
|
|
if (document.body.clientWidth >= 1080) {
|
||
|
|
try { sidebar = localStorage.getItem('mdbook-sidebar'); } catch(e) { }
|
||
|
|
sidebar = sidebar || 'visible';
|
||
|
|
} else {
|
||
|
|
sidebar = 'hidden';
|
||
|
|
}
|
||
|
|
sidebar_toggle.checked = sidebar === 'visible';
|
||
|
|
html.classList.remove('sidebar-visible');
|
||
|
|
html.classList.add("sidebar-" + sidebar);
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<nav id="sidebar" class="sidebar" aria-label="Table of contents">
|
||
|
|
<!-- populated by js -->
|
||
|
|
<mdbook-sidebar-scrollbox class="sidebar-scrollbox"></mdbook-sidebar-scrollbox>
|
||
|
|
<noscript>
|
||
|
|
<iframe class="sidebar-iframe-outer" src="../toc.html"></iframe>
|
||
|
|
</noscript>
|
||
|
|
<div id="sidebar-resize-handle" class="sidebar-resize-handle">
|
||
|
|
<div class="sidebar-resize-indicator"></div>
|
||
|
|
</div>
|
||
|
|
</nav>
|
||
|
|
|
||
|
|
<div id="page-wrapper" class="page-wrapper">
|
||
|
|
|
||
|
|
<div class="page">
|
||
|
|
<div id="menu-bar-hover-placeholder"></div>
|
||
|
|
<div id="menu-bar" class="menu-bar sticky">
|
||
|
|
<div class="left-buttons">
|
||
|
|
<label id="sidebar-toggle" class="icon-button" for="sidebar-toggle-anchor" title="Toggle Table of Contents" aria-label="Toggle Table of Contents" aria-controls="sidebar">
|
||
|
|
<i class="fa fa-bars"></i>
|
||
|
|
</label>
|
||
|
|
<button id="theme-toggle" class="icon-button" type="button" title="Change theme" aria-label="Change theme" aria-haspopup="true" aria-expanded="false" aria-controls="theme-list">
|
||
|
|
<i class="fa fa-paint-brush"></i>
|
||
|
|
</button>
|
||
|
|
<ul id="theme-list" class="theme-popup" aria-label="Themes" role="menu">
|
||
|
|
<li role="none"><button role="menuitem" class="theme" id="default_theme">Auto</button></li>
|
||
|
|
<li role="none"><button role="menuitem" class="theme" id="light">Light</button></li>
|
||
|
|
<li role="none"><button role="menuitem" class="theme" id="rust">Rust</button></li>
|
||
|
|
<li role="none"><button role="menuitem" class="theme" id="coal">Coal</button></li>
|
||
|
|
<li role="none"><button role="menuitem" class="theme" id="navy">Navy</button></li>
|
||
|
|
<li role="none"><button role="menuitem" class="theme" id="ayu">Ayu</button></li>
|
||
|
|
</ul>
|
||
|
|
<button id="search-toggle" class="icon-button" type="button" title="Search (`/`)" aria-label="Toggle Searchbar" aria-expanded="false" aria-keyshortcuts="/ s" aria-controls="searchbar">
|
||
|
|
<i class="fa fa-search"></i>
|
||
|
|
</button>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<h1 class="menu-title">Provisioning Platform Documentation</h1>
|
||
|
|
|
||
|
|
<div class="right-buttons">
|
||
|
|
<a href="../print.html" title="Print this book" aria-label="Print this book">
|
||
|
|
<i id="print-button" class="fa fa-print"></i>
|
||
|
|
</a>
|
||
|
|
<a href="https://github.com/provisioning/provisioning-platform" title="Git repository" aria-label="Git repository">
|
||
|
|
<i id="git-repository-button" class="fa fa-github"></i>
|
||
|
|
</a>
|
||
|
|
<a href="https://github.com/provisioning/provisioning-platform/edit/main/provisioning/docs/src/quickstart/01-prerequisites.md" title="Suggest an edit" aria-label="Suggest an edit">
|
||
|
|
<i id="git-edit-button" class="fa fa-edit"></i>
|
||
|
|
</a>
|
||
|
|
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<div id="search-wrapper" class="hidden">
|
||
|
|
<form id="searchbar-outer" class="searchbar-outer">
|
||
|
|
<input type="search" id="searchbar" name="searchbar" placeholder="Search this book ..." aria-controls="searchresults-outer" aria-describedby="searchresults-header">
|
||
|
|
</form>
|
||
|
|
<div id="searchresults-outer" class="searchresults-outer hidden">
|
||
|
|
<div id="searchresults-header" class="searchresults-header"></div>
|
||
|
|
<ul id="searchresults">
|
||
|
|
</ul>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<!-- Apply ARIA attributes after the sidebar and the sidebar toggle button are added to the DOM -->
|
||
|
|
<script>
|
||
|
|
document.getElementById('sidebar-toggle').setAttribute('aria-expanded', sidebar === 'visible');
|
||
|
|
document.getElementById('sidebar').setAttribute('aria-hidden', sidebar !== 'visible');
|
||
|
|
Array.from(document.querySelectorAll('#sidebar a')).forEach(function(link) {
|
||
|
|
link.setAttribute('tabIndex', sidebar === 'visible' ? 0 : -1);
|
||
|
|
});
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<div id="content" class="content">
|
||
|
|
<main>
|
||
|
|
<h1 id="prerequisites"><a class="header" href="#prerequisites">Prerequisites</a></h1>
|
||
|
|
<p>Before installing the Provisioning Platform, ensure your system meets the following requirements.</p>
|
||
|
|
<h2 id="hardware-requirements"><a class="header" href="#hardware-requirements">Hardware Requirements</a></h2>
|
||
|
|
<h3 id="minimum-requirements-solo-mode"><a class="header" href="#minimum-requirements-solo-mode">Minimum Requirements (Solo Mode)</a></h3>
|
||
|
|
<ul>
|
||
|
|
<li><strong>CPU</strong>: 2 cores</li>
|
||
|
|
<li><strong>RAM</strong>: 4GB</li>
|
||
|
|
<li><strong>Disk</strong>: 20GB available space</li>
|
||
|
|
<li><strong>Network</strong>: Internet connection for downloading dependencies</li>
|
||
|
|
</ul>
|
||
|
|
<h3 id="recommended-requirements-multi-user-mode"><a class="header" href="#recommended-requirements-multi-user-mode">Recommended Requirements (Multi-User Mode)</a></h3>
|
||
|
|
<ul>
|
||
|
|
<li><strong>CPU</strong>: 4 cores</li>
|
||
|
|
<li><strong>RAM</strong>: 8GB</li>
|
||
|
|
<li><strong>Disk</strong>: 50GB available space</li>
|
||
|
|
<li><strong>Network</strong>: Reliable internet connection</li>
|
||
|
|
</ul>
|
||
|
|
<h3 id="production-requirements-enterprise-mode"><a class="header" href="#production-requirements-enterprise-mode">Production Requirements (Enterprise Mode)</a></h3>
|
||
|
|
<ul>
|
||
|
|
<li><strong>CPU</strong>: 16 cores</li>
|
||
|
|
<li><strong>RAM</strong>: 32GB</li>
|
||
|
|
<li><strong>Disk</strong>: 500GB available space (SSD recommended)</li>
|
||
|
|
<li><strong>Network</strong>: High-bandwidth connection with static IP</li>
|
||
|
|
</ul>
|
||
|
|
<h2 id="operating-system"><a class="header" href="#operating-system">Operating System</a></h2>
|
||
|
|
<h3 id="supported-platforms"><a class="header" href="#supported-platforms">Supported Platforms</a></h3>
|
||
|
|
<ul>
|
||
|
|
<li><strong>macOS</strong>: 12.0 (Monterey) or later</li>
|
||
|
|
<li><strong>Linux</strong>:
|
||
|
|
<ul>
|
||
|
|
<li>Ubuntu 22.04 LTS or later</li>
|
||
|
|
<li>Fedora 38 or later</li>
|
||
|
|
<li>Debian 12 (Bookworm) or later</li>
|
||
|
|
<li>RHEL 9 or later</li>
|
||
|
|
</ul>
|
||
|
|
</li>
|
||
|
|
</ul>
|
||
|
|
<h3 id="platform-specific-notes"><a class="header" href="#platform-specific-notes">Platform-Specific Notes</a></h3>
|
||
|
|
<p><strong>macOS</strong>:</p>
|
||
|
|
<ul>
|
||
|
|
<li>Xcode Command Line Tools required</li>
|
||
|
|
<li>Homebrew recommended for package management</li>
|
||
|
|
</ul>
|
||
|
|
<p><strong>Linux</strong>:</p>
|
||
|
|
<ul>
|
||
|
|
<li>systemd-based distribution recommended</li>
|
||
|
|
<li>sudo access required for some operations</li>
|
||
|
|
</ul>
|
||
|
|
<h2 id="required-software"><a class="header" href="#required-software">Required Software</a></h2>
|
||
|
|
<h3 id="core-dependencies"><a class="header" href="#core-dependencies">Core Dependencies</a></h3>
|
||
|
|
<div class="table-wrapper"><table><thead><tr><th>Software</th><th>Version</th><th>Purpose</th></tr></thead><tbody>
|
||
|
|
<tr><td><strong>Nushell</strong></td><td>0.107.1+</td><td>Shell and scripting language</td></tr>
|
||
|
|
<tr><td><strong>KCL</strong></td><td>0.11.2+</td><td>Configuration language</td></tr>
|
||
|
|
<tr><td><strong>Docker</strong></td><td>20.10+</td><td>Container runtime (for platform services)</td></tr>
|
||
|
|
<tr><td><strong>SOPS</strong></td><td>3.10.2+</td><td>Secrets management</td></tr>
|
||
|
|
<tr><td><strong>Age</strong></td><td>1.2.1+</td><td>Encryption tool</td></tr>
|
||
|
|
</tbody></table>
|
||
|
|
</div>
|
||
|
|
<h3 id="optional-dependencies"><a class="header" href="#optional-dependencies">Optional Dependencies</a></h3>
|
||
|
|
<div class="table-wrapper"><table><thead><tr><th>Software</th><th>Version</th><th>Purpose</th></tr></thead><tbody>
|
||
|
|
<tr><td><strong>Podman</strong></td><td>4.0+</td><td>Alternative container runtime</td></tr>
|
||
|
|
<tr><td><strong>OrbStack</strong></td><td>Latest</td><td>macOS-optimized container runtime</td></tr>
|
||
|
|
<tr><td><strong>K9s</strong></td><td>0.50.6+</td><td>Kubernetes management interface</td></tr>
|
||
|
|
<tr><td><strong>glow</strong></td><td>Latest</td><td>Markdown renderer for guides</td></tr>
|
||
|
|
<tr><td><strong>bat</strong></td><td>Latest</td><td>Syntax highlighting for file viewing</td></tr>
|
||
|
|
</tbody></table>
|
||
|
|
</div>
|
||
|
|
<h2 id="installation-verification"><a class="header" href="#installation-verification">Installation Verification</a></h2>
|
||
|
|
<p>Before proceeding, verify your system has the core dependencies installed:</p>
|
||
|
|
<h3 id="nushell"><a class="header" href="#nushell">Nushell</a></h3>
|
||
|
|
<pre><code class="language-bash"># Check Nushell version
|
||
|
|
nu --version
|
||
|
|
|
||
|
|
# Expected output: 0.107.1 or higher
|
||
|
|
</code></pre>
|
||
|
|
<h3 id="kcl"><a class="header" href="#kcl">KCL</a></h3>
|
||
|
|
<pre><code class="language-bash"># Check KCL version
|
||
|
|
kcl --version
|
||
|
|
|
||
|
|
# Expected output: 0.11.2 or higher
|
||
|
|
</code></pre>
|
||
|
|
<h3 id="docker"><a class="header" href="#docker">Docker</a></h3>
|
||
|
|
<pre><code class="language-bash"># Check Docker version
|
||
|
|
docker --version
|
||
|
|
|
||
|
|
# Check Docker is running
|
||
|
|
docker ps
|
||
|
|
|
||
|
|
# Expected: Docker version 20.10+ and connection successful
|
||
|
|
</code></pre>
|
||
|
|
<h3 id="sops"><a class="header" href="#sops">SOPS</a></h3>
|
||
|
|
<pre><code class="language-bash"># Check SOPS version
|
||
|
|
sops --version
|
||
|
|
|
||
|
|
# Expected output: 3.10.2 or higher
|
||
|
|
</code></pre>
|
||
|
|
<h3 id="age"><a class="header" href="#age">Age</a></h3>
|
||
|
|
<pre><code class="language-bash"># Check Age version
|
||
|
|
age --version
|
||
|
|
|
||
|
|
# Expected output: 1.2.1 or higher
|
||
|
|
</code></pre>
|
||
|
|
<h2 id="installing-missing-dependencies"><a class="header" href="#installing-missing-dependencies">Installing Missing Dependencies</a></h2>
|
||
|
|
<h3 id="macos-using-homebrew"><a class="header" href="#macos-using-homebrew">macOS (using Homebrew)</a></h3>
|
||
|
|
<pre><code class="language-bash"># Install Homebrew if not already installed
|
||
|
|
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
|
||
|
|
|
||
|
|
# Install Nushell
|
||
|
|
brew install nushell
|
||
|
|
|
||
|
|
# Install KCL
|
||
|
|
brew install kcl
|
||
|
|
|
||
|
|
# Install Docker Desktop
|
||
|
|
brew install --cask docker
|
||
|
|
|
||
|
|
# Install SOPS
|
||
|
|
brew install sops
|
||
|
|
|
||
|
|
# Install Age
|
||
|
|
brew install age
|
||
|
|
|
||
|
|
# Optional: Install extras
|
||
|
|
brew install k9s glow bat
|
||
|
|
</code></pre>
|
||
|
|
<h3 id="ubuntudebian"><a class="header" href="#ubuntudebian">Ubuntu/Debian</a></h3>
|
||
|
|
<pre><code class="language-bash"># Update package list
|
||
|
|
sudo apt update
|
||
|
|
|
||
|
|
# Install prerequisites
|
||
|
|
sudo apt install -y curl git build-essential
|
||
|
|
|
||
|
|
# Install Nushell (from GitHub releases)
|
||
|
|
curl -LO https://github.com/nushell/nushell/releases/download/0.107.1/nu-0.107.1-x86_64-linux-musl.tar.gz
|
||
|
|
tar xzf nu-0.107.1-x86_64-linux-musl.tar.gz
|
||
|
|
sudo mv nu /usr/local/bin/
|
||
|
|
|
||
|
|
# Install KCL
|
||
|
|
curl -LO https://github.com/kcl-lang/cli/releases/download/v0.11.2/kcl-v0.11.2-linux-amd64.tar.gz
|
||
|
|
tar xzf kcl-v0.11.2-linux-amd64.tar.gz
|
||
|
|
sudo mv kcl /usr/local/bin/
|
||
|
|
|
||
|
|
# Install Docker
|
||
|
|
sudo apt install -y docker.io
|
||
|
|
sudo systemctl enable --now docker
|
||
|
|
sudo usermod -aG docker $USER
|
||
|
|
|
||
|
|
# Install SOPS
|
||
|
|
curl -LO https://github.com/getsops/sops/releases/download/v3.10.2/sops-v3.10.2.linux.amd64
|
||
|
|
chmod +x sops-v3.10.2.linux.amd64
|
||
|
|
sudo mv sops-v3.10.2.linux.amd64 /usr/local/bin/sops
|
||
|
|
|
||
|
|
# Install Age
|
||
|
|
sudo apt install -y age
|
||
|
|
</code></pre>
|
||
|
|
<h3 id="fedorarhel"><a class="header" href="#fedorarhel">Fedora/RHEL</a></h3>
|
||
|
|
<pre><code class="language-bash"># Install Nushell
|
||
|
|
sudo dnf install -y nushell
|
||
|
|
|
||
|
|
# Install KCL (from releases)
|
||
|
|
curl -LO https://github.com/kcl-lang/cli/releases/download/v0.11.2/kcl-v0.11.2-linux-amd64.tar.gz
|
||
|
|
tar xzf kcl-v0.11.2-linux-amd64.tar.gz
|
||
|
|
sudo mv kcl /usr/local/bin/
|
||
|
|
|
||
|
|
# Install Docker
|
||
|
|
sudo dnf install -y docker
|
||
|
|
sudo systemctl enable --now docker
|
||
|
|
sudo usermod -aG docker $USER
|
||
|
|
|
||
|
|
# Install SOPS
|
||
|
|
sudo dnf install -y sops
|
||
|
|
|
||
|
|
# Install Age
|
||
|
|
sudo dnf install -y age
|
||
|
|
</code></pre>
|
||
|
|
<h2 id="network-requirements"><a class="header" href="#network-requirements">Network Requirements</a></h2>
|
||
|
|
<h3 id="firewall-ports"><a class="header" href="#firewall-ports">Firewall Ports</a></h3>
|
||
|
|
<p>If running platform services, ensure these ports are available:</p>
|
||
|
|
<div class="table-wrapper"><table><thead><tr><th>Service</th><th>Port</th><th>Protocol</th><th>Purpose</th></tr></thead><tbody>
|
||
|
|
<tr><td>Orchestrator</td><td>8080</td><td>HTTP</td><td>Workflow API</td></tr>
|
||
|
|
<tr><td>Control Center</td><td>9090</td><td>HTTP</td><td>Policy engine</td></tr>
|
||
|
|
<tr><td>KMS Service</td><td>8082</td><td>HTTP</td><td>Key management</td></tr>
|
||
|
|
<tr><td>API Server</td><td>8083</td><td>HTTP</td><td>REST API</td></tr>
|
||
|
|
<tr><td>Extension Registry</td><td>8084</td><td>HTTP</td><td>Extension discovery</td></tr>
|
||
|
|
<tr><td>OCI Registry</td><td>5000</td><td>HTTP</td><td>Artifact storage</td></tr>
|
||
|
|
</tbody></table>
|
||
|
|
</div>
|
||
|
|
<h3 id="external-connectivity"><a class="header" href="#external-connectivity">External Connectivity</a></h3>
|
||
|
|
<p>The platform requires outbound internet access to:</p>
|
||
|
|
<ul>
|
||
|
|
<li>Download dependencies and updates</li>
|
||
|
|
<li>Pull container images</li>
|
||
|
|
<li>Access cloud provider APIs (AWS, UpCloud)</li>
|
||
|
|
<li>Fetch extension packages</li>
|
||
|
|
</ul>
|
||
|
|
<h2 id="cloud-provider-credentials-optional"><a class="header" href="#cloud-provider-credentials-optional">Cloud Provider Credentials (Optional)</a></h2>
|
||
|
|
<p>If you plan to use cloud providers, prepare credentials:</p>
|
||
|
|
<h3 id="aws"><a class="header" href="#aws">AWS</a></h3>
|
||
|
|
<ul>
|
||
|
|
<li>AWS Access Key ID</li>
|
||
|
|
<li>AWS Secret Access Key</li>
|
||
|
|
<li>Configured via <code>~/.aws/credentials</code> or environment variables</li>
|
||
|
|
</ul>
|
||
|
|
<h3 id="upcloud"><a class="header" href="#upcloud">UpCloud</a></h3>
|
||
|
|
<ul>
|
||
|
|
<li>UpCloud username</li>
|
||
|
|
<li>UpCloud password</li>
|
||
|
|
<li>Configured via environment variables or config files</li>
|
||
|
|
</ul>
|
||
|
|
<h2 id="next-steps"><a class="header" href="#next-steps">Next Steps</a></h2>
|
||
|
|
<p>Once all prerequisites are met, proceed to:
|
||
|
|
→ <strong><a href="02-installation.html">Installation</a></strong></p>
|
||
|
|
|
||
|
|
</main>
|
||
|
|
|
||
|
|
<nav class="nav-wrapper" aria-label="Page navigation">
|
||
|
|
<!-- Mobile navigation buttons -->
|
||
|
|
<a rel="prev" href="../GLOSSARY.html" class="mobile-nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left">
|
||
|
|
<i class="fa fa-angle-left"></i>
|
||
|
|
</a>
|
||
|
|
|
||
|
|
<a rel="next prefetch" href="../quickstart/02-installation.html" class="mobile-nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right">
|
||
|
|
<i class="fa fa-angle-right"></i>
|
||
|
|
</a>
|
||
|
|
|
||
|
|
<div style="clear: both"></div>
|
||
|
|
</nav>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<nav class="nav-wide-wrapper" aria-label="Page navigation">
|
||
|
|
<a rel="prev" href="../GLOSSARY.html" class="nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left">
|
||
|
|
<i class="fa fa-angle-left"></i>
|
||
|
|
</a>
|
||
|
|
|
||
|
|
<a rel="next prefetch" href="../quickstart/02-installation.html" class="nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right">
|
||
|
|
<i class="fa fa-angle-right"></i>
|
||
|
|
</a>
|
||
|
|
</nav>
|
||
|
|
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<!-- Livereload script (if served using the cli tool) -->
|
||
|
|
<script>
|
||
|
|
const wsProtocol = location.protocol === 'https:' ? 'wss:' : 'ws:';
|
||
|
|
const wsAddress = wsProtocol + "//" + location.host + "/" + "__livereload";
|
||
|
|
const socket = new WebSocket(wsAddress);
|
||
|
|
socket.onmessage = function (event) {
|
||
|
|
if (event.data === "reload") {
|
||
|
|
socket.close();
|
||
|
|
location.reload();
|
||
|
|
}
|
||
|
|
};
|
||
|
|
|
||
|
|
window.onbeforeunload = function() {
|
||
|
|
socket.close();
|
||
|
|
}
|
||
|
|
</script>
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
<script>
|
||
|
|
window.playground_copyable = true;
|
||
|
|
</script>
|
||
|
|
|
||
|
|
|
||
|
|
<script src="../elasticlunr.min.js"></script>
|
||
|
|
<script src="../mark.min.js"></script>
|
||
|
|
<script src="../searcher.js"></script>
|
||
|
|
|
||
|
|
<script src="../clipboard.min.js"></script>
|
||
|
|
<script src="../highlight.js"></script>
|
||
|
|
<script src="../book.js"></script>
|
||
|
|
|
||
|
|
<!-- Custom JS scripts -->
|
||
|
|
|
||
|
|
|
||
|
|
</div>
|
||
|
|
</body>
|
||
|
|
</html>
|