mirror of
https://github.com/yannh/kubeconform.git
synced 2026-05-06 02:04:25 +00:00
Minor css updates
This commit is contained in:
parent
d10c9bde67
commit
607c90a0a9
22 changed files with 418 additions and 987 deletions
|
|
@ -1,83 +1,59 @@
|
|||
<!DOCTYPE html>
|
||||
<html><head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="author" content="Yann Hamon">
|
||||
<link rel="stylesheet" type="text/css" href="/css/style.css"><link rel="stylesheet" type="text/css" href="/css/prism.css">
|
||||
<title>Kubeconform - Fast Kubernetes manifests validation! | Installation</title>
|
||||
<!doctype html><html><head>
|
||||
<meta charset=utf-8>
|
||||
<meta name=author content="Yann Hamon">
|
||||
<link rel=stylesheet type=text/css href=/css/style.css><link rel=stylesheet type=text/css href=/css/prism.css>
|
||||
<title>Kubeconform - Fast Kubernetes manifests validation! | Installation</title>
|
||||
</head>
|
||||
<body>
|
||||
<div id="main-container"><div id="header">
|
||||
<ul id="navigation">
|
||||
<li><a href="/about">About</a></li>
|
||||
<li><a href="/docs/installation/">Docs</a></li>
|
||||
<li><a href="/">Home</a></li>
|
||||
</ul>
|
||||
<h1>Kubeconform</h1>
|
||||
<h2>A fast Kubernetes manifests validator</h2>
|
||||
</div>
|
||||
<div id="content"><ul id="menu">
|
||||
|
||||
<li><a href="http://kubeconform.mandragor.org/docs/overview/">Overview</a></li>
|
||||
|
||||
<li><a href="http://kubeconform.mandragor.org/docs/installation/">Installation</a></li>
|
||||
|
||||
<li><a href="http://kubeconform.mandragor.org/docs/usage/">Usage</a></li>
|
||||
|
||||
<li><a href="http://kubeconform.mandragor.org/docs/crd-support/">Custom Resources support</a></li>
|
||||
|
||||
<li><a href="http://kubeconform.mandragor.org/docs/json-schema-conversion/">OpenAPI to JSON Schema conversion</a></li>
|
||||
|
||||
<li><a href="http://kubeconform.mandragor.org/docs/usage-as-github-action/">Github Action</a></li>
|
||||
|
||||
<li><a href="http://kubeconform.mandragor.org/docs/using-as-a-go-module/">Kubeconform as a Go module</a></li>
|
||||
|
||||
<div id=main-container><div id=header>
|
||||
<ul id=navigation>
|
||||
<li><a href=/about>About</a></li>
|
||||
<li><a href=https://github.com/yannh/kubeconform/>Github</a></li>
|
||||
<li><a href=/docs/installation/>Docs</a></li>
|
||||
<li><a href=/>Home</a></li>
|
||||
</ul>
|
||||
<div id="main">
|
||||
|
||||
<div class="navig">
|
||||
|
||||
<a href="http://kubeconform.mandragor.org/docs/overview/" id="prev">< Overview</a>
|
||||
|
||||
|
||||
<a href="http://kubeconform.mandragor.org/docs/usage/" id="next">Usage ></a>
|
||||
|
||||
<h1>Kubeconform</h1>
|
||||
<h2>A fast Kubernetes manifests validator</h2>
|
||||
</div>
|
||||
|
||||
<div id="content-text">
|
||||
<div id=content><ul id=menu>
|
||||
<li><a href=http://kubeconform.mandragor.org/docs/overview/>Overview</a></li>
|
||||
<li><a href=http://kubeconform.mandragor.org/docs/installation/>Installation</a></li>
|
||||
<li><a href=http://kubeconform.mandragor.org/docs/usage/>Usage</a></li>
|
||||
<li><a href=http://kubeconform.mandragor.org/docs/crd-support/>Custom Resources support</a></li>
|
||||
<li><a href=http://kubeconform.mandragor.org/docs/json-schema-conversion/>OpenAPI to JSON Schema conversion</a></li>
|
||||
<li><a href=http://kubeconform.mandragor.org/docs/usage-as-github-action/>Github Action</a></li>
|
||||
<li><a href=http://kubeconform.mandragor.org/docs/using-as-a-go-module/>Kubeconform as a Go module</a></li>
|
||||
</ul>
|
||||
<div id=main>
|
||||
<div class=navig>
|
||||
<a href=http://kubeconform.mandragor.org/docs/overview/ id=prev>< Overview</a>
|
||||
<a href=http://kubeconform.mandragor.org/docs/usage/ id=next>Usage ></a>
|
||||
</div>
|
||||
<div id=content-text>
|
||||
<h1>Installation</h1>
|
||||
<h2 id="linux">Linux</h2>
|
||||
<p>Download the latest release from our <a href="https://github.com/yannh/kubeconform/releases">release page</a>.</p>
|
||||
<h2 id=linux>Linux</h2>
|
||||
<p>Download the latest release from our <a href=https://github.com/yannh/kubeconform/releases>release page</a>.</p>
|
||||
<p>For example, for Linux on x86_64 architecture:</p>
|
||||
|
||||
<pre><code class="language-bash">curl -L https://github.com/yannh/kubeconform/releases/latest/download/kubeconform-linux-amd64.tar.gz | tar xvzf - && \
|
||||
<pre><code class=language-bash>curl -L https://github.com/yannh/kubeconform/releases/latest/download/kubeconform-linux-amd64.tar.gz | tar xvzf - && \
|
||||
sudo mv kubeconform /usr/local/bin/
|
||||
</code></pre>
|
||||
<h2 id="macos">MacOs</h2>
|
||||
<p>Kubeconform is available to install using <a href="https://brew.sh/">Homebrew</a>:
|
||||
|
||||
<pre><code class="language-bash">$ brew install kubeconform
|
||||
<h2 id=macos>MacOs</h2>
|
||||
<p>Kubeconform is available to install using <a href=https://brew.sh/>Homebrew</a>:
|
||||
<pre><code class=language-bash>$ brew install kubeconform
|
||||
</code></pre></p>
|
||||
<h2 id="windows">Windows</h2>
|
||||
<p>Download the latest release from our <a href="https://github.com/yannh/kubeconform/releases">release page</a>.</p>
|
||||
|
||||
<h2 id=windows>Windows</h2>
|
||||
<p>Download the latest release from our <a href=https://github.com/yannh/kubeconform/releases>release page</a>.</p>
|
||||
</div>
|
||||
|
||||
<div class="navig">
|
||||
|
||||
<a href="http://kubeconform.mandragor.org/docs/overview/" id="prev">< Overview</a>
|
||||
|
||||
|
||||
<a href="http://kubeconform.mandragor.org/docs/usage/" id="next">Usage ></a>
|
||||
|
||||
<div class=navig>
|
||||
<a href=http://kubeconform.mandragor.org/docs/overview/ id=prev>< Overview</a>
|
||||
<a href=http://kubeconform.mandragor.org/docs/usage/ id=next>Usage ></a>
|
||||
</div>
|
||||
|
||||
<script defer src="/js/prism.js"></script>
|
||||
|
||||
</div>
|
||||
</div><div id="footer">
|
||||
Website powered by <a href="https://gohugo.io/">Hugo</a>
|
||||
<script defer src=/js/prism.js></script>
|
||||
</div>
|
||||
</div><div id=footer>
|
||||
Website powered by <a href=https://gohugo.io/>Hugo</a>
|
||||
</div>
|
||||
</div>
|
||||
<script defer src="/js/prism.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
<script defer src=/js/prism.js></script>
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue