Skip to content

Commit

Permalink
[CI] Publish Documentation for 812bdc9 - 812bdc9 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
gnunn1 committed Oct 16, 2023
1 parent aa48804 commit 3d1c458
Show file tree
Hide file tree
Showing 2 changed files with 67 additions and 10 deletions.
71 changes: 64 additions & 7 deletions argo-rollouts-workshop/main/02-workshop-overview.html
Original file line number Diff line number Diff line change
Expand Up @@ -273,14 +273,14 @@ <h3 id="_clone_the_repository"><a class="anchor" href="#_clone_the_repository"><
<p>All of the code used in this workshop will be located in:</p>
</div>
<div class="paragraph">
<p><code>~/argo-rollouts-workshop/code</code></p>
<p><code>~/argo-rollouts-workshop/docmentation/modules/ROOT/examples</code></p>
</div>
<div class="paragraph">
<p>Once you have cloned the repo, enter the <code>argo-rollouts-workshop</code> directory:</p>
<p>Once you have cloned the repo, enter this directory in the terminal:</p>
</div>
<div class="listingblock console-input">
<div class="content">
<pre class="highlightjs highlight"><code class="language-bash hljs" data-lang="bash">cd argo-rollouts-workshop</code></pre>
<pre class="highlightjs highlight"><code class="language-bash hljs" data-lang="bash">cd argo-rollouts-workshop/docmentation/modules/ROOT/examples</code></pre>
</div>
</div>
<div class="admonitionblock important">
Expand Down Expand Up @@ -315,7 +315,7 @@ <h3 id="_deploy_development"><a class="anchor" href="#_deploy_development"></a>D
</div>
<div class="listingblock console-input">
<div class="content">
<pre class="highlightjs highlight"><code class="language-bash hljs" data-lang="bash">ls code/deploy/base</code></pre>
<pre class="highlightjs highlight"><code class="language-bash hljs" data-lang="bash">ls ./deploy/base</code></pre>
</div>
</div>
<div class="paragraph">
Expand All @@ -325,19 +325,67 @@ <h3 id="_deploy_development"><a class="anchor" href="#_deploy_development"></a>D
<div class="listingblock">
<div class="title">link:https://github.com/OpenShiftDemos/argo-rollouts-workshop/blob/main/code/deploy/base/deploy.yaml,window='_blank']</div>
<div class="content">
<pre class="highlightjs highlight"><code class="language-yaml hljs" data-lang="yaml">Unresolved include directive in modules/ROOT/pages/02-workshop-overview.adoc - include::ROOT/../../code/deploy/base/deploy.yaml[]</code></pre>
<pre class="highlightjs highlight"><code class="language-yaml hljs" data-lang="yaml">apiVersion: apps/v1
kind: Deployment
metadata:
name: rollouts-demo
spec:
replicas: 2
revisionHistoryLimit: 10
selector:
matchLabels:
app: rollouts-demo
template:
metadata:
labels:
app: rollouts-demo
spec:
containers:
- image: docker.io/argoproj/rollouts-demo:blue
imagePullPolicy: IfNotPresent
name: rollouts-demo
ports:
- containerPort: 8080
protocol: TCP
terminationMessagePath: /dev/termination-log
terminationMessagePolicy: File
dnsPolicy: ClusterFirst
schedulerName: default-scheduler
terminationGracePeriodSeconds: 30</code></pre>
</div>
</div>
<div class="listingblock">
<div class="title">link:https://github.com/OpenShiftDemos/argo-rollouts-workshop/blob/main/code/deploy/base/service.yaml,window='_blank']</div>
<div class="content">
<pre class="highlightjs highlight"><code class="language-yaml hljs" data-lang="yaml">Unresolved include directive in modules/ROOT/pages/02-workshop-overview.adoc - include::ROOT/../../code/deploy/base/service.yaml[]</code></pre>
<pre class="highlightjs highlight"><code class="language-yaml hljs" data-lang="yaml">apiVersion: v1
kind: Service
metadata:
labels:
app: rollouts-demo
name: rollouts-demo
spec:
ports:
- port: 8080
protocol: TCP
targetPort: 8080
name: http
selector:
app: rollouts-demo</code></pre>
</div>
</div>
<div class="listingblock">
<div class="title">link:https://github.com/OpenShiftDemos/argo-rollouts-workshop/blob/main/code/deploy/base/route.yaml,window='_blank']</div>
<div class="content">
<pre class="highlightjs highlight"><code class="language-yaml hljs" data-lang="yaml">Unresolved include directive in modules/ROOT/pages/02-workshop-overview.adoc - include::ROOT/../../code/deploy/base/route.yaml[]</code></pre>
<pre class="highlightjs highlight"><code class="language-yaml hljs" data-lang="yaml">apiVersion: route.openshift.io/v1
kind: Route
metadata:
name: rollouts-demo
spec:
port:
targetPort: http
to:
kind: Service
name: rollouts-demo</code></pre>
</div>
</div>
<div class="admonitionblock note">
Expand All @@ -359,6 +407,15 @@ <h3 id="_deploy_development"><a class="anchor" href="#_deploy_development"></a>D
the management of Kubernetes manifests. Kustomize and Helm are the two most popular yaml management tools
in GitOps and we use kustomize here to simplify our deployments.</p>
</div>
<div class="listingblock">
<div class="title">link:https://github.com/OpenShiftDemos/argo-rollouts-workshop/blob/main/code/deploy/base/kustomization.yaml,window='_blank']</div>
<div class="content">
<pre class="highlightjs highlight"><code class="language-yaml hljs" data-lang="yaml">resources:
- deploy.yaml
- route.yaml
- service.yaml</code></pre>
</div>
</div>
<div class="paragraph">
<p>To deploy the application in Development, run the following command in the terminal:</p>
</div>
Expand Down
6 changes: 3 additions & 3 deletions sitemap.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>https://openshiftdemos.github.io/argo-rollouts-workshop/argo-rollouts-workshop/main/01-getting-started.html</loc>
<lastmod>2023-10-16T00:48:46.415Z</lastmod>
<lastmod>2023-10-16T01:05:24.360Z</lastmod>
</url>
<url>
<loc>https://openshiftdemos.github.io/argo-rollouts-workshop/argo-rollouts-workshop/main/02-workshop-overview.html</loc>
<lastmod>2023-10-16T00:48:46.415Z</lastmod>
<lastmod>2023-10-16T01:05:24.360Z</lastmod>
</url>
<url>
<loc>https://openshiftdemos.github.io/argo-rollouts-workshop/argo-rollouts-workshop/main/index.html</loc>
<lastmod>2023-10-16T00:48:46.415Z</lastmod>
<lastmod>2023-10-16T01:05:24.360Z</lastmod>
</url>
</urlset>

0 comments on commit 3d1c458

Please sign in to comment.