Skip to content

Commit

Permalink
Updated pages for d6e5535
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions committed Feb 27, 2024
1 parent e609cf2 commit a9ee4fc
Show file tree
Hide file tree
Showing 39 changed files with 168 additions and 73 deletions.
2 changes: 1 addition & 1 deletion docs/404.html
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
<div class="nav-panel-explore is-active" data-panel="explore">
<ul class="components">
<li class="component">
<a class="title" href="/clowder/clowder/dev/index.html">Clowder</a>
<div class="title"><a href="/clowder/clowder/dev/index.html">Clowder</a></div>
<ul class="versions">
<li class="version is-latest">
<a href="/clowder/clowder/dev/index.html">dev</a>
Expand Down
2 changes: 1 addition & 1 deletion docs/clowder/dev/README.html
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ <h3 class="title"><a href="index.html">Clowder</a></h3>
</div>
<ul class="components">
<li class="component is-current">
<a class="title" href="index.html">Clowder</a>
<div class="title"><a href="index.html">Clowder</a></div>
<ul class="versions">
<li class="version is-current is-latest">
<a href="index.html">dev</a>
Expand Down
2 changes: 1 addition & 1 deletion docs/clowder/dev/api_reference.html
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ <h3 class="title"><a href="index.html">Clowder</a></h3>
</div>
<ul class="components">
<li class="component is-current">
<a class="title" href="index.html">Clowder</a>
<div class="title"><a href="index.html">Clowder</a></div>
<ul class="versions">
<li class="version is-current is-latest">
<a href="index.html">dev</a>
Expand Down
2 changes: 1 addition & 1 deletion docs/clowder/dev/clowder-design.html
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ <h3 class="title"><a href="index.html">Clowder</a></h3>
</div>
<ul class="components">
<li class="component is-current">
<a class="title" href="index.html">Clowder</a>
<div class="title"><a href="index.html">Clowder</a></div>
<ul class="versions">
<li class="version is-current is-latest">
<a href="index.html">dev</a>
Expand Down
97 changes: 96 additions & 1 deletion docs/clowder/dev/contributing.html
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ <h3 class="title"><a href="index.html">Clowder</a></h3>
</div>
<ul class="components">
<li class="component is-current">
<a class="title" href="index.html">Clowder</a>
<div class="title"><a href="index.html">Clowder</a></div>
<ul class="versions">
<li class="version is-current is-latest">
<a href="index.html">dev</a>
Expand Down Expand Up @@ -438,6 +438,101 @@ <h3 id="_caching_resources"><a class="anchor" href="#_caching_resources"></a>Cac
</div>
</div>
<div class="sect1">
<h2 id="_commits"><a class="anchor" href="#_commits"></a>Commits</h2>
<div class="sectionbody">
<div class="paragraph">
<p>We are currently testing <a href="https://www.conventionalcommits.org">Conventional Commits</a> as a mandatory
step in the pipeline. This requires that each commit to the repo be formatted in the following way:</p>
</div>
<div class="listingblock">
<div class="content">
<pre class="highlightjs highlight"><code class="language-text hljs" data-lang="text">&lt;purpose&gt;(&lt;scope&gt;): &lt;original commit message&gt;

Original multi line commit message
* with items
* in a list</code></pre>
</div>
</div>
<div class="paragraph">
<p>An example of this would be:</p>
</div>
<div class="listingblock">
<div class="content">
<pre class="highlightjs highlight"><code class="language-text hljs" data-lang="text">ci(lint): Adds conventional commits

* Adds conventional commits pipeline
* Updates documentation for the contribution to describe the addition of conventional commits</code></pre>
</div>
</div>
<div class="paragraph">
<p>It is fine to squash things down into smaller commits - you don&#8217;t have to have separate commits for everything you add, however, if you do this you <strong>MUST</strong> use the <code>!</code> flag appropriately, and it is highly suggested that you use the most significant <code>purpose</code> to help describe your change. For example, a change to a provider that adds a new feature and adds a test and documentation could be done as three commits with <code>feat:</code>, <code>test:</code>, <code>docs:</code>, but we will accept a single commit that uses <code>feat:</code> because the most significant work in this case is the introduction of a new feature.</p>
</div>
<div class="sect2">
<h3 id="_purposes"><a class="anchor" href="#_purposes"></a>Purposes</h3>
<div class="paragraph">
<p>Please refer to the <a href="https://www.conventionalcommits.org">Conventional Commits</a> website for more information. As a quick reference we strongly suggest using the following values for <code>purpose</code>:</p>
</div>
<div class="ulist">
<ul>
<li>
<p><code>fix</code>: For a bug fix</p>
</li>
<li>
<p><code>feat</code>: For a new feature</p>
</li>
<li>
<p><code>build</code>: For anything related to the building of containers</p>
</li>
<li>
<p><code>chore</code>: For any maintenance task</p>
</li>
<li>
<p><code>ci</code>: For anything related to the CI testing pipeline</p>
</li>
<li>
<p><code>docs</code>: For anything related to documentation</p>
</li>
<li>
<p><code>style</code>: For a stylisitic change, usually to adhere to a guideline</p>
</li>
<li>
<p><code>refactor</code>: For any improvements to code structure</p>
</li>
<li>
<p><code>perf</code>: For performance enhancements to code flow</p>
</li>
<li>
<p><code>test</code>: For any changes to tests</p>
</li>
</ul>
</div>
<div class="paragraph">
<p>Using a <code>!</code> after the <code>purpose/scope</code> denotes a breaking change in the context of Clowder, this should be used whenever the API for either the Clowd* CRD resources, as well as any change to the <code>cdappconfig.json</code> spec. An example of a breaing change is shown below:</p>
</div>
<div class="listingblock">
<div class="content">
<pre class="highlightjs highlight"><code class="language-text hljs" data-lang="text">chore(crd)!: Removes old web field value

* Removes the old web field</code></pre>
</div>
</div>
</div>
<div class="sect2">
<h3 id="_scopes"><a class="anchor" href="#_scopes"></a>Scopes</h3>
<div class="paragraph">
<p><code>scopes</code> are entirely optional, but using them to indicate changes to providers within clowder would be greatly appreciated. An example is shown below:</p>
</div>
<div class="listingblock">
<div class="content">
<pre class="highlightjs highlight"><code class="language-text hljs" data-lang="text">feat(database)!: Adds new mode for database provider

* Adds MSSQL mode for Clowder</code></pre>
</div>
</div>
</div>
</div>
</div>
<div class="sect1">
<h2 id="_pull_request_flow"><a class="anchor" href="#_pull_request_flow"></a>Pull Request Flow</h2>
<div class="sectionbody">
<div class="paragraph">
Expand Down
2 changes: 1 addition & 1 deletion docs/clowder/dev/crc-guide.html
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ <h3 class="title"><a href="index.html">Clowder</a></h3>
</div>
<ul class="components">
<li class="component is-current">
<a class="title" href="index.html">Clowder</a>
<div class="title"><a href="index.html">Clowder</a></div>
<ul class="versions">
<li class="version is-current is-latest">
<a href="index.html">dev</a>
Expand Down
2 changes: 1 addition & 1 deletion docs/clowder/dev/developer-guide.html
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ <h3 class="title"><a href="index.html">Clowder</a></h3>
</div>
<ul class="components">
<li class="component is-current">
<a class="title" href="index.html">Clowder</a>
<div class="title"><a href="index.html">Clowder</a></div>
<ul class="versions">
<li class="version is-current is-latest">
<a href="index.html">dev</a>
Expand Down
2 changes: 1 addition & 1 deletion docs/clowder/dev/faq.html
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ <h3 class="title"><a href="index.html">Clowder</a></h3>
</div>
<ul class="components">
<li class="component is-current">
<a class="title" href="index.html">Clowder</a>
<div class="title"><a href="index.html">Clowder</a></div>
<ul class="versions">
<li class="version is-current is-latest">
<a href="index.html">dev</a>
Expand Down
2 changes: 1 addition & 1 deletion docs/clowder/dev/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ <h3 class="title"><a href="index.html">Clowder</a></h3>
</div>
<ul class="components">
<li class="component is-current">
<a class="title" href="index.html">Clowder</a>
<div class="title"><a href="index.html">Clowder</a></div>
<ul class="versions">
<li class="version is-current is-latest">
<a href="index.html">dev</a>
Expand Down
2 changes: 1 addition & 1 deletion docs/clowder/dev/learn-more.html
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ <h3 class="title"><a href="index.html">Clowder</a></h3>
</div>
<ul class="components">
<li class="component is-current">
<a class="title" href="index.html">Clowder</a>
<div class="title"><a href="index.html">Clowder</a></div>
<ul class="versions">
<li class="version is-current is-latest">
<a href="index.html">dev</a>
Expand Down
2 changes: 1 addition & 1 deletion docs/clowder/dev/macos.html
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ <h3 class="title"><a href="index.html">Clowder</a></h3>
</div>
<ul class="components">
<li class="component is-current">
<a class="title" href="index.html">Clowder</a>
<div class="title"><a href="index.html">Clowder</a></div>
<ul class="versions">
<li class="version is-current is-latest">
<a href="index.html">dev</a>
Expand Down
2 changes: 1 addition & 1 deletion docs/clowder/dev/migration/checklist.html
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ <h3 class="title"><a href="../index.html">Clowder</a></h3>
</div>
<ul class="components">
<li class="component is-current">
<a class="title" href="../index.html">Clowder</a>
<div class="title"><a href="../index.html">Clowder</a></div>
<ul class="versions">
<li class="version is-current is-latest">
<a href="../index.html">dev</a>
Expand Down
2 changes: 1 addition & 1 deletion docs/clowder/dev/migration/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ <h3 class="title"><a href="../index.html">Clowder</a></h3>
</div>
<ul class="components">
<li class="component is-current">
<a class="title" href="../index.html">Clowder</a>
<div class="title"><a href="../index.html">Clowder</a></div>
<ul class="versions">
<li class="version is-current is-latest">
<a href="../index.html">dev</a>
Expand Down
2 changes: 1 addition & 1 deletion docs/clowder/dev/migration/migration.html
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ <h3 class="title"><a href="../index.html">Clowder</a></h3>
</div>
<ul class="components">
<li class="component is-current">
<a class="title" href="../index.html">Clowder</a>
<div class="title"><a href="../index.html">Clowder</a></div>
<ul class="versions">
<li class="version is-current is-latest">
<a href="../index.html">dev</a>
Expand Down
2 changes: 1 addition & 1 deletion docs/clowder/dev/providers/confighash.html
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ <h3 class="title"><a href="../index.html">Clowder</a></h3>
</div>
<ul class="components">
<li class="component is-current">
<a class="title" href="../index.html">Clowder</a>
<div class="title"><a href="../index.html">Clowder</a></div>
<ul class="versions">
<li class="version is-current is-latest">
<a href="../index.html">dev</a>
Expand Down
2 changes: 1 addition & 1 deletion docs/clowder/dev/providers/cronjob.html
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ <h3 class="title"><a href="../index.html">Clowder</a></h3>
</div>
<ul class="components">
<li class="component is-current">
<a class="title" href="../index.html">Clowder</a>
<div class="title"><a href="../index.html">Clowder</a></div>
<ul class="versions">
<li class="version is-current is-latest">
<a href="../index.html">dev</a>
Expand Down
2 changes: 1 addition & 1 deletion docs/clowder/dev/providers/database.html
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ <h3 class="title"><a href="../index.html">Clowder</a></h3>
</div>
<ul class="components">
<li class="component is-current">
<a class="title" href="../index.html">Clowder</a>
<div class="title"><a href="../index.html">Clowder</a></div>
<ul class="versions">
<li class="version is-current is-latest">
<a href="../index.html">dev</a>
Expand Down
2 changes: 1 addition & 1 deletion docs/clowder/dev/providers/dependencies.html
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ <h3 class="title"><a href="../index.html">Clowder</a></h3>
</div>
<ul class="components">
<li class="component is-current">
<a class="title" href="../index.html">Clowder</a>
<div class="title"><a href="../index.html">Clowder</a></div>
<ul class="versions">
<li class="version is-current is-latest">
<a href="../index.html">dev</a>
Expand Down
2 changes: 1 addition & 1 deletion docs/clowder/dev/providers/deployment.html
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ <h3 class="title"><a href="../index.html">Clowder</a></h3>
</div>
<ul class="components">
<li class="component is-current">
<a class="title" href="../index.html">Clowder</a>
<div class="title"><a href="../index.html">Clowder</a></div>
<ul class="versions">
<li class="version is-current is-latest">
<a href="../index.html">dev</a>
Expand Down
2 changes: 1 addition & 1 deletion docs/clowder/dev/providers/featureflags.html
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ <h3 class="title"><a href="../index.html">Clowder</a></h3>
</div>
<ul class="components">
<li class="component is-current">
<a class="title" href="../index.html">Clowder</a>
<div class="title"><a href="../index.html">Clowder</a></div>
<ul class="versions">
<li class="version is-current is-latest">
<a href="../index.html">dev</a>
Expand Down
2 changes: 1 addition & 1 deletion docs/clowder/dev/providers/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ <h3 class="title"><a href="../index.html">Clowder</a></h3>
</div>
<ul class="components">
<li class="component is-current">
<a class="title" href="../index.html">Clowder</a>
<div class="title"><a href="../index.html">Clowder</a></div>
<ul class="versions">
<li class="version is-current is-latest">
<a href="../index.html">dev</a>
Expand Down
2 changes: 1 addition & 1 deletion docs/clowder/dev/providers/inmemorydb.html
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ <h3 class="title"><a href="../index.html">Clowder</a></h3>
</div>
<ul class="components">
<li class="component is-current">
<a class="title" href="../index.html">Clowder</a>
<div class="title"><a href="../index.html">Clowder</a></div>
<ul class="versions">
<li class="version is-current is-latest">
<a href="../index.html">dev</a>
Expand Down
2 changes: 1 addition & 1 deletion docs/clowder/dev/providers/kafka.html
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ <h3 class="title"><a href="../index.html">Clowder</a></h3>
</div>
<ul class="components">
<li class="component is-current">
<a class="title" href="../index.html">Clowder</a>
<div class="title"><a href="../index.html">Clowder</a></div>
<ul class="versions">
<li class="version is-current is-latest">
<a href="../index.html">dev</a>
Expand Down
2 changes: 1 addition & 1 deletion docs/clowder/dev/providers/logging.html
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ <h3 class="title"><a href="../index.html">Clowder</a></h3>
</div>
<ul class="components">
<li class="component is-current">
<a class="title" href="../index.html">Clowder</a>
<div class="title"><a href="../index.html">Clowder</a></div>
<ul class="versions">
<li class="version is-current is-latest">
<a href="../index.html">dev</a>
Expand Down
2 changes: 1 addition & 1 deletion docs/clowder/dev/providers/metrics.html
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ <h3 class="title"><a href="../index.html">Clowder</a></h3>
</div>
<ul class="components">
<li class="component is-current">
<a class="title" href="../index.html">Clowder</a>
<div class="title"><a href="../index.html">Clowder</a></div>
<ul class="versions">
<li class="version is-current is-latest">
<a href="../index.html">dev</a>
Expand Down
2 changes: 1 addition & 1 deletion docs/clowder/dev/providers/objectstore.html
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ <h3 class="title"><a href="../index.html">Clowder</a></h3>
</div>
<ul class="components">
<li class="component is-current">
<a class="title" href="../index.html">Clowder</a>
<div class="title"><a href="../index.html">Clowder</a></div>
<ul class="versions">
<li class="version is-current is-latest">
<a href="../index.html">dev</a>
Expand Down
2 changes: 1 addition & 1 deletion docs/clowder/dev/providers/serviceaccount.html
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ <h3 class="title"><a href="../index.html">Clowder</a></h3>
</div>
<ul class="components">
<li class="component is-current">
<a class="title" href="../index.html">Clowder</a>
<div class="title"><a href="../index.html">Clowder</a></div>
<ul class="versions">
<li class="version is-current is-latest">
<a href="../index.html">dev</a>
Expand Down
2 changes: 1 addition & 1 deletion docs/clowder/dev/providers/servicemesh.html
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ <h3 class="title"><a href="../index.html">Clowder</a></h3>
</div>
<ul class="components">
<li class="component is-current">
<a class="title" href="../index.html">Clowder</a>
<div class="title"><a href="../index.html">Clowder</a></div>
<ul class="versions">
<li class="version is-current is-latest">
<a href="../index.html">dev</a>
Expand Down
2 changes: 1 addition & 1 deletion docs/clowder/dev/providers/sidecars.html
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ <h3 class="title"><a href="../index.html">Clowder</a></h3>
</div>
<ul class="components">
<li class="component is-current">
<a class="title" href="../index.html">Clowder</a>
<div class="title"><a href="../index.html">Clowder</a></div>
<ul class="versions">
<li class="version is-current is-latest">
<a href="../index.html">dev</a>
Expand Down
2 changes: 1 addition & 1 deletion docs/clowder/dev/providers/web.html
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ <h3 class="title"><a href="../index.html">Clowder</a></h3>
</div>
<ul class="components">
<li class="component is-current">
<a class="title" href="../index.html">Clowder</a>
<div class="title"><a href="../index.html">Clowder</a></div>
<ul class="versions">
<li class="version is-current is-latest">
<a href="../index.html">dev</a>
Expand Down
2 changes: 1 addition & 1 deletion docs/clowder/dev/sop.html
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ <h3 class="title"><a href="index.html">Clowder</a></h3>
</div>
<ul class="components">
<li class="component is-current">
<a class="title" href="index.html">Clowder</a>
<div class="title"><a href="index.html">Clowder</a></div>
<ul class="versions">
<li class="version is-current is-latest">
<a href="index.html">dev</a>
Expand Down
2 changes: 1 addition & 1 deletion docs/clowder/dev/usage/app-workflow.html
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ <h3 class="title"><a href="../index.html">Clowder</a></h3>
</div>
<ul class="components">
<li class="component is-current">
<a class="title" href="../index.html">Clowder</a>
<div class="title"><a href="../index.html">Clowder</a></div>
<ul class="versions">
<li class="version is-current is-latest">
<a href="../index.html">dev</a>
Expand Down
2 changes: 1 addition & 1 deletion docs/clowder/dev/usage/getting-started.html
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ <h3 class="title"><a href="../index.html">Clowder</a></h3>
</div>
<ul class="components">
<li class="component is-current">
<a class="title" href="../index.html">Clowder</a>
<div class="title"><a href="../index.html">Clowder</a></div>
<ul class="versions">
<li class="version is-current is-latest">
<a href="../index.html">dev</a>
Expand Down
Loading

0 comments on commit a9ee4fc

Please sign in to comment.