Skip to content
This repository has been archived by the owner on May 6, 2022. It is now read-only.

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
jberkhahn committed Mar 27, 2019
1 parent f8e0e4a commit f917631
Show file tree
Hide file tree
Showing 6 changed files with 39 additions and 14 deletions.
15 changes: 15 additions & 0 deletions docs/tasks/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
---
title: Tasks
layout: docwithnav
---

This section contains pages that show how to do individual tasks. A task page
shows how to do a single thing, typically given by a short sequence of steps.

# Install a Broker

How to add a broker to your catalog. This will make the services that broker
available to users on your cluster. Adding it as a Cluster Service Broker
(CSB) will make it available cluster-wide. Adding it as a Service Broker,
also called a Namespaced Service Broker (NSB) will make it available
only in a single namespace.
6 changes: 6 additions & 0 deletions docs/tasks/install_broker.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
title: Install a Cluster Broker
layout: docwithnav
---

You learn to foobar
14 changes: 7 additions & 7 deletions docsite/_config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,15 +50,15 @@ plugins:
# Tables of contents, stored in the _data folder, that control the sidebar nav
# In order for a page to have a TOC, it's data file name must be included in this list.
tocs:
- install
- devguide
- cli
- walkthrough
- catalog-restrictions
- cli
- concepts
- resources
- devguide
- install
- ladder
- namespaced-broker-resources
- catalog-restrictions
- resources
- service-plan-defaults
- ladder
- tasks
- walkthrough
- docs-home # fallthrough, leave this last
8 changes: 5 additions & 3 deletions docsite/_data/tasks.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
bigheader: "Tasks"
abstract: "Step-by-step instructions for performing operations with Kubernetes."
landing_page: /docs/tasks/index/
abstract: "Instructions for performing various Service Catalog tasks."
landing_page: /docs/tasks
toc:
- docs/docs/tasks/index.md
- docs/tasks/index.md
- title: Install a Broker
path: /docs/tasks/install_broker
3 changes: 2 additions & 1 deletion docsite/_layouts/docsportal.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,11 @@ <h5>{{ page.abstract }}</h5>
<div id="vendorStrip" class="light-text">
<ul>
<li><a href="/docs/" {% if toc.bigheader == nil %}class="YAH"{% endif %}>HOME</a></li>
<li><a href="/docs/concepts" {% if toc.bigheader == "Concepts" %}class="YAH"{% endif %}>CONCEPTS</a></li>
<li><a href="/docs/tasks" {% if toc.bigheader == "Tasks" %}class="YAH"{% endif %}>TASKS</a></li>
<li><a href="/docs/install" {% if toc.bigheader == "Install" %}class="YAH"{% endif %}>INSTALL</a></li>
<li><a href="/docs/walkthrough" {% if toc.bigheader == "Walkthrough" %}class="YAH"{% endif %}>WALKTHROUGH</a></li>
<li><a href="/docs/cli" {% if toc.bigheader == "CLI" %}class="YAH"{% endif %}>CLI</a></li>
<li><a href="/docs/concepts" {% if toc.bigheader == "Concepts" %}class="YAH"{% endif %}>CONCEPTS</a></li>
</ul>
<div id="searchBox">
<input type="text" id="search" placeholder="Search" onkeydown="if (event.keyCode==13) window.location.replace('/docs/search/?q=' + this.value)" autofocus="autofocus">
Expand Down
7 changes: 4 additions & 3 deletions docsite/_layouts/docwithnav.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,11 @@ <h5>{{ toc.abstract }}</h5>
<div id="vendorStrip" class="light-text">
<ul>
<li><a href="/docs/" {% if toc.bigheader == nil %}class="YAH"{% endif %}>HOME</a></li>
<li><a href="/docs/concepts" {% if toc.bigheader == "Concepts" %}class="YAH"{% endif %}>CONCEPTS</a></li>
<li><a href="/docs/tasks" {% if toc.bigheader == "Tasks" %}class="YAH"{% endif %}>TASKS</a></li>
<li><a href="/docs/install" {% if toc.bigheader == "Install" %}class="YAH"{% endif %}>INSTALL</a></li>
<li><a href="/docs/walkthrough" {% if toc.bigheader == "Walkthrough" %}class="YAH"{% endif %}>WALKTHROUGH</a></li>
<li><a href="/docs/cli" {% if toc.bigheader == "CLI" %}class="YAH"{% endif %}>CLI</a></li>
<li><a href="/docs/concepts" {% if toc.bigheader == "Concepts" %}class="YAH"{% endif %}>CONCEPTS</a></li>
<li><a href="/docs/walkthrough" {% if toc.bigheader == "Walkthrough" %}class="YAH"{% endif %}>WALKTHROUGH</a></li>
<li><a href="/docs/cli" {% if toc.bigheader == "CLI" %}class="YAH"{% endif %}>CLI</a></li>
</ul>
<div id="searchBox">
<input type="text" id="search" placeholder="Search" onkeydown="if (event.keyCode==13) window.location.replace('/docs/search/?q=' + this.value)" autofocus="autofocus">
Expand Down

0 comments on commit f917631

Please sign in to comment.