Merge pull request #4139 from radbaron/master

Documentation formatting [Tiny]
pull/4185/head
Matthew Fisher 7 years ago committed by GitHub
commit 1a728c6f14
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -14,6 +14,5 @@ It simply deploys a single pod running Alpine Linux.
The `nginx` chart shows how to compose several resources into one chart, The `nginx` chart shows how to compose several resources into one chart,
and it illustrates more complex template usage. and it illustrates more complex template usage.
It deploys a `deployment` (which creates a `replica set`), a `config It deploys a `Deployment` (which creates a `ReplicaSet`), a `ConfigMap`, and a `Service`. The replica set starts an nginx pod. The config
map`, and a `service`. The replica set starts an nginx pod. The config
map stores the files that the nginx server can serve. map stores the files that the nginx server can serve.

@ -43,7 +43,7 @@ carefully curated and maintained charts. This chart repository is named
You can see which charts are available by running `helm search`: You can see which charts are available by running `helm search`:
``` ```console
$ helm search $ helm search
NAME VERSION DESCRIPTION NAME VERSION DESCRIPTION
stable/drupal 0.3.2 One of the most versatile open source content m... stable/drupal 0.3.2 One of the most versatile open source content m...
@ -56,7 +56,7 @@ stable/mysql 0.1.0 Chart for MySQL
With no filter, `helm search` shows you all of the available charts. You With no filter, `helm search` shows you all of the available charts. You
can narrow down your results by searching with a filter: can narrow down your results by searching with a filter:
``` ```console
$ helm search mysql $ helm search mysql
NAME VERSION DESCRIPTION NAME VERSION DESCRIPTION
stable/mysql 0.1.0 Chart for MySQL stable/mysql 0.1.0 Chart for MySQL
@ -69,7 +69,7 @@ Why is
`mariadb` in the list? Because its package description relates it to `mariadb` in the list? Because its package description relates it to
MySQL. We can use `helm inspect chart` to see this: MySQL. We can use `helm inspect chart` to see this:
``` ```console
$ helm inspect stable/mariadb $ helm inspect stable/mariadb
Fetched stable/mariadb to mariadb-0.5.1.tgz Fetched stable/mariadb to mariadb-0.5.1.tgz
description: Chart for MariaDB description: Chart for MariaDB
@ -91,7 +91,7 @@ package you want to install, you can use `helm install` to install it.
To install a new package, use the `helm install` command. At its To install a new package, use the `helm install` command. At its
simplest, it takes only one argument: The name of the chart. simplest, it takes only one argument: The name of the chart.
``` ```console
$ helm install stable/mariadb $ helm install stable/mariadb
Fetched stable/mariadb-0.3.0 to /Users/mattbutcher/Code/Go/src/k8s.io/helm/mariadb-0.3.0.tgz Fetched stable/mariadb-0.3.0 to /Users/mattbutcher/Code/Go/src/k8s.io/helm/mariadb-0.3.0.tgz
happy-panda happy-panda
@ -139,7 +139,7 @@ may take a long time to install into the cluster.
To keep track of a release's state, or to re-read configuration To keep track of a release's state, or to re-read configuration
information, you can use `helm status`: information, you can use `helm status`:
``` ```console
$ helm status happy-panda $ helm status happy-panda
Last Deployed: Wed Sep 28 12:32:28 2016 Last Deployed: Wed Sep 28 12:32:28 2016
Namespace: default Namespace: default
@ -392,14 +392,14 @@ is not a full list of cli flags. To see a description of all flags, just run
When it is time to uninstall or delete a release from the cluster, use When it is time to uninstall or delete a release from the cluster, use
the `helm delete` command: the `helm delete` command:
``` ```console
$ helm delete happy-panda $ helm delete happy-panda
``` ```
This will remove the release from the cluster. You can see all of your This will remove the release from the cluster. You can see all of your
currently deployed releases with the `helm list` command: currently deployed releases with the `helm list` command:
``` ```console
$ helm list $ helm list
NAME VERSION UPDATED STATUS CHART NAME VERSION UPDATED STATUS CHART
inky-cat 1 Wed Sep 28 12:59:46 2016 DEPLOYED alpine-0.1.0 inky-cat 1 Wed Sep 28 12:59:46 2016 DEPLOYED alpine-0.1.0

Loading…
Cancel
Save