Skip to content

Commit 04f78ea

Browse files
author
Shriram Rajagopalan
committed
placeholder files for tasks
1 parent 99a9d8f commit 04f78ea

11 files changed

+314
-11
lines changed

_includes/doc-side-tasks-nav.html

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
<ul class="doc-side-nav doc-side-nav-tasks">
22
{% assign current = page.url | downcase | split: '/' %}
33
<li><h5 class="doc-side-nav-title">Tasks</h5></li>
4-
<li class="doc-side-nav-list-item"><a href="{{ site.baseurl }}/docs/tasks/getting-started.html" {% if current[3] == 'getting-started.html' %}class='current'{% endif %}>Getting Started</a></li>
5-
<li class="doc-side-nav-list-item"><a href="{{ site.baseurl }}/docs/tasks/timeout-injection.html" {% if current[3] == 'timeout-injection.html' %}class='current'{% endif %}>Timeout Injection</a></li>
4+
<li class="doc-side-nav-list-item"><a href="{{ site.baseurl }}/docs/tasks/istio-installation.html" {% if current[3] == 'istio-installation.html' %}class='current'{% endif %}>Installation</a></li>
5+
<li class="doc-side-nav-list-item"><a href="{{ site.baseurl}}/docs/tasks/integrating-services-into-istio.html" {% if current[3] == 'integrating-services-into-istio.html'%}class='current'{% endif %}>Integrating Services into the Mesh</a></li>
6+
<li class="doc-side-nav-list-item"><a href="{{ site.baseurl}}/docs/tasks/ingress-egress-envoy.html" {% if current[3] == 'ingress-egress-envoy.html'%}class='current'{% endif %}>Configuring Ingress/Egress with Envoy</a></li>
7+
<li class="doc-side-nav-list-item"><a href="{{ site.baseurl}}/docs/tasks/resilience-features.html" {% if current[3] == 'resilience-features.html'%}class='current'{% endif %}>Adding Resilience Features</a></li>
8+
<li class="doc-side-nav-list-item"><a href="{{ site.baseurl}}/docs/tasks/request-routing.html" {% if current[3] == 'request-routing.html'%}class='current'{% endif %}>Configuring Request Routing</a></li>
9+
<li class="doc-side-nav-list-item"><a href="{{ site.baseurl}}/docs/tasks/fault-injection.html" {% if current[3] == 'fault-injection.html'%}class='current'{% endif %}>Fault Injection</a></li>
10+
<li class="doc-side-nav-list-item"><a href="{{ site.baseurl}}/docs/tasks/istio-auth.html" {% if current[3] == 'istio-auth.html'%}class='current'{% endif %}>Enabling Istio-Auth</a></li>
11+
<li class="doc-side-nav-list-item"><a href="{{ site.baseurl}}/docs/tasks/metrics-logs.html" {% if current[3] == 'metrics-logs.html'%}class='current'{% endif %}>Collecting Metrics and Logs</a></li>
12+
<li class="doc-side-nav-list-item"><a href="{{ site.baseurl}}/docs/tasks/configuring-mixer.html" {% if current[3] == 'configuring-mixer.html'%}class='current'{% endif %}>Configuring Mixer</a></li>
613
</ul>

docs/tasks/configuring-mixer.md

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
---
2+
title: Task X
3+
headline: Task X
4+
sidenav: doc-side-tasks-nav.html
5+
bodyclass: docs
6+
layout: docs
7+
type: markdown
8+
---
9+
{% capture overview %}
10+
This task shows how to do X in a Kubernetes cluster. You'll learn
11+
how to ...
12+
{% endcapture %}
13+
14+
{% capture prerequisites %}
15+
* Do this.
16+
* Do this too.
17+
{% endcapture %}
18+
19+
{% capture steps %}
20+
## Doing ...
21+
22+
1. Do this.
23+
1. Do this next. Possibly read this [related explanation](...).
24+
{% endcapture %}
25+
26+
{% capture discussion %}
27+
## Understanding ...
28+
29+
Here's an interesting thing to know about the steps you just did.
30+
{% endcapture %}
31+
32+
{% capture whatsnext %}
33+
* Learn more about [this](...).
34+
* See this [related task](...).
35+
{% endcapture %}
36+
37+
{% include templates/task.md %}

docs/tasks/fault-injection.md

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
---
2+
title: Task X
3+
headline: Task X
4+
sidenav: doc-side-tasks-nav.html
5+
bodyclass: docs
6+
layout: docs
7+
type: markdown
8+
---
9+
{% capture overview %}
10+
This task shows how to do X in a Kubernetes cluster. You'll learn
11+
how to ...
12+
{% endcapture %}
13+
14+
{% capture prerequisites %}
15+
* Do this.
16+
* Do this too.
17+
{% endcapture %}
18+
19+
{% capture steps %}
20+
## Doing ...
21+
22+
1. Do this.
23+
1. Do this next. Possibly read this [related explanation](...).
24+
{% endcapture %}
25+
26+
{% capture discussion %}
27+
## Understanding ...
28+
29+
Here's an interesting thing to know about the steps you just did.
30+
{% endcapture %}
31+
32+
{% capture whatsnext %}
33+
* Learn more about [this](...).
34+
* See this [related task](...).
35+
{% endcapture %}
36+
37+
{% include templates/task.md %}

docs/tasks/index.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -11,30 +11,30 @@ type: markdown
1111
Tasks show you how to do a single specific targeted
1212
activity with the Istio system.
1313

14-
- [Installion](./task-template.html). This task shows you how to
14+
- [Installion](./istio-installation.html). This task shows you how to
1515
setup Istio service mesh.
1616

17-
- [Integrating Services into the Mesh](./task-template.html). This task shows you how to
17+
- [Integrating Services into the Mesh](./integrating-services-into-istio.html). This task shows you how to
1818
integrate your applications with Istio service mesh.
1919

20-
- [Configuring Ingress/Egress with Envoy](./task-template.html). This task shows you how to
20+
- [Configuring Ingress/Egress with Envoy](./ingress-egress-envoy.html). This task shows you how to
2121
setup the Istio Ingress controller and the Egress proxy.
2222

23-
- [Adding Resilience Features](./task-template.html). This task shows you how to
23+
- [Adding Resilience Features](./resilience-features.html). This task shows you how to
2424
setup timeouts, retries and circuit breakers.
2525

26-
- [Configuring Request Routing](./task-template.html). This task shows you how to
26+
- [Configuring Request Routing](./request-routing.html). This task shows you how to
2727
configure dynamic request routing based on weights and http headers.
2828

29-
- [Fault Injection](./task-template.html). This task shows how to
29+
- [Fault Injection](./fault-injection.html). This task shows how to
3030
inject failures into your application.
3131

32-
- [Enabling Istio-Auth](./task-template.html). This task shows you how to
32+
- [Enabling Istio-Auth](./istio-auth.html). This task shows you how to
3333
setup Istio-Auth to provide mutual TLS authentication between services.
3434

35-
- [Collecting Metrics and Logs](./task-template.html). This task shows you how to
35+
- [Collecting Metrics and Logs](./metrics-logs.html). This task shows you how to
3636
configure the Istio Mixer to collect metrics and logs from Envoys in
3737
every Pod.
3838

39-
- [Configuring Mixer](./task-template.html). This task shows you how to
39+
- [Configuring Mixer](./configuring-mixer.html). This task shows you how to
4040
configure the Mixer.

docs/tasks/ingress-egress-envoy.md

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
---
2+
title: Task X
3+
headline: Task X
4+
sidenav: doc-side-tasks-nav.html
5+
bodyclass: docs
6+
layout: docs
7+
type: markdown
8+
---
9+
{% capture overview %}
10+
This task shows how to do X in a Kubernetes cluster. You'll learn
11+
how to ...
12+
{% endcapture %}
13+
14+
{% capture prerequisites %}
15+
* Do this.
16+
* Do this too.
17+
{% endcapture %}
18+
19+
{% capture steps %}
20+
## Doing ...
21+
22+
1. Do this.
23+
1. Do this next. Possibly read this [related explanation](...).
24+
{% endcapture %}
25+
26+
{% capture discussion %}
27+
## Understanding ...
28+
29+
Here's an interesting thing to know about the steps you just did.
30+
{% endcapture %}
31+
32+
{% capture whatsnext %}
33+
* Learn more about [this](...).
34+
* See this [related task](...).
35+
{% endcapture %}
36+
37+
{% include templates/task.md %}
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
---
2+
title: Task X
3+
headline: Task X
4+
sidenav: doc-side-tasks-nav.html
5+
bodyclass: docs
6+
layout: docs
7+
type: markdown
8+
---
9+
{% capture overview %}
10+
This task shows how to do X in a Kubernetes cluster. You'll learn
11+
how to ...
12+
{% endcapture %}
13+
14+
{% capture prerequisites %}
15+
* Do this.
16+
* Do this too.
17+
{% endcapture %}
18+
19+
{% capture steps %}
20+
## Doing ...
21+
22+
1. Do this.
23+
1. Do this next. Possibly read this [related explanation](...).
24+
{% endcapture %}
25+
26+
{% capture discussion %}
27+
## Understanding ...
28+
29+
Here's an interesting thing to know about the steps you just did.
30+
{% endcapture %}
31+
32+
{% capture whatsnext %}
33+
* Learn more about [this](...).
34+
* See this [related task](...).
35+
{% endcapture %}
36+
37+
{% include templates/task.md %}

docs/tasks/istio-auth.md

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
---
2+
title: Task X
3+
headline: Task X
4+
sidenav: doc-side-tasks-nav.html
5+
bodyclass: docs
6+
layout: docs
7+
type: markdown
8+
---
9+
{% capture overview %}
10+
This task shows how to do X in a Kubernetes cluster. You'll learn
11+
how to ...
12+
{% endcapture %}
13+
14+
{% capture prerequisites %}
15+
* Do this.
16+
* Do this too.
17+
{% endcapture %}
18+
19+
{% capture steps %}
20+
## Doing ...
21+
22+
1. Do this.
23+
1. Do this next. Possibly read this [related explanation](...).
24+
{% endcapture %}
25+
26+
{% capture discussion %}
27+
## Understanding ...
28+
29+
Here's an interesting thing to know about the steps you just did.
30+
{% endcapture %}
31+
32+
{% capture whatsnext %}
33+
* Learn more about [this](...).
34+
* See this [related task](...).
35+
{% endcapture %}
36+
37+
{% include templates/task.md %}
File renamed without changes.

docs/tasks/metrics-logs.md

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
---
2+
title: Task X
3+
headline: Task X
4+
sidenav: doc-side-tasks-nav.html
5+
bodyclass: docs
6+
layout: docs
7+
type: markdown
8+
---
9+
{% capture overview %}
10+
This task shows how to do X in a Kubernetes cluster. You'll learn
11+
how to ...
12+
{% endcapture %}
13+
14+
{% capture prerequisites %}
15+
* Do this.
16+
* Do this too.
17+
{% endcapture %}
18+
19+
{% capture steps %}
20+
## Doing ...
21+
22+
1. Do this.
23+
1. Do this next. Possibly read this [related explanation](...).
24+
{% endcapture %}
25+
26+
{% capture discussion %}
27+
## Understanding ...
28+
29+
Here's an interesting thing to know about the steps you just did.
30+
{% endcapture %}
31+
32+
{% capture whatsnext %}
33+
* Learn more about [this](...).
34+
* See this [related task](...).
35+
{% endcapture %}
36+
37+
{% include templates/task.md %}

docs/tasks/request-routing.md

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
---
2+
title: Task X
3+
headline: Task X
4+
sidenav: doc-side-tasks-nav.html
5+
bodyclass: docs
6+
layout: docs
7+
type: markdown
8+
---
9+
{% capture overview %}
10+
This task shows how to do X in a Kubernetes cluster. You'll learn
11+
how to ...
12+
{% endcapture %}
13+
14+
{% capture prerequisites %}
15+
* Do this.
16+
* Do this too.
17+
{% endcapture %}
18+
19+
{% capture steps %}
20+
## Doing ...
21+
22+
1. Do this.
23+
1. Do this next. Possibly read this [related explanation](...).
24+
{% endcapture %}
25+
26+
{% capture discussion %}
27+
## Understanding ...
28+
29+
Here's an interesting thing to know about the steps you just did.
30+
{% endcapture %}
31+
32+
{% capture whatsnext %}
33+
* Learn more about [this](...).
34+
* See this [related task](...).
35+
{% endcapture %}
36+
37+
{% include templates/task.md %}

docs/tasks/resilience-features.md

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
---
2+
title: Task X
3+
headline: Task X
4+
sidenav: doc-side-tasks-nav.html
5+
bodyclass: docs
6+
layout: docs
7+
type: markdown
8+
---
9+
{% capture overview %}
10+
This task shows how to do X in a Kubernetes cluster. You'll learn
11+
how to ...
12+
{% endcapture %}
13+
14+
{% capture prerequisites %}
15+
* Do this.
16+
* Do this too.
17+
{% endcapture %}
18+
19+
{% capture steps %}
20+
## Doing ...
21+
22+
1. Do this.
23+
1. Do this next. Possibly read this [related explanation](...).
24+
{% endcapture %}
25+
26+
{% capture discussion %}
27+
## Understanding ...
28+
29+
Here's an interesting thing to know about the steps you just did.
30+
{% endcapture %}
31+
32+
{% capture whatsnext %}
33+
* Learn more about [this](...).
34+
* See this [related task](...).
35+
{% endcapture %}
36+
37+
{% include templates/task.md %}

0 commit comments

Comments
 (0)