Files
rancher-docs/layouts/shortcodes/release-channel.html
2019-02-16 19:57:19 -08:00

23 lines
713 B
HTML

<form id="release-channel">
<p>
<label>
<input type="radio" name="channel" value="latest" checked onchange="replaceReleaseChannel()">
Latest: Recommended for trying out the newest features
</label>
</p>
<p>
<label>
<input type="radio" name="channel" value="stable" onchange="replaceReleaseChannel()">
Stable: Recommended for production environments
</label>
</p>
<p>
<label>
<input type="radio" name="channel" value="alpha" onchange="replaceReleaseChannel()">
Alpha: Experimental preview of upcoming releases.
<br/>
<span class="text-sm">Note: Upgrades are not supported to, from, or between Alphas.</span>
</label>
</p>
</form>