Skip to content

Commit 5144e73

Browse files
author
Shriram Rajagopalan
committed
placeholder tasks
1 parent d5cd407 commit 5144e73

File tree

3 files changed

+66
-6
lines changed

3 files changed

+66
-6
lines changed

docs/tasks/index.md

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

14-
- [Getting Started](./getting-started.html). This task shows you how to get
15-
Istio setup.
14+
- [Installion](./installing-istio.html). This task shows you how to
15+
setup Istio service mesh.
1616

17-
- [Timeout Injection](./timeout-injection.html). This task shows how to set a network timeout for all requests for a destination.
17+
- [Integrating Services into the Mesh](./installing-istio.html). This task shows you how to
18+
integrate your applications with Istio service mesh.
19+
20+
- [Configuring Ingress/Egress with Envoy](./installing-istio.html). This task shows you how to
21+
setup the Istio Ingress controller and the Egress proxy.
22+
23+
- [Adding Resilience Features](./installing-istio.html). This task shows you how to
24+
setup timeouts, retries and circuit breakers.
25+
26+
- [Configuring Request Routing](./installing-istio.html). This task shows you how to
27+
configure dynamic request routing based on weights and http headers.
28+
29+
- [Fault Injection](./installing-istio.html). This task shows how to
30+
inject failures into your application.
31+
32+
- [Enabling Istio-Auth](./installing-istio.html). This task shows you how to
33+
setup Istio-Auth to provide mutual TLS authentication between services.
34+
35+
- [Collecting Metrics and Logs](./installing-istio.html). This task shows you how to
36+
configure the Istio Mixer to collect metrics and logs from Envoys in
37+
every Pod.
38+
39+
- [Configuring Mixer](./installing-istio.html). This task shows you how to
40+
configure the Mixer.

docs/tasks/getting-started.md renamed to docs/tasks/installing-istio.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
---
2-
title: Getting Started
3-
headline: Getting Started with Istio
2+
title: Installing Istio
3+
headline: Installing Istio
44
sidenav: doc-side-tasks-nav.html
55
bodyclass: docs
66
layout: docs
77
type: markdown
88
---
99
{% capture overview %}
10-
This page shows how to get started using Istio in a Kubernetes cluster. You'll learn
10+
This task shows how to install Istio in a Kubernetes cluster. You'll learn
1111
how to install Istio and get it initially configured and running.
1212
{% endcapture %}
1313

docs/tasks/task-template.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)