placeholder files for tasks

This commit is contained in:
Shriram Rajagopalan 2017-04-19 22:41:48 -04:00
parent 99a9d8fae3
commit 04f78ea633
11 changed files with 314 additions and 11 deletions

View File

@ -1,6 +1,13 @@
<ul class="doc-side-nav doc-side-nav-tasks">
{% assign current = page.url | downcase | split: '/' %}
<li><h5 class="doc-side-nav-title">Tasks</h5></li>
<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>
<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>
<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>
<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>
<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>
<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>
<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>
<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>
<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>
<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>
<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>
</ul>

View File

@ -0,0 +1,37 @@
---
title: Task X
headline: Task X
sidenav: doc-side-tasks-nav.html
bodyclass: docs
layout: docs
type: markdown
---
{% capture overview %}
This task shows how to do X in a Kubernetes cluster. You'll learn
how to ...
{% endcapture %}
{% capture prerequisites %}
* Do this.
* Do this too.
{% endcapture %}
{% capture steps %}
## Doing ...
1. Do this.
1. Do this next. Possibly read this [related explanation](...).
{% endcapture %}
{% capture discussion %}
## Understanding ...
Here's an interesting thing to know about the steps you just did.
{% endcapture %}
{% capture whatsnext %}
* Learn more about [this](...).
* See this [related task](...).
{% endcapture %}
{% include templates/task.md %}

View File

@ -0,0 +1,37 @@
---
title: Task X
headline: Task X
sidenav: doc-side-tasks-nav.html
bodyclass: docs
layout: docs
type: markdown
---
{% capture overview %}
This task shows how to do X in a Kubernetes cluster. You'll learn
how to ...
{% endcapture %}
{% capture prerequisites %}
* Do this.
* Do this too.
{% endcapture %}
{% capture steps %}
## Doing ...
1. Do this.
1. Do this next. Possibly read this [related explanation](...).
{% endcapture %}
{% capture discussion %}
## Understanding ...
Here's an interesting thing to know about the steps you just did.
{% endcapture %}
{% capture whatsnext %}
* Learn more about [this](...).
* See this [related task](...).
{% endcapture %}
{% include templates/task.md %}

View File

@ -11,30 +11,30 @@ type: markdown
Tasks show you how to do a single specific targeted
activity with the Istio system.
- [Installion](./task-template.html). This task shows you how to
- [Installion](./istio-installation.html). This task shows you how to
setup Istio service mesh.
- [Integrating Services into the Mesh](./task-template.html). This task shows you how to
- [Integrating Services into the Mesh](./integrating-services-into-istio.html). This task shows you how to
integrate your applications with Istio service mesh.
- [Configuring Ingress/Egress with Envoy](./task-template.html). This task shows you how to
- [Configuring Ingress/Egress with Envoy](./ingress-egress-envoy.html). This task shows you how to
setup the Istio Ingress controller and the Egress proxy.
- [Adding Resilience Features](./task-template.html). This task shows you how to
- [Adding Resilience Features](./resilience-features.html). This task shows you how to
setup timeouts, retries and circuit breakers.
- [Configuring Request Routing](./task-template.html). This task shows you how to
- [Configuring Request Routing](./request-routing.html). This task shows you how to
configure dynamic request routing based on weights and http headers.
- [Fault Injection](./task-template.html). This task shows how to
- [Fault Injection](./fault-injection.html). This task shows how to
inject failures into your application.
- [Enabling Istio-Auth](./task-template.html). This task shows you how to
- [Enabling Istio-Auth](./istio-auth.html). This task shows you how to
setup Istio-Auth to provide mutual TLS authentication between services.
- [Collecting Metrics and Logs](./task-template.html). This task shows you how to
- [Collecting Metrics and Logs](./metrics-logs.html). This task shows you how to
configure the Istio Mixer to collect metrics and logs from Envoys in
every Pod.
- [Configuring Mixer](./task-template.html). This task shows you how to
- [Configuring Mixer](./configuring-mixer.html). This task shows you how to
configure the Mixer.

View File

@ -0,0 +1,37 @@
---
title: Task X
headline: Task X
sidenav: doc-side-tasks-nav.html
bodyclass: docs
layout: docs
type: markdown
---
{% capture overview %}
This task shows how to do X in a Kubernetes cluster. You'll learn
how to ...
{% endcapture %}
{% capture prerequisites %}
* Do this.
* Do this too.
{% endcapture %}
{% capture steps %}
## Doing ...
1. Do this.
1. Do this next. Possibly read this [related explanation](...).
{% endcapture %}
{% capture discussion %}
## Understanding ...
Here's an interesting thing to know about the steps you just did.
{% endcapture %}
{% capture whatsnext %}
* Learn more about [this](...).
* See this [related task](...).
{% endcapture %}
{% include templates/task.md %}

View File

@ -0,0 +1,37 @@
---
title: Task X
headline: Task X
sidenav: doc-side-tasks-nav.html
bodyclass: docs
layout: docs
type: markdown
---
{% capture overview %}
This task shows how to do X in a Kubernetes cluster. You'll learn
how to ...
{% endcapture %}
{% capture prerequisites %}
* Do this.
* Do this too.
{% endcapture %}
{% capture steps %}
## Doing ...
1. Do this.
1. Do this next. Possibly read this [related explanation](...).
{% endcapture %}
{% capture discussion %}
## Understanding ...
Here's an interesting thing to know about the steps you just did.
{% endcapture %}
{% capture whatsnext %}
* Learn more about [this](...).
* See this [related task](...).
{% endcapture %}
{% include templates/task.md %}

37
docs/tasks/istio-auth.md Normal file
View File

@ -0,0 +1,37 @@
---
title: Task X
headline: Task X
sidenav: doc-side-tasks-nav.html
bodyclass: docs
layout: docs
type: markdown
---
{% capture overview %}
This task shows how to do X in a Kubernetes cluster. You'll learn
how to ...
{% endcapture %}
{% capture prerequisites %}
* Do this.
* Do this too.
{% endcapture %}
{% capture steps %}
## Doing ...
1. Do this.
1. Do this next. Possibly read this [related explanation](...).
{% endcapture %}
{% capture discussion %}
## Understanding ...
Here's an interesting thing to know about the steps you just did.
{% endcapture %}
{% capture whatsnext %}
* Learn more about [this](...).
* See this [related task](...).
{% endcapture %}
{% include templates/task.md %}

View File

@ -0,0 +1,37 @@
---
title: Task X
headline: Task X
sidenav: doc-side-tasks-nav.html
bodyclass: docs
layout: docs
type: markdown
---
{% capture overview %}
This task shows how to do X in a Kubernetes cluster. You'll learn
how to ...
{% endcapture %}
{% capture prerequisites %}
* Do this.
* Do this too.
{% endcapture %}
{% capture steps %}
## Doing ...
1. Do this.
1. Do this next. Possibly read this [related explanation](...).
{% endcapture %}
{% capture discussion %}
## Understanding ...
Here's an interesting thing to know about the steps you just did.
{% endcapture %}
{% capture whatsnext %}
* Learn more about [this](...).
* See this [related task](...).
{% endcapture %}
{% include templates/task.md %}

View File

@ -0,0 +1,37 @@
---
title: Task X
headline: Task X
sidenav: doc-side-tasks-nav.html
bodyclass: docs
layout: docs
type: markdown
---
{% capture overview %}
This task shows how to do X in a Kubernetes cluster. You'll learn
how to ...
{% endcapture %}
{% capture prerequisites %}
* Do this.
* Do this too.
{% endcapture %}
{% capture steps %}
## Doing ...
1. Do this.
1. Do this next. Possibly read this [related explanation](...).
{% endcapture %}
{% capture discussion %}
## Understanding ...
Here's an interesting thing to know about the steps you just did.
{% endcapture %}
{% capture whatsnext %}
* Learn more about [this](...).
* See this [related task](...).
{% endcapture %}
{% include templates/task.md %}

View File

@ -0,0 +1,37 @@
---
title: Task X
headline: Task X
sidenav: doc-side-tasks-nav.html
bodyclass: docs
layout: docs
type: markdown
---
{% capture overview %}
This task shows how to do X in a Kubernetes cluster. You'll learn
how to ...
{% endcapture %}
{% capture prerequisites %}
* Do this.
* Do this too.
{% endcapture %}
{% capture steps %}
## Doing ...
1. Do this.
1. Do this next. Possibly read this [related explanation](...).
{% endcapture %}
{% capture discussion %}
## Understanding ...
Here's an interesting thing to know about the steps you just did.
{% endcapture %}
{% capture whatsnext %}
* Learn more about [this](...).
* See this [related task](...).
{% endcapture %}
{% include templates/task.md %}