Skip to content

Commit

Permalink
make fmt (#235)
Browse files Browse the repository at this point in the history
/cherry-pick

Signed-off-by: 1gtm <[email protected]>
  • Loading branch information
1gtm authored Mar 1, 2022
1 parent 29686b4 commit 9393676
Show file tree
Hide file tree
Showing 11 changed files with 122 additions and 115 deletions.
27 changes: 14 additions & 13 deletions charts/stash-catalog/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,11 @@

## TL;DR;

```console
```bash
$ helm repo add appscode https://charts.appscode.com/stable/
$ helm repo update
$ helm install stash-catalog appscode/stash-catalog -n kube-system
$ helm search repo appscode/stash-catalog --version=v2022.02.22
$ helm upgrade -i stash-catalog appscode/stash-catalog -n kube-system --create-namespace --version=v2022.02.22
```

## Introduction
Expand All @@ -20,10 +21,10 @@ This chart deploys Stash catalog on a [Kubernetes](http://kubernetes.io) cluster

## Installing the Chart

To install the chart with the release name `stash-catalog`:
To install/upgrade the chart with the release name `stash-catalog`:

```console
$ helm install stash-catalog appscode/stash-catalog -n kube-system
```bash
$ helm upgrade -i stash-catalog appscode/stash-catalog -n kube-system --create-namespace --version=v2022.02.22
```

The command deploys Stash catalog on the Kubernetes cluster in the default configuration. The [configuration](#configuration) section lists the parameters that can be configured during installation.
Expand All @@ -32,10 +33,10 @@ The command deploys Stash catalog on the Kubernetes cluster in the default confi
## Uninstalling the Chart

To uninstall/delete the `stash-catalog`:
To uninstall the `stash-catalog`:

```console
$ helm delete stash-catalog -n kube-system
```bash
$ helm uninstall stash-catalog -n kube-system
```

The command removes all the Kubernetes components associated with the chart and deletes the release.
Expand Down Expand Up @@ -90,15 +91,15 @@ The following table lists the configurable parameters of the `stash-catalog` cha
| etcd.restore.workloadName | Name of the workload used to deploy the ETCD cluster | <code>""</code> |


Specify each parameter using the `--set key=value[,key=value]` argument to `helm install`. For example:
Specify each parameter using the `--set key=value[,key=value]` argument to `helm upgrade -i`. For example:

```console
$ helm install stash-catalog appscode/stash-catalog -n kube-system --set image.registry=stashed
```bash
$ helm upgrade -i stash-catalog appscode/stash-catalog -n kube-system --create-namespace --version=v2022.02.22 --set image.registry=stashed
```

Alternatively, a YAML file that specifies the values for the parameters can be provided while
installing the chart. For example:

```console
$ helm install stash-catalog appscode/stash-catalog -n kube-system --values values.yaml
```bash
$ helm upgrade -i stash-catalog appscode/stash-catalog -n kube-system --create-namespace --version=v2022.02.22 --values values.yaml
```
27 changes: 14 additions & 13 deletions charts/stash-community/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,11 @@

## TL;DR;

```console
```bash
$ helm repo add appscode https://charts.appscode.com/stable/
$ helm repo update
$ helm install stash-community appscode/stash-community -n kube-system
$ helm search repo appscode/stash-community --version=v0.18.0
$ helm upgrade -i stash-community appscode/stash-community -n kube-system --create-namespace --version=v0.18.0
```

## Introduction
Expand All @@ -20,10 +21,10 @@ This chart deploys a Stash community operator on a [Kubernetes](http://kubernete

## Installing the Chart

To install the chart with the release name `stash-community`:
To install/upgrade the chart with the release name `stash-community`:

```console
$ helm install stash-community appscode/stash-community -n kube-system
```bash
$ helm upgrade -i stash-community appscode/stash-community -n kube-system --create-namespace --version=v0.18.0
```

The command deploys a Stash community operator on the Kubernetes cluster in the default configuration. The [configuration](#configuration) section lists the parameters that can be configured during installation.
Expand All @@ -32,10 +33,10 @@ The command deploys a Stash community operator on the Kubernetes cluster in the
## Uninstalling the Chart

To uninstall/delete the `stash-community`:
To uninstall the `stash-community`:

```console
$ helm delete stash-community -n kube-system
```bash
$ helm uninstall stash-community -n kube-system
```

The command removes all the Kubernetes components associated with the chart and deletes the release.
Expand Down Expand Up @@ -107,15 +108,15 @@ The following table lists the configurable parameters of the `stash-community` c
| platform.openshift | Set true, if installed in OpenShift | <code>false</code> |


Specify each parameter using the `--set key=value[,key=value]` argument to `helm install`. For example:
Specify each parameter using the `--set key=value[,key=value]` argument to `helm upgrade -i`. For example:

```console
$ helm install stash-community appscode/stash-community -n kube-system --set replicaCount=1
```bash
$ helm upgrade -i stash-community appscode/stash-community -n kube-system --create-namespace --version=v0.18.0 --set replicaCount=1
```

Alternatively, a YAML file that specifies the values for the parameters can be provided while
installing the chart. For example:

```console
$ helm install stash-community appscode/stash-community -n kube-system --values values.yaml
```bash
$ helm upgrade -i stash-community appscode/stash-community -n kube-system --create-namespace --version=v0.18.0 --values values.yaml
```
17 changes: 9 additions & 8 deletions charts/stash-crds/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,11 @@

## TL;DR;

```console
```bash
$ helm repo add appscode https://charts.appscode.com/stable/
$ helm repo update
$ helm install stash-crds appscode/stash-crds -n kube-system
$ helm search repo appscode/stash-crds --version=v2022.02.22
$ helm upgrade -i stash-crds appscode/stash-crds -n kube-system --create-namespace --version=v2022.02.22
```

## Introduction
Expand All @@ -20,10 +21,10 @@ This chart deploys Stash crds on a [Kubernetes](http://kubernetes.io) cluster us

## Installing the Chart

To install the chart with the release name `stash-crds`:
To install/upgrade the chart with the release name `stash-crds`:

```console
$ helm install stash-crds appscode/stash-crds -n kube-system
```bash
$ helm upgrade -i stash-crds appscode/stash-crds -n kube-system --create-namespace --version=v2022.02.22
```

The command deploys Stash crds on the Kubernetes cluster in the default configuration. The [configuration](#configuration) section lists the parameters that can be configured during installation.
Expand All @@ -32,10 +33,10 @@ The command deploys Stash crds on the Kubernetes cluster in the default configur
## Uninstalling the Chart

To uninstall/delete the `stash-crds`:
To uninstall the `stash-crds`:

```console
$ helm delete stash-crds -n kube-system
```bash
$ helm uninstall stash-crds -n kube-system
```

The command removes all the Kubernetes components associated with the chart and deletes the release.
Expand Down
27 changes: 14 additions & 13 deletions charts/stash-enterprise/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,11 @@

## TL;DR;

```console
```bash
$ helm repo add appscode https://charts.appscode.com/stable/
$ helm repo update
$ helm install stash-enterprise appscode/stash-enterprise -n kube-system
$ helm search repo appscode/stash-enterprise --version=v0.18.0
$ helm upgrade -i stash-enterprise appscode/stash-enterprise -n kube-system --create-namespace --version=v0.18.0
```

## Introduction
Expand All @@ -20,10 +21,10 @@ This chart deploys a Stash Enterprise operator on a [Kubernetes](http://kubernet

## Installing the Chart

To install the chart with the release name `stash-enterprise`:
To install/upgrade the chart with the release name `stash-enterprise`:

```console
$ helm install stash-enterprise appscode/stash-enterprise -n kube-system
```bash
$ helm upgrade -i stash-enterprise appscode/stash-enterprise -n kube-system --create-namespace --version=v0.18.0
```

The command deploys a Stash Enterprise operator on the Kubernetes cluster in the default configuration. The [configuration](#configuration) section lists the parameters that can be configured during installation.
Expand All @@ -32,10 +33,10 @@ The command deploys a Stash Enterprise operator on the Kubernetes cluster in the
## Uninstalling the Chart

To uninstall/delete the `stash-enterprise`:
To uninstall the `stash-enterprise`:

```console
$ helm delete stash-enterprise -n kube-system
```bash
$ helm uninstall stash-enterprise -n kube-system
```

The command removes all the Kubernetes components associated with the chart and deletes the release.
Expand Down Expand Up @@ -111,15 +112,15 @@ The following table lists the configurable parameters of the `stash-enterprise`
| netVolAccessor.privileged | Run the network volume accessor deployments in privileged mode | <code>false</code> |


Specify each parameter using the `--set key=value[,key=value]` argument to `helm install`. For example:
Specify each parameter using the `--set key=value[,key=value]` argument to `helm upgrade -i`. For example:

```console
$ helm install stash-enterprise appscode/stash-enterprise -n kube-system --set replicaCount=1
```bash
$ helm upgrade -i stash-enterprise appscode/stash-enterprise -n kube-system --create-namespace --version=v0.18.0 --set replicaCount=1
```

Alternatively, a YAML file that specifies the values for the parameters can be provided while
installing the chart. For example:

```console
$ helm install stash-enterprise appscode/stash-enterprise -n kube-system --values values.yaml
```bash
$ helm upgrade -i stash-enterprise appscode/stash-enterprise -n kube-system --create-namespace --version=v0.18.0 --values values.yaml
```
27 changes: 14 additions & 13 deletions charts/stash-grafana-dashboards/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,11 @@

## TL;DR;

```console
```bash
$ helm repo add appscode https://charts.appscode.com/stable/
$ helm repo update
$ helm install stash-grafana-dashboards appscode/stash-grafana-dashboards -n kubeops
$ helm search repo appscode/stash-grafana-dashboards --version=v2022.02.22
$ helm upgrade -i stash-grafana-dashboards appscode/stash-grafana-dashboards -n kubeops --create-namespace --version=v2022.02.22
```

## Introduction
Expand All @@ -20,10 +21,10 @@ This chart deploys a Stash Grafana Dashboards on a [Kubernetes](http://kubernete

## Installing the Chart

To install the chart with the release name `stash-grafana-dashboards`:
To install/upgrade the chart with the release name `stash-grafana-dashboards`:

```console
$ helm install stash-grafana-dashboards appscode/stash-grafana-dashboards -n kubeops
```bash
$ helm upgrade -i stash-grafana-dashboards appscode/stash-grafana-dashboards -n kubeops --create-namespace --version=v2022.02.22
```

The command deploys a Stash Grafana Dashboards on the Kubernetes cluster in the default configuration. The [configuration](#configuration) section lists the parameters that can be configured during installation.
Expand All @@ -32,10 +33,10 @@ The command deploys a Stash Grafana Dashboards on the Kubernetes cluster in the
## Uninstalling the Chart

To uninstall/delete the `stash-grafana-dashboards`:
To uninstall the `stash-grafana-dashboards`:

```console
$ helm delete stash-grafana-dashboards -n kubeops
```bash
$ helm uninstall stash-grafana-dashboards -n kubeops
```

The command removes all the Kubernetes components associated with the chart and deletes the release.
Expand All @@ -57,15 +58,15 @@ The following table lists the configurable parameters of the `stash-grafana-dash
| grafana.namespace | Namespace of Grafana Appbinding where these dashboards are applied | <code>""</code> |


Specify each parameter using the `--set key=value[,key=value]` argument to `helm install`. For example:
Specify each parameter using the `--set key=value[,key=value]` argument to `helm upgrade -i`. For example:

```console
$ helm install stash-grafana-dashboards appscode/stash-grafana-dashboards -n kubeops --set resources=["stash"]
```bash
$ helm upgrade -i stash-grafana-dashboards appscode/stash-grafana-dashboards -n kubeops --create-namespace --version=v2022.02.22 --set resources=["stash"]
```

Alternatively, a YAML file that specifies the values for the parameters can be provided while
installing the chart. For example:

```console
$ helm install stash-grafana-dashboards appscode/stash-grafana-dashboards -n kubeops --values values.yaml
```bash
$ helm upgrade -i stash-grafana-dashboards appscode/stash-grafana-dashboards -n kubeops --create-namespace --version=v2022.02.22 --values values.yaml
```
17 changes: 9 additions & 8 deletions charts/stash-metrics/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,11 @@

## TL;DR;

```console
```bash
$ helm repo add appscode https://charts.appscode.com/stable/
$ helm repo update
$ helm install stash-metrics appscode/stash-metrics -n kube-system
$ helm search repo appscode/stash-metrics --version=v2022.02.22
$ helm upgrade -i stash-metrics appscode/stash-metrics -n kube-system --create-namespace --version=v2022.02.22
```

## Introduction
Expand All @@ -20,10 +21,10 @@ This chart deploys Stash metrics configurations on a [Kubernetes](http://kuberne

## Installing the Chart

To install the chart with the release name `stash-metrics`:
To install/upgrade the chart with the release name `stash-metrics`:

```console
$ helm install stash-metrics appscode/stash-metrics -n kube-system
```bash
$ helm upgrade -i stash-metrics appscode/stash-metrics -n kube-system --create-namespace --version=v2022.02.22
```

The command deploys Stash metrics configurations on the Kubernetes cluster in the default configuration. The [configuration](#configuration) section lists the parameters that can be configured during installation.
Expand All @@ -32,10 +33,10 @@ The command deploys Stash metrics configurations on the Kubernetes cluster in th
## Uninstalling the Chart

To uninstall/delete the `stash-metrics`:
To uninstall the `stash-metrics`:

```console
$ helm delete stash-metrics -n kube-system
```bash
$ helm uninstall stash-metrics -n kube-system
```

The command removes all the Kubernetes components associated with the chart and deletes the release.
Expand Down
27 changes: 14 additions & 13 deletions charts/stash-opscenter/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,11 @@

## TL;DR;

```console
```bash
$ helm repo add appscode https://charts.appscode.com/stable/
$ helm repo update
$ helm install stash-opscenter appscode/stash-opscenter -n kubeops
$ helm search repo appscode/stash-opscenter --version=v2022.02.22
$ helm upgrade -i stash-opscenter appscode/stash-opscenter -n kubeops --create-namespace --version=v2022.02.22
```

## Introduction
Expand All @@ -20,10 +21,10 @@ This chart deploys a Stash Opscenter on a [Kubernetes](http://kubernetes.io) clu

## Installing the Chart

To install the chart with the release name `stash-opscenter`:
To install/upgrade the chart with the release name `stash-opscenter`:

```console
$ helm install stash-opscenter appscode/stash-opscenter -n kubeops
```bash
$ helm upgrade -i stash-opscenter appscode/stash-opscenter -n kubeops --create-namespace --version=v2022.02.22
```

The command deploys a Stash Opscenter on the Kubernetes cluster in the default configuration. The [configuration](#configuration) section lists the parameters that can be configured during installation.
Expand All @@ -32,10 +33,10 @@ The command deploys a Stash Opscenter on the Kubernetes cluster in the default c
## Uninstalling the Chart

To uninstall/delete the `stash-opscenter`:
To uninstall the `stash-opscenter`:

```console
$ helm delete stash-opscenter -n kubeops
```bash
$ helm uninstall stash-opscenter -n kubeops
```

The command removes all the Kubernetes components associated with the chart and deletes the release.
Expand All @@ -51,15 +52,15 @@ The following table lists the configurable parameters of the `stash-opscenter` c
| stash-grafana-dashboards.enabled | If enabled, installs the stash-grafana-dashboards chart | <code>true</code> |


Specify each parameter using the `--set key=value[,key=value]` argument to `helm install`. For example:
Specify each parameter using the `--set key=value[,key=value]` argument to `helm upgrade -i`. For example:

```console
$ helm install stash-opscenter appscode/stash-opscenter -n kubeops --set -- generate from values file --
```bash
$ helm upgrade -i stash-opscenter appscode/stash-opscenter -n kubeops --create-namespace --version=v2022.02.22 --set -- generate from values file --
```

Alternatively, a YAML file that specifies the values for the parameters can be provided while
installing the chart. For example:

```console
$ helm install stash-opscenter appscode/stash-opscenter -n kubeops --values values.yaml
```bash
$ helm upgrade -i stash-opscenter appscode/stash-opscenter -n kubeops --create-namespace --version=v2022.02.22 --values values.yaml
```
Loading

0 comments on commit 9393676

Please sign in to comment.