mirror of
https://github.com/bitnami/charts.git
synced 2026-08-10 14:15:55 +08:00
[bitnami/several] Adapt READMEs and helpers to Helm 3 (#1911)
* [bitnami/several] Adapt READMEs and helpers to Helm 3 * Update _docs
This commit is contained in:
@@ -13,7 +13,7 @@
|
||||
> **Sample**
|
||||
>
|
||||
> ```bash
|
||||
> $ helm install stable/mediawiki
|
||||
> $ helm install my-release stable/mediawiki
|
||||
> ```
|
||||
|
||||
## Introduction
|
||||
@@ -47,7 +47,7 @@ _List the cluster requirements for a successful deployment of the chart_
|
||||
> Install the chart using:
|
||||
>
|
||||
> ```bash
|
||||
> $ helm install --name my-release stable/mediawiki
|
||||
> $ helm install my-release stable/mediawiki
|
||||
> ```
|
||||
>
|
||||
> The command deploys MediaWiki on the Kubernetes cluster in the default configuration and with the release name `my-release`. The deployment configuration can be customized by specifying the customization parameters with the `helm install` command using the `--values` or `--set` arguments. Find more information in the [configuration section](#configuration) of this document.
|
||||
@@ -105,7 +105,7 @@ _List the cluster requirements for a successful deployment of the chart_
|
||||
> Specify the parameters you which to customize using the `--set` argument to the `helm install` command. For instance,
|
||||
>
|
||||
> ```bash
|
||||
> $ helm install --name my-release \
|
||||
> $ helm install my-release \
|
||||
> --set mediawikiUser=admin,mediawikiPassword=password stable/mediawiki
|
||||
> ```
|
||||
>
|
||||
@@ -114,7 +114,7 @@ _List the cluster requirements for a successful deployment of the chart_
|
||||
> Alternatively, a YAML file that specifies the values for the above parameters can be provided while installing the chart. For example,
|
||||
>
|
||||
> ```bash
|
||||
> $ helm install --name my-release \
|
||||
> $ helm install my-release \
|
||||
> --values values.yaml stable/mediawiki
|
||||
> ```
|
||||
>
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
apiVersion: v1
|
||||
name: airflow
|
||||
version: 4.3.0
|
||||
version: 4.3.1
|
||||
appVersion: 1.10.9
|
||||
description: Apache Airflow is a platform to programmatically author, schedule and monitor workflows.
|
||||
keywords:
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
## TL;DR;
|
||||
|
||||
```console
|
||||
$ helm install bitnami/airflow
|
||||
$ helm install my-release bitnami/airflow
|
||||
```
|
||||
|
||||
## Introduction
|
||||
@@ -25,7 +25,7 @@ To install the chart with the release name `my-release`:
|
||||
|
||||
```console
|
||||
$ helm repo add bitnami https://charts.bitnami.com/bitnami
|
||||
$ helm install --name my-release bitnami/airflow
|
||||
$ helm install my-release bitnami/airflow
|
||||
```
|
||||
|
||||
These commands deploy Airflow on the Kubernetes cluster in the default configuration. The [Parameters](#parameters) section lists the parameters that can be configured during installation.
|
||||
@@ -160,7 +160,7 @@ The following tables lists the configurable parameters of the Kafka chart and th
|
||||
Specify each parameter using the `--set key=value[,key=value]` argument to `helm install`. For example,
|
||||
|
||||
```console
|
||||
$ helm install --name my-release \
|
||||
$ helm install my-release \
|
||||
--set airflow.auth.username=my-user \
|
||||
--set airflow.auth.password=my-passsword \
|
||||
--set airflow.auth.fernetKey=my-fernet-key \
|
||||
@@ -172,7 +172,7 @@ The above command sets the credentials to access the Airflow web UI.
|
||||
Alternatively, a YAML file that specifies the values for the parameters can be provided while installing the chart. For example,
|
||||
|
||||
```console
|
||||
$ helm install --name my-release -f values.yaml bitnami/airflow
|
||||
$ helm install my-release -f values.yaml bitnami/airflow
|
||||
```
|
||||
|
||||
> **Tip**: You can use the default [values.yaml](values.yaml)
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
apiVersion: v1
|
||||
name: apache
|
||||
version: 7.3.4
|
||||
version: 7.3.5
|
||||
appVersion: 2.4.41
|
||||
description: Chart for Apache HTTP Server
|
||||
keywords:
|
||||
|
||||
@@ -8,7 +8,7 @@ The Apache HTTP Server ("httpd") was launched in 1995 and it has been the most p
|
||||
|
||||
```bash
|
||||
$ helm repo add bitnami https://charts.bitnami.com/bitnami
|
||||
$ helm install bitnami/apache
|
||||
$ helm install my-release bitnami/apache
|
||||
```
|
||||
|
||||
## Introduction
|
||||
@@ -30,7 +30,7 @@ To install the chart with the release name `my-release`:
|
||||
|
||||
```bash
|
||||
$ helm repo add bitnami https://charts.bitnami.com/bitnami
|
||||
$ helm install --name my-release bitnami/apache
|
||||
$ helm install my-release bitnami/apache
|
||||
```
|
||||
|
||||
These commands deploy Apache on the Kubernetes cluster in the default configuration.
|
||||
@@ -112,7 +112,7 @@ The following tables lists the configurable parameters of the Apache chart and t
|
||||
Specify each parameter using the `--set key=value[,key=value]` argument to `helm install`. For example,
|
||||
|
||||
```bash
|
||||
$ helm install --name my-release \
|
||||
$ helm install my-release \
|
||||
--set imagePullPolicy=Always \
|
||||
bitnami/apache
|
||||
```
|
||||
@@ -122,7 +122,7 @@ The above command sets the `imagePullPolicy` to `Always`.
|
||||
Alternatively, a YAML file that specifies the values for the parameters can be provided while installing the chart. For example,
|
||||
|
||||
```bash
|
||||
$ helm install --name my-release -f values.yaml bitnami/apache
|
||||
$ helm install my-release -f values.yaml bitnami/apache
|
||||
```
|
||||
|
||||
> **Tip**: You can use the default [values.yaml](values.yaml)
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
|
||||
```console
|
||||
$ helm repo add bitnami https://charts.bitnami.com/bitnami
|
||||
$ helm install bitnami/cassandra
|
||||
$ helm install my-release bitnami/cassandra
|
||||
```
|
||||
|
||||
## Introduction
|
||||
@@ -27,7 +27,7 @@ To install the chart with the release name `my-release`:
|
||||
|
||||
```console
|
||||
$ helm repo add bitnami https://charts.bitnami.com/bitnami
|
||||
$ helm install --name my-release bitnami/cassandra
|
||||
$ helm install my-release bitnami/cassandra
|
||||
```
|
||||
|
||||
These commands deploy one node with Cassandra on the Kubernetes cluster in the default configuration. The [Parameters](#parameters) section lists the parameters that can be configured during installation.
|
||||
@@ -141,7 +141,7 @@ The above parameters map to the env variables defined in [bitnami/cassandra](htt
|
||||
Specify each parameter using the `--set key=value[,key=value]` argument to `helm install`. For example,
|
||||
|
||||
```console
|
||||
$ helm install --name my-release \
|
||||
$ helm install my-release \
|
||||
--set dbUser.user=admin,dbUser.password=password\
|
||||
bitnami/cassandra
|
||||
```
|
||||
@@ -149,7 +149,7 @@ $ helm install --name my-release \
|
||||
Alternatively, a YAML file that specifies the values for the above parameters can be provided while installing the chart. For example,
|
||||
|
||||
```console
|
||||
$ helm install --name my-release -f values.yaml bitnami/cassandra
|
||||
$ helm install my-release -f values.yaml bitnami/cassandra
|
||||
```
|
||||
|
||||
> **Tip**: You can use the default [values.yaml](values.yaml)
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
|
||||
```console
|
||||
$ helm repo add bitnami https://charts.bitnami.com/bitnami
|
||||
$ helm install bitnami/consul
|
||||
$ helm install my-release bitnami/consul
|
||||
```
|
||||
|
||||
## Introduction
|
||||
@@ -27,7 +27,7 @@ To install the chart with the release name `my-release`:
|
||||
|
||||
```console
|
||||
$ helm repo add bitnami https://charts.bitnami.com/bitnami
|
||||
$ helm install --name my-release bitnami/consul
|
||||
$ helm install my-release bitnami/consul
|
||||
```
|
||||
|
||||
These commands deploy HashiCorp Consul on the Kubernetes cluster in the default configuration. The [Parameters](#parameters) section lists the parameters that can be configured during installation.
|
||||
@@ -136,14 +136,14 @@ The following tables lists the configurable parameters of the HashiCorp Consul c
|
||||
Specify each parameter using the `--set key=value[,key=value]` argument to `helm install`. For example,
|
||||
|
||||
```console
|
||||
$ helm install --name my-release --set domain=consul-domain,gossipKey=secretkey bitnami/consul
|
||||
$ helm install my-release --set domain=consul-domain,gossipKey=secretkey bitnami/consul
|
||||
```
|
||||
The above command sets the HashiCorp Consul domain to `consul-domain` and sets the gossip key to `secretkey`.
|
||||
|
||||
Alternatively, a YAML file that specifies the values for the above parameters can be provided while installing the chart. For example,
|
||||
|
||||
```console
|
||||
$ helm install --name my-release -f values.yaml bitnami/consul
|
||||
$ helm install my-release -f values.yaml bitnami/consul
|
||||
```
|
||||
|
||||
> **Tip**: You can use the default [values.yaml](values.yaml)
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
|
||||
```console
|
||||
$ helm repo add bitnami https://charts.bitnami.com/bitnami
|
||||
$ helm install bitnami/elasticsearch
|
||||
$ helm install my-release bitnami/elasticsearch
|
||||
```
|
||||
|
||||
## Introduction
|
||||
@@ -27,7 +27,7 @@ To install the chart with the release name `my-release`:
|
||||
|
||||
```console
|
||||
$ helm repo add bitnami https://charts.bitnami.com/bitnami
|
||||
$ helm install --name my-release bitnami/elasticsearch
|
||||
$ helm install my-release bitnami/elasticsearch
|
||||
```
|
||||
|
||||
These commands deploy Elasticsearch on the Kubernetes cluster in the default configuration. The [Parameters](#parameters) section lists the parameters that can be configured during installation.
|
||||
@@ -254,7 +254,7 @@ The following table lists the configurable parameters of the Elasticsearch chart
|
||||
Specify each parameter using the `--set key=value[,key=value]` argument to `helm install`. For example,
|
||||
|
||||
```console
|
||||
$ helm install --name my-release \
|
||||
$ helm install my-release \
|
||||
--set name=my-elastic,client.service.port=8080 \
|
||||
bitnami/elasticsearch
|
||||
```
|
||||
@@ -264,7 +264,7 @@ The above command sets the Elasticsearch cluster name to `my-elastic` and REST p
|
||||
Alternatively, a YAML file that specifies the values for the parameters can be provided while installing the chart. For example,
|
||||
|
||||
```console
|
||||
$ helm install --name my-release -f values.yaml bitnami/elasticsearch
|
||||
$ helm install my-release -f values.yaml bitnami/elasticsearch
|
||||
```
|
||||
|
||||
> **Tip**: You can use the default [values.yaml](values.yaml).
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
apiVersion: v1
|
||||
name: etcd
|
||||
version: 4.4.13
|
||||
version: 4.4.14
|
||||
appVersion: 3.4.3
|
||||
description: etcd is a distributed key value store that provides a reliable way to store data across a cluster of machines
|
||||
keywords:
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
|
||||
```console
|
||||
$ helm repo add bitnami https://charts.bitnami.com/bitnami
|
||||
$ helm install bitnami/etcd
|
||||
$ helm install my-release bitnami/etcd
|
||||
```
|
||||
|
||||
## Introduction
|
||||
@@ -27,7 +27,7 @@ To install the chart with the release name `my-release`:
|
||||
|
||||
```console
|
||||
$ helm repo add bitnami https://charts.bitnami.com/bitnami
|
||||
$ helm install --name my-release bitnami/etcd
|
||||
$ helm install my-release bitnami/etcd
|
||||
```
|
||||
|
||||
These commands deploy etcd on the Kubernetes cluster in the default configuration. The [Parameters](#parameters) section lists the parameters that can be configured during installation.
|
||||
@@ -140,7 +140,7 @@ The following tables lists the configurable parameters of the etcd chart and the
|
||||
Specify each parameter using the `--set key=value[,key=value]` argument to `helm install`. For example,
|
||||
|
||||
```console
|
||||
$ helm install --name my-release \
|
||||
$ helm install my-release \
|
||||
--set auth.rbac.rootPassword=secretpassword bitnami/etcd
|
||||
```
|
||||
|
||||
@@ -149,7 +149,7 @@ The above command sets the etcd `root` account password to `secretpassword`.
|
||||
Alternatively, a YAML file that specifies the values for the parameters can be provided while installing the chart. For example,
|
||||
|
||||
```console
|
||||
$ helm install --name my-release -f values.yaml bitnami/etcd
|
||||
$ helm install my-release -f values.yaml bitnami/etcd
|
||||
```
|
||||
|
||||
> **Tip**: You can use the default [values.yaml](values.yaml)
|
||||
@@ -305,7 +305,7 @@ To upgrade from previous charts versions, create a snapshot of the keyspace and
|
||||
You can use the command below to upgrade your chart by starting a new cluster using an existing snapshot, available in an existing PVC, to initialize the members:
|
||||
|
||||
```console
|
||||
$ helm install --name new-release bitnami/etcd \
|
||||
$ helm install new-release bitnami/etcd \
|
||||
--set statefulset.replicaCount=3 \
|
||||
--set persistence.enable=true \
|
||||
--set persistence.size=8Gi \
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
apiVersion: v1
|
||||
name: fluentd
|
||||
version: 0.4.10
|
||||
version: 0.4.11
|
||||
appVersion: 1.9.1
|
||||
description: Fluentd is an open source data collector for unified logging layer
|
||||
keywords:
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
|
||||
```console
|
||||
$ helm repo add bitnami https://charts.bitnami.com/bitnami
|
||||
$ helm install bitnami/fluentd
|
||||
$ helm install my-release bitnami/fluentd
|
||||
```
|
||||
|
||||
## Introduction
|
||||
@@ -27,7 +27,7 @@ To install the chart with the release name `my-release`:
|
||||
|
||||
```console
|
||||
$ helm repo add bitnami https://charts.bitnami.com/bitnami
|
||||
$ helm install bitnami/fluentd --name my-release
|
||||
$ helm install my-release bitnami/fluentd
|
||||
```
|
||||
|
||||
These commands deploy Fluentd on the Kubernetes cluster in the default configuration. The [Parameters](#parameters) section lists the parameters that can be configured during installation.
|
||||
@@ -150,7 +150,7 @@ The following tables lists the configurable parameters of the kibana chart and t
|
||||
Specify each parameter using the `--set key=value[,key=value]` argument to `helm install`. For example,
|
||||
|
||||
```console
|
||||
$ helm install --name my-release \
|
||||
$ helm install my-release \
|
||||
--set aggregator.port=24444 bitnami/fluentd
|
||||
```
|
||||
|
||||
@@ -159,7 +159,7 @@ The above command sets the aggregators to listen on port 24444.
|
||||
Alternatively, a YAML file that specifies the values for the parameters can be provided while installing the chart. For example,
|
||||
|
||||
```console
|
||||
$ helm install --name my-release -f values.yaml bitnami/fluentd
|
||||
$ helm install my-release -f values.yaml bitnami/fluentd
|
||||
```
|
||||
|
||||
> **Tip**: You can use the default [values.yaml](values.yaml)
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
apiVersion: v1
|
||||
name: grafana
|
||||
version: 1.2.6
|
||||
version: 1.2.7
|
||||
appVersion: 6.6.1
|
||||
description: Grafana is an open source, feature rich metrics dashboard and graph editor for Graphite, Elasticsearch, OpenTSDB, Prometheus and InfluxDB.
|
||||
keywords:
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
|
||||
```console
|
||||
$ helm repo add bitnami https://charts.bitnami.com/bitnami
|
||||
$ helm install bitnami/grafana
|
||||
$ helm install my-release bitnami/grafana
|
||||
```
|
||||
|
||||
## Introduction
|
||||
@@ -28,7 +28,7 @@ To install the chart with the release name `my-release`:
|
||||
|
||||
```console
|
||||
$ helm repo add bitnami https://charts.bitnami.com/bitnami
|
||||
$ helm install --name my-release bitnami/grafana
|
||||
$ helm install my-release bitnami/grafana
|
||||
```
|
||||
|
||||
These commands deploy grafana on the Kubernetes cluster in the default configuration. The [Parameters](#parameters) section lists the parameters that can be configured during installation.
|
||||
@@ -135,7 +135,7 @@ The following tables lists the configurable parameters of the grafana chart and
|
||||
Specify each parameter using the `--set key=value[,key=value]` argument to `helm install`. For example,
|
||||
|
||||
```console
|
||||
$ helm install --name my-release \
|
||||
$ helm install my-release \
|
||||
--set admin.user=admin-user bitnami/grafana
|
||||
```
|
||||
|
||||
@@ -144,7 +144,7 @@ The above command sets the Grafana admin user to `admin-user`.
|
||||
Alternatively, a YAML file that specifies the values for the parameters can be provided while installing the chart. For example,
|
||||
|
||||
```console
|
||||
$ helm install --name my-release -f values.yaml bitnami/grafana
|
||||
$ helm install my-release -f values.yaml bitnami/grafana
|
||||
```
|
||||
|
||||
> **Tip**: You can use the default [values.yaml](values.yaml)
|
||||
|
||||
@@ -16,7 +16,7 @@ For example, the following changes have been introduced:
|
||||
|
||||
```
|
||||
$ helm repo add bitnami https://charts.bitnami.com/bitnami
|
||||
$ helm install bitnami/harbor
|
||||
$ helm install my-release bitnami/harbor
|
||||
```
|
||||
|
||||
## Introduction
|
||||
@@ -36,7 +36,7 @@ Install the Harbor helm chart with a release name `my-release`:
|
||||
|
||||
```bash
|
||||
$ helm repo add bitnami https://charts.bitnami.com/bitnami
|
||||
$ helm install --name my-release bitnami/harbor
|
||||
$ helm install my-release bitnami/harbor
|
||||
```
|
||||
|
||||
## Uninstalling the Chart
|
||||
@@ -292,7 +292,7 @@ The following table lists the configurable parameters of the Harbor chart and th
|
||||
Specify each parameter using the `--set key=value[,key=value]` argument to `helm install`. For example,
|
||||
|
||||
```console
|
||||
$ helm install --name my-release \
|
||||
$ helm install my-release \
|
||||
--set harborAdminPassword=password \
|
||||
bitnami/harbor
|
||||
```
|
||||
@@ -302,7 +302,7 @@ The above command sets the Harbor administrator account password to `password`.
|
||||
Alternatively, a YAML file that specifies the values for the above parameters can be provided while installing the chart. For example,
|
||||
|
||||
```console
|
||||
$ helm install --name my-release -f values.yaml bitnami/harbor
|
||||
$ helm install my-release -f values.yaml bitnami/harbor
|
||||
```
|
||||
|
||||
## Configuration and installation details
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
|
||||
```console
|
||||
$ helm repo add bitnami https://charts.bitnami.com/bitnami
|
||||
$ helm install bitnami/influxdb
|
||||
$ helm install my-release bitnami/influxdb
|
||||
```
|
||||
|
||||
## Introduction
|
||||
@@ -28,7 +28,7 @@ To install the chart with the release name `my-release`:
|
||||
|
||||
```console
|
||||
$ helm repo add bitnami https://charts.bitnami.com/bitnami
|
||||
$ helm install --name my-release bitnami/influxdb
|
||||
$ helm install my-release bitnami/influxdb
|
||||
```
|
||||
|
||||
These commands deploy influxdb on the Kubernetes cluster in the default configuration. The [Parameters](#parameters) section lists the parameters that can be configured during installation.
|
||||
@@ -173,7 +173,7 @@ The following tables lists the configurable parameters of the InfluxDB chart and
|
||||
Specify each parameter using the `--set key=value[,key=value]` argument to `helm install`. For example,
|
||||
|
||||
```console
|
||||
$ helm install --name my-release \
|
||||
$ helm install my-release \
|
||||
--set adminUser.name=admin-user bitnami/influxdb
|
||||
```
|
||||
|
||||
@@ -182,7 +182,7 @@ The above command sets the InfluxDB admin user to `admin-user`.
|
||||
Alternatively, a YAML file that specifies the values for the parameters can be provided while installing the chart. For example,
|
||||
|
||||
```console
|
||||
$ helm install --name my-release -f values.yaml bitnami/influxdb
|
||||
$ helm install my-release -f values.yaml bitnami/influxdb
|
||||
```
|
||||
|
||||
> **Tip**: You can use the default [values.yaml](values.yaml)
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
apiVersion: v1
|
||||
name: jenkins
|
||||
version: 4.1.4
|
||||
version: 4.1.5
|
||||
appVersion: 2.204.2
|
||||
description: The leading open source automation server
|
||||
keywords:
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
|
||||
```console
|
||||
$ helm repo add bitnami https://charts.bitnami.com/bitnami
|
||||
$ helm install bitnami/jenkins
|
||||
$ helm install my-release bitnami/jenkins
|
||||
```
|
||||
|
||||
## Introduction
|
||||
@@ -28,7 +28,7 @@ To install the chart with the release name `my-release`:
|
||||
|
||||
```console
|
||||
$ helm repo add bitnami https://charts.bitnami.com/bitnami
|
||||
$ helm install --name my-release bitnami/jenkins
|
||||
$ helm install my-release bitnami/jenkins
|
||||
```
|
||||
|
||||
These commands deploy Jenkins on the Kubernetes cluster in the default configuration. The [Parameters](#parameters) section lists the parameters that can be configured during installation.
|
||||
@@ -119,7 +119,7 @@ The above parameters map to the env variables defined in [bitnami/jenkins](http:
|
||||
Specify each parameter using the `--set key=value[,key=value]` argument to `helm install`. For example,
|
||||
|
||||
```console
|
||||
$ helm install --name my-release \
|
||||
$ helm install my-release \
|
||||
--set jenkinsUsername=admin,jenkinsPassword=password \
|
||||
bitnami/jenkins
|
||||
```
|
||||
@@ -129,7 +129,7 @@ The above command sets the Jenkins administrator account username and password t
|
||||
Alternatively, a YAML file that specifies the values for the above parameters can be provided while installing the chart. For example,
|
||||
|
||||
```console
|
||||
$ helm install --name my-release -f values.yaml bitnami/jenkins
|
||||
$ helm install my-release -f values.yaml bitnami/jenkins
|
||||
```
|
||||
|
||||
> **Tip**: You can use the default [values.yaml](values.yaml)
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
|
||||
```console
|
||||
$ helm repo add bitnami https://charts.bitnami.com/bitnami
|
||||
$ helm install bitnami/kafka
|
||||
$ helm install my-release bitnami/kafka
|
||||
```
|
||||
|
||||
## Introduction
|
||||
@@ -27,7 +27,7 @@ To install the chart with the release name `my-release`:
|
||||
|
||||
```console
|
||||
$ helm repo add bitnami https://charts.bitnami.com/bitnami
|
||||
$ helm install --name my-release bitnami/kafka
|
||||
$ helm install my-release bitnami/kafka
|
||||
```
|
||||
|
||||
These commands deploy Kafka on the Kubernetes cluster in the default configuration. The [Parameters](#parameters) section lists the parameters that can be configured during installation.
|
||||
@@ -198,7 +198,7 @@ The following tables lists the configurable parameters of the Kafka chart and th
|
||||
Specify each parameter using the `--set key=value[,key=value]` argument to `helm install`. For example,
|
||||
|
||||
```console
|
||||
$ helm install --name my-release \
|
||||
$ helm install my-release \
|
||||
--set kafkaPassword=secretpassword,kafkaDatabase=my-database \
|
||||
bitnami/kafka
|
||||
```
|
||||
@@ -208,7 +208,7 @@ The above command sets the Kafka `kafka` account password to `secretpassword`. A
|
||||
Alternatively, a YAML file that specifies the values for the parameters can be provided while installing the chart. For example,
|
||||
|
||||
```console
|
||||
$ helm install --name my-release -f values.yaml bitnami/kafka
|
||||
$ helm install my-release -f values.yaml bitnami/kafka
|
||||
```
|
||||
|
||||
> **Tip**: You can use the default [values.yaml](values.yaml)
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
|
||||
```console
|
||||
$ helm repo add bitnami https://charts.bitnami.com/bitnami
|
||||
$ helm install bitnami/kibana --set elasticsearch.hosts[0]=<Hostname of your ES instance> --set elasticsearch.port=<port of your ES instance>
|
||||
$ helm install my-release bitnami/kibana --set elasticsearch.hosts[0]=<Hostname of your ES instance> --set elasticsearch.port=<port of your ES instance>
|
||||
```
|
||||
|
||||
## Introduction
|
||||
@@ -30,9 +30,10 @@ This chart requires a Elasticsearch instance to work. You can use an already exi
|
||||
|
||||
```console
|
||||
$ helm repo add bitnami https://charts.bitnami.com/bitnami
|
||||
$ helm install bitnami/kibana --name my-release \
|
||||
$ helm install my-release \
|
||||
--set elasticsearch.hosts[0]=<Hostname of your ES instance> \
|
||||
--set elasticsearch.port=<port of your ES instance>
|
||||
--set elasticsearch.port=<port of your ES instance> \
|
||||
bitnami/kibana
|
||||
```
|
||||
|
||||
These commands deploy kibana on the Kubernetes cluster in the default configuration. The [Parameters](#parameters) section lists the parameters that can be configured during installation.
|
||||
@@ -140,7 +141,7 @@ The following tables lists the configurable parameters of the kibana chart and t
|
||||
Specify each parameter using the `--set key=value[,key=value]` argument to `helm install`. For example,
|
||||
|
||||
```console
|
||||
$ helm install --name my-release \
|
||||
$ helm install my-release \
|
||||
--set admin.user=admin-user bitnami/kibana
|
||||
```
|
||||
|
||||
@@ -149,7 +150,7 @@ The above command sets the Kibana admin user to `admin-user`.
|
||||
Alternatively, a YAML file that specifies the values for the parameters can be provided while installing the chart. For example,
|
||||
|
||||
```console
|
||||
$ helm install --name my-release -f values.yaml bitnami/kibana
|
||||
$ helm install my-release -f values.yaml bitnami/kibana
|
||||
```
|
||||
|
||||
> **Tip**: You can use the default [values.yaml](values.yaml)
|
||||
|
||||
@@ -2,7 +2,7 @@ apiVersion: v1
|
||||
appVersion: 1.9.4
|
||||
description: kube-state-metrics is a simple service that listens to the Kubernetes API server and generates metrics about the state of the objects.
|
||||
name: kube-state-metrics
|
||||
version: 0.1.11
|
||||
version: 0.1.12
|
||||
keywords:
|
||||
- prometheus
|
||||
- kube-state-metrics
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
|
||||
```bash
|
||||
$ helm repo add bitnami https://charts.bitnami.com/bitnami
|
||||
$ helm install bitnami/kube-state-metrics
|
||||
$ helm install my-release bitnami/kube-state-metrics
|
||||
```
|
||||
|
||||
## Introduction
|
||||
@@ -31,7 +31,7 @@ $ helm repo add bitnami https://charts.bitnami.com/bitnami
|
||||
To install the chart with the release name `my-release`:
|
||||
|
||||
```bash
|
||||
$ helm install --name my-release bitnami/kube-state-metrics
|
||||
$ helm install my-release bitnami/kube-state-metrics
|
||||
```
|
||||
|
||||
The command deploys kube-state-metrics on the Kubernetes cluster in the default configuration. The [configuration](#configuration) section lists the parameters that can be configured during installation.
|
||||
@@ -138,13 +138,13 @@ The following table lists the configurable parameters of the kube-state-metrics
|
||||
Specify each parameter using the `--set key=value[,key=value]` argument to `helm install`. For example the following command sets the `replicas` of the kube-state-metrics Pods to `2`.
|
||||
|
||||
```bash
|
||||
$ helm install --name my-release --set replicas=2 bitnami/kube-state-metrics
|
||||
$ helm install my-release --set replicas=2 bitnami/kube-state-metrics
|
||||
```
|
||||
|
||||
Alternatively, a YAML file that specifies the values for the parameters can be provided while installing the chart. For example,
|
||||
|
||||
```bash
|
||||
$ helm install --name my-release -f values.yaml bitnami/kube-state-metrics
|
||||
$ helm install my-release -f values.yaml bitnami/kube-state-metrics
|
||||
```
|
||||
|
||||
> **Tip**: You can use the default [values.yaml](values.yaml)
|
||||
|
||||
@@ -14,4 +14,4 @@ maintainers:
|
||||
name: logstash
|
||||
sources:
|
||||
- https://github.com/bitnami/bitnami-docker-logstash
|
||||
version: 0.2.8
|
||||
version: 0.2.9
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
|
||||
```console
|
||||
$ helm repo add bitnami https://charts.bitnami.com/bitnami
|
||||
$ helm install bitnami/logstash
|
||||
$ helm install my-release bitnami/logstash
|
||||
```
|
||||
|
||||
## Introduction
|
||||
@@ -26,7 +26,7 @@ To install the chart with the release name `my-release`:
|
||||
|
||||
```console
|
||||
$ helm repo add bitnami https://charts.bitnami.com/bitnami
|
||||
$ helm install --name my-release bitnami/logstash
|
||||
$ helm install my-release bitnami/logstash
|
||||
```
|
||||
|
||||
These commands deploy logstash on the Kubernetes cluster in the default configuration. The [configuration](#configuration) section lists the parameters that can be configured during installation.
|
||||
@@ -129,7 +129,7 @@ The following tables lists the configurable parameters of the Logstash chart and
|
||||
Specify each parameter using the `--set key=value[,key=value]` argument to `helm install`. For example,
|
||||
|
||||
```console
|
||||
$ helm install --name my-release \
|
||||
$ helm install my-release \
|
||||
--set enableMonitoringAPI=false bitnami/logstash
|
||||
```
|
||||
|
||||
@@ -138,7 +138,7 @@ The above command disables the Logstash Monitoring API.
|
||||
Alternatively, a YAML file that specifies the values for the parameters can be provided while installing the chart. For example,
|
||||
|
||||
```console
|
||||
$ helm install --name my-release -f values.yaml bitnami/logstash
|
||||
$ helm install my-release -f values.yaml bitnami/logstash
|
||||
```
|
||||
|
||||
> **Tip**: You can use the default [values.yaml](values.yaml)
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
apiVersion: v1
|
||||
name: magento
|
||||
version: 11.0.3
|
||||
version: 11.0.4
|
||||
appVersion: 2.3.4
|
||||
description: A feature-rich flexible e-commerce solution. It includes transaction options, multi-store functionality, loyalty programs, product categorization and shopper filtering, promotion rules, and more.
|
||||
keywords:
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
|
||||
```console
|
||||
$ helm repo add bitnami https://charts.bitnami.com/bitnami
|
||||
$ helm install bitnami/magento
|
||||
$ helm install my-release bitnami/magento
|
||||
```
|
||||
|
||||
## Introduction
|
||||
@@ -30,7 +30,7 @@ To install the chart with the release name `my-release`:
|
||||
|
||||
```console
|
||||
$ helm repo add bitnami https://charts.bitnami.com/bitnami
|
||||
$ helm install --name my-release bitnami/magento
|
||||
$ helm install my-release bitnami/magento
|
||||
```
|
||||
|
||||
These commands deploy Magento on the Kubernetes cluster in the default configuration. The [Parameters](#parameters) section lists the parameters that can be configured during installation.
|
||||
@@ -167,7 +167,7 @@ The above parameters map to the env variables defined in [bitnami/magento](http:
|
||||
Specify each parameter using the `--set key=value[,key=value]` argument to `helm install`. For example,
|
||||
|
||||
```console
|
||||
$ helm install --name my-release \
|
||||
$ helm install my-release \
|
||||
--set magentoUsername=admin,magentoPassword=password,mariadb.mariadbRootPassword=secretpassword \
|
||||
bitnami/magento
|
||||
```
|
||||
@@ -177,7 +177,7 @@ The above command sets the Magento administrator account username and password t
|
||||
Alternatively, a YAML file that specifies the values for the above parameters can be provided while installing the chart. For example,
|
||||
|
||||
```console
|
||||
$ helm install --name my-release -f values.yaml bitnami/magento
|
||||
$ helm install my-release -f values.yaml bitnami/magento
|
||||
```
|
||||
|
||||
> **Tip**: You can use the default [values.yaml](values.yaml)
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
|
||||
```bash
|
||||
$ helm repo add bitnami https://charts.bitnami.com/bitnami
|
||||
$ helm install bitnami/mariadb-galera
|
||||
$ helm install my-release bitnami/mariadb-galera
|
||||
```
|
||||
|
||||
## Introduction
|
||||
@@ -31,7 +31,7 @@ $ helm repo add bitnami https://charts.bitnami.com/bitnami
|
||||
To install the chart with the release name `my-release`:
|
||||
|
||||
```bash
|
||||
$ helm install --name my-release bitnami/mariadb-galera
|
||||
$ helm install my-release bitnami/mariadb-galera
|
||||
```
|
||||
|
||||
The command deploys MariaDB Galera on the Kubernetes cluster in the default configuration. The [Parameters](#parameters) section lists the parameters that can be configured during installation.
|
||||
@@ -163,7 +163,7 @@ The above parameters map to the env variables defined in [bitnami/mariadb-galera
|
||||
Specify each parameter using the `--set key=value[,key=value]` argument to `helm install`. For example,
|
||||
|
||||
```bash
|
||||
$ helm install --name my-release \
|
||||
$ helm install my-release \
|
||||
--set rootUser.password=secretpassword,
|
||||
--set db.user=app_database \
|
||||
bitnami/mariadb-galera
|
||||
@@ -174,7 +174,7 @@ The above command sets the MariaDB `root` account password to `secretpassword`.
|
||||
Alternatively, a YAML file that specifies the values for the parameters can be provided while installing the chart. For example,
|
||||
|
||||
```bash
|
||||
$ helm install --name my-release -f values.yaml bitnami/mariadb-galera
|
||||
$ helm install my-release -f values.yaml bitnami/mariadb-galera
|
||||
```
|
||||
|
||||
> **Tip**: You can use the default [values.yaml](values.yaml)
|
||||
@@ -186,7 +186,7 @@ While the chart allows you to specify the server configuration using the `.maria
|
||||
For example, if you want to enable the PAM cleartext plugin, specify the command line parameter while deploying the chart like so:
|
||||
|
||||
```bash
|
||||
$ helm install --name my-release \
|
||||
$ helm install my-release \
|
||||
--set extraFlags="--pam-use-cleartext-plugin=ON" \
|
||||
bitnami/mariadb-galera
|
||||
```
|
||||
|
||||
@@ -219,7 +219,7 @@ mariadb-galera: LDAP
|
||||
Invalid LDAP configuration. When enabling LDAP support, the parameters "ldap.uri",
|
||||
"ldap.base", "ldap.binddn", and "ldap.bindpw" are mandatory. Please provide them:
|
||||
|
||||
$ helm install --name {{ .Release.Name }} bitnami/mariadb-galera \
|
||||
$ helm install {{ .Release.Name }} bitnami/mariadb-galera \
|
||||
--set ldap.enabled=true \
|
||||
--set ldap.uri="ldap://my_ldap_server" \
|
||||
--set ldap.base="dc=example,dc=org" \
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
apiVersion: v1
|
||||
name: memcached
|
||||
version: 4.2.5
|
||||
version: 4.2.6
|
||||
appVersion: 1.5.22
|
||||
description: Chart for Memcached
|
||||
keywords:
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
|
||||
```console
|
||||
$ helm repo add bitnami https://charts.bitnami.com/bitnami
|
||||
$ helm install bitnami/memcached
|
||||
$ helm install my-release bitnami/memcached
|
||||
```
|
||||
|
||||
## Introduction
|
||||
@@ -26,7 +26,7 @@ To install the chart with the release name `my-release`:
|
||||
|
||||
```console
|
||||
$ helm repo add bitnami https://charts.bitnami.com/bitnami
|
||||
$ helm install --name my-release bitnami/memcached
|
||||
$ helm install my-release bitnami/memcached
|
||||
```
|
||||
|
||||
These commands deploy Memcached on the Kubernetes cluster in the default configuration. The [Parameters](#parameters) section lists the parameters that can be configured during installation.
|
||||
@@ -101,7 +101,7 @@ The above parameters map to the env variables defined in [bitnami/memcached](htt
|
||||
Specify each parameter using the `--set key=value[,key=value]` argument to `helm install`. For example,
|
||||
|
||||
```console
|
||||
$ helm install --name my-release --set memcachedUsername=user,memcachedPassword=password bitnami/memcached
|
||||
$ helm install my-release --set memcachedUsername=user,memcachedPassword=password bitnami/memcached
|
||||
```
|
||||
|
||||
The above command sets the Memcached admin account username and password to `user` and `password` respectively.
|
||||
@@ -109,7 +109,7 @@ The above command sets the Memcached admin account username and password to `use
|
||||
Alternatively, a YAML file that specifies the values for the parameters can be provided while installing the chart. For example,
|
||||
|
||||
```console
|
||||
$ helm install --name my-release -f values.yaml bitnami/memcached
|
||||
$ helm install my-release -f values.yaml bitnami/memcached
|
||||
```
|
||||
|
||||
> **Tip**: You can use the default [values.yaml](values.yaml)
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
apiVersion: v1
|
||||
name: metrics-server
|
||||
version: 4.1.3
|
||||
version: 4.1.4
|
||||
appVersion: 0.3.6
|
||||
description: Metrics Server is a cluster-wide aggregator of resource usage data. Metrics Server collects metrics from the Summary API, exposed by Kubelet on each node.
|
||||
keywords:
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
|
||||
```console
|
||||
$ helm repo add bitnami https://charts.bitnami.com/bitnami
|
||||
$ helm install bitnami/metrics-server
|
||||
$ helm install my-release bitnami/metrics-server
|
||||
```
|
||||
|
||||
## Introduction
|
||||
@@ -26,7 +26,7 @@ To install the chart with the release name `my-release`:
|
||||
|
||||
```console
|
||||
$ helm repo add bitnami https://charts.bitnami.com/bitnami
|
||||
$ helm install --name my-release bitnami/metrics-server
|
||||
$ helm install my-release bitnami/metrics-server
|
||||
```
|
||||
|
||||
These commands deploy Metrics Server on the Kubernetes cluster in the default configuration. The [Parameters](#parameters) section lists the parameters that can be configured during installation.
|
||||
@@ -77,7 +77,7 @@ The following tables lists the configurable parameters of the Metrics Server cha
|
||||
Specify each parameter using the `--set key=value[,key=value]` argument to `helm install`. For example,
|
||||
|
||||
```console
|
||||
$ helm install --name my-release \
|
||||
$ helm install my-release \
|
||||
--set rbac.create=true bitnami/metrics-server
|
||||
```
|
||||
|
||||
@@ -86,7 +86,7 @@ The above command enables RBAC authentication.
|
||||
Alternatively, a YAML file that specifies the values for the parameters can be provided while installing the chart. For example,
|
||||
|
||||
```console
|
||||
$ helm install --name my-release -f values.yaml bitnami/metrics-server
|
||||
$ helm install my-release -f values.yaml bitnami/metrics-server
|
||||
```
|
||||
|
||||
> **Tip**: You can use the default [values.yaml](values.yaml)
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
|
||||
```console
|
||||
$ helm repo add bitnami https://charts.bitnami.com/bitnami
|
||||
$ helm install bitnami/minio
|
||||
$ helm install my-release bitnami/minio
|
||||
```
|
||||
|
||||
## Introduction
|
||||
@@ -28,7 +28,7 @@ To install the chart with the release name `my-release`:
|
||||
|
||||
```console
|
||||
$ helm repo add bitnami https://charts.bitnami.com/bitnami
|
||||
$ helm install --name my-release bitnami/minio
|
||||
$ helm install my-release bitnami/minio
|
||||
```
|
||||
|
||||
These commands deploy MinIO on the Kubernetes cluster in the default configuration. The [Parameters](#parameters) section lists the parameters that can be configured during installation.
|
||||
@@ -138,7 +138,7 @@ The following table lists the configurable parameters of the MinIO chart and the
|
||||
Specify each parameter using the `--set key=value[,key=value]` argument to `helm install`. For example,
|
||||
|
||||
```console
|
||||
$ helm install --name my-release \
|
||||
$ helm install my-release \
|
||||
--set accessKey.password=minio-access-key \
|
||||
--set secretKey.password=minio-secret-key \
|
||||
bitnami/minio
|
||||
@@ -149,7 +149,7 @@ The above command sets the MinIO Server access key and secret key to `minio-acce
|
||||
Alternatively, a YAML file that specifies the values for the parameters can be provided while installing the chart. For example,
|
||||
|
||||
```console
|
||||
$ helm install --name my-release -f values.yaml bitnami/minio
|
||||
$ helm install my-release -f values.yaml bitnami/minio
|
||||
```
|
||||
|
||||
> **Tip**: You can use the default [values.yaml](values.yaml)
|
||||
|
||||
@@ -8,7 +8,7 @@ This chart uses the [sharding method](https://docs.mongodb.com/manual/sharding/)
|
||||
|
||||
```bash
|
||||
$ helm repo add bitnami https://charts.bitnami.com/bitnami
|
||||
$ helm install bitnami/mongodb-sharded
|
||||
$ helm install my-release bitnami/mongodb-sharded
|
||||
```
|
||||
|
||||
## Introduction
|
||||
@@ -29,7 +29,7 @@ Bitnami charts can be used with [Kubeapps](https://kubeapps.com/) for deployment
|
||||
To install the chart with the release name `my-release`:
|
||||
|
||||
```bash
|
||||
$ helm install --name my-release bitnami/mongodb-sharded
|
||||
$ helm install my-release bitnami/mongodb-sharded
|
||||
```
|
||||
|
||||
The command deploys MongoDB on the Kubernetes cluster in the default configuration. The [Parameters](#parameters) section lists the parameters that can be configured during installation.
|
||||
@@ -270,7 +270,7 @@ The following table lists the configurable parameters of the MongoDB chart and t
|
||||
Specify each parameter using the `--set key=value[,key=value]` argument to `helm install`. For example,
|
||||
|
||||
```bash
|
||||
$ helm install --name my-release \
|
||||
$ helm install my-release \
|
||||
--set mongodbRootPassword=secretpassword,mongodbUsername=my-user,mongodbPassword=my-password,mongodbDatabase=my-database \
|
||||
bitnami/mongodb-sharded
|
||||
```
|
||||
@@ -280,7 +280,7 @@ The above command sets the MongoDB `root` account password to `secretpassword`.
|
||||
Alternatively, a YAML file that specifies the values for the parameters can be provided while installing the chart. For example,
|
||||
|
||||
```bash
|
||||
$ helm install --name my-release -f values.yaml bitnami/mongodb-sharded
|
||||
$ helm install my-release -f values.yaml bitnami/mongodb-sharded
|
||||
```
|
||||
|
||||
> **Tip**: You can use the default [values.yaml](values.yaml)
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
|
||||
```console
|
||||
$ helm repo add bitnami https://charts.bitnami.com/bitnami
|
||||
$ helm install bitnami/mxnet
|
||||
$ helm install my-release bitnami/mxnet
|
||||
```
|
||||
|
||||
## Introduction
|
||||
@@ -28,7 +28,7 @@ To install the chart with the release name `my-release`:
|
||||
|
||||
```console
|
||||
$ helm repo add bitnami https://charts.bitnami.com/bitnami
|
||||
$ helm install --name my-release bitnami/mxnet
|
||||
$ helm install my-release bitnami/mxnet
|
||||
```
|
||||
|
||||
These commands deploy MXNet on the Kubernetes cluster in the default configuration. The [Parameters](#parameters) section lists the parameters that can be configured.
|
||||
@@ -122,7 +122,7 @@ The following table lists the configurable parameters of the MinIO chart and the
|
||||
Specify each parameter using the `--set key=value[,key=value]` argument to `helm install`. For example,
|
||||
|
||||
```console
|
||||
$ helm install --name my-release \
|
||||
$ helm install my-release \
|
||||
--set mode=distributed \
|
||||
--set serverCount=2 \
|
||||
--set workerCount=3 \
|
||||
@@ -134,7 +134,7 @@ The above command creates 6 pods for MXNet: one scheduler, two servers, and thre
|
||||
Alternatively, a YAML file that specifies the values for the parameters can be provided while installing the chart. For example,
|
||||
|
||||
```console
|
||||
$ helm install --name my-release -f values.yaml bitnami/mxnet
|
||||
$ helm install my-release -f values.yaml bitnami/mxnet
|
||||
```
|
||||
|
||||
> **Tip**: You can use the default [values.yaml](values.yaml)
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
|
||||
```bash
|
||||
$ helm repo add bitnami https://charts.bitnami.com/bitnami
|
||||
$ helm install bitnami/mysql
|
||||
$ helm install my-release bitnami/mysql
|
||||
```
|
||||
|
||||
## Introduction
|
||||
@@ -27,7 +27,7 @@ To install the chart with the release name `my-release`:
|
||||
|
||||
```bash
|
||||
$ helm repo add bitnami https://charts.bitnami.com/bitnami
|
||||
$ helm install --name my-release bitnami/mysql
|
||||
$ helm install my-release bitnami/mysql
|
||||
```
|
||||
|
||||
These commands deploy MySQL on the Kubernetes cluster in the default configuration. The [Parameters](#parameters) section lists the parameters that can be configured during installation.
|
||||
@@ -163,7 +163,7 @@ The above parameters map to the env variables defined in [bitnami/mysql](http://
|
||||
Specify each parameter using the `--set key=value[,key=value]` argument to `helm install`. For example,
|
||||
|
||||
```bash
|
||||
$ helm install --name my-release \
|
||||
$ helm install my-release \
|
||||
--set root.password=secretpassword,user.database=app_database \
|
||||
bitnami/mysql
|
||||
```
|
||||
@@ -173,7 +173,7 @@ The above command sets the MySQL `root` account password to `secretpassword`. Ad
|
||||
Alternatively, a YAML file that specifies the values for the parameters can be provided while installing the chart. For example,
|
||||
|
||||
```bash
|
||||
$ helm install --name my-release -f values.yaml bitnami/mysql
|
||||
$ helm install my-release -f values.yaml bitnami/mysql
|
||||
```
|
||||
|
||||
> **Tip**: You can use the default [values.yaml](values.yaml)
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
apiVersion: v1
|
||||
name: nginx-ingress-controller
|
||||
version: 5.3.2
|
||||
version: 5.3.3
|
||||
appVersion: 0.28.0
|
||||
description: Chart for the nginx Ingress controller
|
||||
keywords:
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
|
||||
```bash
|
||||
$ helm repo add bitnami https://charts.bitnami.com/bitnami
|
||||
$ helm install bitnami/nginx-ingress-controller
|
||||
$ helm install my-release bitnami/nginx-ingress-controller
|
||||
```
|
||||
|
||||
## Introduction
|
||||
@@ -28,7 +28,7 @@ To install the chart with the release name `my-release`:
|
||||
|
||||
```bash
|
||||
$ helm repo add bitnami https://charts.bitnami.com/bitnami
|
||||
$ helm install --name my-release bitnami/nginx-ingress-controller
|
||||
$ helm install my-release bitnami/nginx-ingress-controller
|
||||
```
|
||||
|
||||
These commands deploy nginx-ingress-controller on the Kubernetes cluster in the default configuration.
|
||||
@@ -177,7 +177,7 @@ Parameter | Description | Default
|
||||
Specify each parameter using the `--set key=value[,key=value]` argument to `helm install`. For example,
|
||||
|
||||
```bash
|
||||
$ helm install --name my-release \
|
||||
$ helm install my-release \
|
||||
--set image.pullPolicy=Always \
|
||||
bitnami/nginx-ingress-controller
|
||||
```
|
||||
@@ -187,7 +187,7 @@ The above command sets the `image.pullPolicy` to `Always`.
|
||||
Alternatively, a YAML file that specifies the values for the parameters can be provided while installing the chart. For example,
|
||||
|
||||
```bash
|
||||
$ helm install --name my-release -f values.yaml bitnami/nginx-ingress-controller
|
||||
$ helm install my-release -f values.yaml bitnami/nginx-ingress-controller
|
||||
```
|
||||
|
||||
> **Tip**: You can use the default [values.yaml](values.yaml)
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
apiVersion: v1
|
||||
name: nginx
|
||||
version: 5.1.4
|
||||
version: 5.1.5
|
||||
appVersion: 1.16.1
|
||||
description: Chart for the nginx server
|
||||
keywords:
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
|
||||
```bash
|
||||
$ helm repo add bitnami https://charts.bitnami.com/bitnami
|
||||
$ helm install bitnami/nginx
|
||||
$ helm install my-release bitnami/nginx
|
||||
```
|
||||
|
||||
## Introduction
|
||||
@@ -28,7 +28,7 @@ To install the chart with the release name `my-release`:
|
||||
|
||||
```bash
|
||||
$ helm repo add bitnami https://charts.bitnami.com/bitnami
|
||||
$ helm install --name my-release bitnami/nginx
|
||||
$ helm install my-release bitnami/nginx
|
||||
```
|
||||
|
||||
These commands deploy NGINX Open Source on the Kubernetes cluster in the default configuration.
|
||||
@@ -105,7 +105,7 @@ The following tables lists the configurable parameters of the NGINX Open Source
|
||||
Specify each parameter using the `--set key=value[,key=value]` argument to `helm install`. For example,
|
||||
|
||||
```bash
|
||||
$ helm install --name my-release \
|
||||
$ helm install my-release \
|
||||
--set imagePullPolicy=Always \
|
||||
bitnami/nginx
|
||||
```
|
||||
@@ -115,7 +115,7 @@ The above command sets the `imagePullPolicy` to `Always`.
|
||||
Alternatively, a YAML file that specifies the values for the parameters can be provided while installing the chart. For example,
|
||||
|
||||
```bash
|
||||
$ helm install --name my-release -f values.yaml bitnami/nginx
|
||||
$ helm install my-release -f values.yaml bitnami/nginx
|
||||
```
|
||||
|
||||
> **Tip**: You can use the default [values.yaml](values.yaml)
|
||||
|
||||
@@ -2,7 +2,7 @@ apiVersion: v1
|
||||
appVersion: 0.18.1
|
||||
description: Prometheus exporter for hardware and OS metrics exposed by UNIX kernels, with pluggable metric collectors.
|
||||
name: node-exporter
|
||||
version: 0.2.1
|
||||
version: 0.2.2
|
||||
keywords:
|
||||
- prometheus
|
||||
- node-exporter
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
|
||||
```bash
|
||||
$ helm repo add bitnami https://charts.bitnami.com/bitnami
|
||||
$ helm install bitnami/node-exporter
|
||||
$ helm install my-release bitnami/node-exporter
|
||||
```
|
||||
|
||||
## Introduction
|
||||
@@ -31,7 +31,7 @@ $ helm repo add bitnami https://charts.bitnami.com/bitnami
|
||||
To install the chart with the release name `my-release`:
|
||||
|
||||
```bash
|
||||
$ helm install --name my-release bitnami/node-exporter
|
||||
$ helm install my-release bitnami/node-exporter
|
||||
```
|
||||
|
||||
The command deploys Node Exporter on the Kubernetes cluster in the default configuration. The [configuration](#configuration) section lists the parameters that can be configured during installation.
|
||||
@@ -115,13 +115,13 @@ The following table lists the configurable parameters of the Node Exporter chart
|
||||
Specify each parameter using the `--set key=value[,key=value]` argument to `helm install`. For example the following command sets the `minReadySeconds` of the Node Exporter Pods to `120` seconds.
|
||||
|
||||
```bash
|
||||
$ helm install --name my-release --set minReadySeconds=120 bitnami/node-exporter
|
||||
$ helm install my-release --set minReadySeconds=120 bitnami/node-exporter
|
||||
```
|
||||
|
||||
Alternatively, a YAML file that specifies the values for the parameters can be provided while installing the chart. For example,
|
||||
|
||||
```bash
|
||||
$ helm install --name my-release -f values.yaml bitnami/node-exporter
|
||||
$ helm install my-release -f values.yaml bitnami/node-exporter
|
||||
```
|
||||
|
||||
> **Tip**: You can use the default [values.yaml](values.yaml)
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
|
||||
```console
|
||||
$ helm repo add bitnami https://charts.bitnami.com/bitnami
|
||||
$ helm install bitnami/node
|
||||
$ helm install my-release bitnami/node
|
||||
```
|
||||
|
||||
## Introduction
|
||||
@@ -30,7 +30,7 @@ To install the chart with the release name `my-release`:
|
||||
|
||||
```console
|
||||
$ helm repo add bitnami https://charts.bitnami.com/bitnami
|
||||
$ helm install --name my-release bitnami/node
|
||||
$ helm install my-release bitnami/node
|
||||
```
|
||||
|
||||
These commands deploy Node.js on the Kubernetes cluster in the default configuration. The [Parameters](#parameters) section lists the parameters that can be configured during installation. Also includes support for MariaDB chart out of the box.
|
||||
@@ -117,7 +117,7 @@ The above parameters map to the env variables defined in [bitnami/node](http://g
|
||||
Specify each parameter using the `--set key=value[,key=value]` argument to `helm install`. For example,
|
||||
|
||||
```console
|
||||
$ helm install --name my-release \
|
||||
$ helm install my-release \
|
||||
--set repository=https://github.com/jbianquetti-nami/simple-node-app.git,replicas=2 \
|
||||
bitnami/node
|
||||
```
|
||||
@@ -127,7 +127,7 @@ The above command clones the remote git repository to the `/app/` directory of
|
||||
Alternatively, a YAML file that specifies the values for the above parameters can be provided while installing the chart. For example,
|
||||
|
||||
```console
|
||||
$ helm install --name my-release -f values.yaml bitnami/node
|
||||
$ helm install my-release -f values.yaml bitnami/node
|
||||
```
|
||||
|
||||
> **Tip**: You can use the default [values.yaml](values.yaml)
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
apiVersion: v1
|
||||
name: postgresql-ha
|
||||
version: 1.4.2
|
||||
version: 1.4.3
|
||||
appVersion: 11.6.0
|
||||
description: Chart for PostgreSQL with HA architecture (using Replication Manager (repmgr) and Pgpool).
|
||||
keywords:
|
||||
|
||||
@@ -9,7 +9,7 @@ This Helm chart has been developed based on [stable/postgresql](https://github.c
|
||||
|
||||
```
|
||||
$ helm repo add bitnami https://charts.bitnami.com/bitnami
|
||||
$ helm install bitnami/postgresql-ha
|
||||
$ helm install my-release bitnami/postgresql-ha
|
||||
```
|
||||
|
||||
## Introduction
|
||||
@@ -27,7 +27,7 @@ Install the PostgreSQL HA helm chart with a release name `my-release`:
|
||||
|
||||
```bash
|
||||
$ helm repo add bitnami https://charts.bitnami.com/bitnami
|
||||
$ helm install --name my-release bitnami/postgresql-ha
|
||||
$ helm install my-release bitnami/postgresql-ha
|
||||
```
|
||||
|
||||
## Uninstalling the Chart
|
||||
@@ -202,7 +202,7 @@ The following table lists the configurable parameters of the PostgreSQL HA chart
|
||||
Specify each parameter using the `--set key=value[,key=value]` argument to `helm install`. For example,
|
||||
|
||||
```console
|
||||
$ helm install --name my-release \
|
||||
$ helm install my-release \
|
||||
--set postgresql.password=password \
|
||||
bitnami/postgresql-ha
|
||||
```
|
||||
@@ -212,7 +212,7 @@ The above command sets the password for user `postgres` to `password`.
|
||||
Alternatively, a YAML file that specifies the values for the above parameters can be provided while installing the chart. For example,
|
||||
|
||||
```console
|
||||
$ helm install --name my-release -f values.yaml bitnami/postgresql-ha
|
||||
$ helm install my-release -f values.yaml bitnami/postgresql-ha
|
||||
```
|
||||
|
||||
## Configuration and installation details
|
||||
|
||||
@@ -727,7 +727,7 @@ postgresql-ha: LDAP
|
||||
Invalid LDAP configuration. When enabling LDAP support, the parameters "ldap.uri",
|
||||
"ldap.base", "ldap.binddn", and "ldap.bindpw" are mandatory. Please provide them:
|
||||
|
||||
$ helm install --name {{ .Release.Name }} bitnami/postgresql-ha \
|
||||
$ helm install {{ .Release.Name }} bitnami/postgresql-ha \
|
||||
--set ldap.enabled=true \
|
||||
--set ldap.uri="ldap://my_ldap_server" \
|
||||
--set ldap.base="dc=example\,dc=org" \
|
||||
|
||||
@@ -2,7 +2,7 @@ apiVersion: v1
|
||||
appVersion: 0.35.1
|
||||
description: The Prometheus Operator for Kubernetes provides easy monitoring definitions for Kubernetes services and deployment and management of Prometheus instances.
|
||||
name: prometheus-operator
|
||||
version: 0.12.1
|
||||
version: 0.12.2
|
||||
keywords:
|
||||
- prometheus
|
||||
- alertmanager
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
|
||||
```bash
|
||||
$ helm repo add bitnami https://charts.bitnami.com/bitnami
|
||||
$ helm install bitnami/prometheus-operator
|
||||
$ helm install my-release bitnami/prometheus-operator
|
||||
```
|
||||
|
||||
## Introduction
|
||||
@@ -41,7 +41,7 @@ $ helm repo add bitnami https://charts.bitnami.com/bitnami
|
||||
To install the chart with the release name `my-release`:
|
||||
|
||||
```bash
|
||||
$ helm install --name my-release bitnami/prometheus-operator
|
||||
$ helm install my-release bitnami/prometheus-operator
|
||||
```
|
||||
|
||||
The command deploys Prometheus Operator on the Kubernetes cluster in the default configuration. The [configuration](#configuration) section lists the parameters that can be configured during installation.
|
||||
@@ -306,7 +306,7 @@ The above parameters map to the env variables defined in [bitnami/prometheus-ope
|
||||
Specify each parameter using the `--set key=value[,key=value]` argument to `helm install`. For example,
|
||||
|
||||
```bash
|
||||
$ helm install --name my-release \
|
||||
$ helm install my-release \
|
||||
--set operator.logLevel=debug \
|
||||
--set prometheus.replicaCount=5 \
|
||||
bitnami/prometheus-operator
|
||||
@@ -317,7 +317,7 @@ The above command sets the Prometheus Operator `logLevel` to `debug`. Additional
|
||||
Alternatively, a YAML file that specifies the values for the parameters can be provided while installing the chart. For example,
|
||||
|
||||
```bash
|
||||
$ helm install --name my-release -f values.yaml bitnami/prometheus-operator
|
||||
$ helm install my-release -f values.yaml bitnami/prometheus-operator
|
||||
```
|
||||
|
||||
> **Tip**: You can use the default [values.yaml](values.yaml)
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
|
||||
```console
|
||||
$ helm repo add bitnami https://charts.bitnami.com/bitnami
|
||||
$ helm install bitnami/pytorch
|
||||
$ helm install my-release bitnami/pytorch
|
||||
```
|
||||
|
||||
## Introduction
|
||||
@@ -28,7 +28,7 @@ To install the chart with the release name `my-release`:
|
||||
|
||||
```console
|
||||
$ helm repo add bitnami https://charts.bitnami.com/bitnami
|
||||
$ helm install --name my-release bitnami/pytorch
|
||||
$ helm install my-release bitnami/pytorch
|
||||
```
|
||||
|
||||
These commands deploy PyTorch on the Kubernetes cluster in the default configuration. The [Parameters](#parameters) section lists the parameters that can be configured.
|
||||
@@ -113,7 +113,7 @@ The following table lists the configurable parameters of the MinIO chart and the
|
||||
Specify each parameter using the `--set key=value[,key=value]` argument to `helm install`. For example,
|
||||
|
||||
```console
|
||||
$ helm install --name my-release \
|
||||
$ helm install my-release \
|
||||
--set mode=distributed \
|
||||
--set worldSize=4 \
|
||||
bitnami/pytorch
|
||||
@@ -124,7 +124,7 @@ The above command create 4 pods for PyTorch: one master and three workers.
|
||||
Alternatively, a YAML file that specifies the values for the parameters can be provided while installing the chart. For example,
|
||||
|
||||
```console
|
||||
$ helm install --name my-release -f values.yaml bitnami/pytorch
|
||||
$ helm install my-release -f values.yaml bitnami/pytorch
|
||||
```
|
||||
|
||||
> **Tip**: You can use the default [values.yaml](values.yaml)
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
apiVersion: v1
|
||||
version: 1.2.6
|
||||
version: 1.2.7
|
||||
appVersion: 2.4.5
|
||||
description: Spark is a fast and general-purpose cluster computing system.
|
||||
name: spark
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
|
||||
```console
|
||||
$ helm repo add bitnami https://charts.bitnami.com/bitnami
|
||||
$ helm install bitnami/spark
|
||||
$ helm install my-release bitnami/spark
|
||||
```
|
||||
|
||||
## Introduction
|
||||
@@ -26,7 +26,7 @@ To install the chart with the release name `my-release`:
|
||||
|
||||
```console
|
||||
$ helm repo add bitnami https://charts.bitnami.com/bitnami
|
||||
$ helm install --name my-release bitnami/spark
|
||||
$ helm install my-release bitnami/spark
|
||||
```
|
||||
|
||||
These commands deploy Spark on the Kubernetes cluster in the default configuration. The [Parameters](#parameters) section lists the parameters that can be configured during installation.
|
||||
@@ -148,7 +148,7 @@ The following tables lists the configurable parameters of the spark chart and th
|
||||
Specify each parameter using the `--set key=value[,key=value]` argument to `helm install`. For example,
|
||||
|
||||
```console
|
||||
$ helm install --name my-release \
|
||||
$ helm install my-release \
|
||||
--set master.webPort=8081 bitnami/spark
|
||||
```
|
||||
|
||||
@@ -157,7 +157,7 @@ The above command sets the spark master web port to `8081`.
|
||||
Alternatively, a YAML file that specifies the values for the parameters can be provided while installing the chart. For example,
|
||||
|
||||
```console
|
||||
$ helm install --name my-release -f values.yaml bitnami/spark
|
||||
$ helm install my-release -f values.yaml bitnami/spark
|
||||
```
|
||||
|
||||
> **Tip**: You can use the default [values.yaml](values.yaml)
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
apiVersion: v1
|
||||
name: tensorflow-resnet
|
||||
version: 2.0.3
|
||||
version: 2.0.4
|
||||
appVersion: 2.1.0
|
||||
description: Open-source software library serving the ResNet machine learning model.
|
||||
keywords:
|
||||
|
||||
@@ -6,7 +6,7 @@ TensorFlow Serving is an open-source software library for serving machine learni
|
||||
|
||||
```console
|
||||
$ helm repo add bitnami https://charts.bitnami.com/bitnami
|
||||
$ helm install bitnami/tensorflow-resnet
|
||||
$ helm install my-release bitnami/tensorflow-resnet
|
||||
```
|
||||
|
||||
## Introduction
|
||||
@@ -36,7 +36,7 @@ To install the chart with the release name `my-release`:
|
||||
|
||||
```console
|
||||
$ helm repo add bitnami https://charts.bitnami.com/bitnami
|
||||
$ helm install --name my-release bitnami/tensorflow-resnet
|
||||
$ helm install my-release bitnami/tensorflow-resnet
|
||||
```
|
||||
|
||||
These commands deploy Tensorflow Serving ResNet model on the Kubernetes cluster in the default configuration. The [Parameters](#parameters) section lists the parameters that can be configured during installation.
|
||||
@@ -111,13 +111,13 @@ The following tables lists the configurable parameters of the TensorFlow ResNet
|
||||
Specify each parameter using the `--set key=value[,key=value]` argument to `helm install`. For example,
|
||||
|
||||
```console
|
||||
$ helm install --name my-release bitnami/tensorflow-resnet --set imagePullPolicy=Always
|
||||
$ helm install my-release bitnami/tensorflow-resnet --set imagePullPolicy=Always
|
||||
```
|
||||
|
||||
Alternatively, a YAML file that specifies the values for the above parameters can be provided while installing the chart. For example,
|
||||
|
||||
```console
|
||||
$ helm install --name my-release -f values.yaml bitnami/tensorflow-resnet
|
||||
$ helm install my-release -f values.yaml bitnami/tensorflow-resnet
|
||||
```
|
||||
|
||||
> **Tip**: You can use the default [values.yaml](values.yaml)
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
apiVersion: v1
|
||||
name: tomcat
|
||||
version: 6.2.0
|
||||
version: 6.2.1
|
||||
appVersion: 9.0.30
|
||||
description: Chart for Apache Tomcat
|
||||
keywords:
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
|
||||
```console
|
||||
$ helm repo add bitnami https://charts.bitnami.com/bitnami
|
||||
$ helm install bitnami/tomcat
|
||||
$ helm install my-release bitnami/tomcat
|
||||
```
|
||||
|
||||
## Introduction
|
||||
@@ -28,7 +28,7 @@ To install the chart with the release name `my-release`:
|
||||
|
||||
```console
|
||||
$ helm repo add bitnami https://charts.bitnami.com/bitnami
|
||||
$ helm install --name my-release bitnami/tomcat
|
||||
$ helm install my-release bitnami/tomcat
|
||||
```
|
||||
|
||||
These commands deploy Tomcat on the Kubernetes cluster in the default configuration. The [Parameters](#parameters) section lists the parameters that can be configured during installation.
|
||||
@@ -103,7 +103,7 @@ The above parameters map to the env variables defined in [bitnami/tomcat](http:/
|
||||
Specify each parameter using the `--set key=value[,key=value]` argument to `helm install`. For example,
|
||||
|
||||
```console
|
||||
$ helm install --name my-release \
|
||||
$ helm install my-release \
|
||||
--set tomcatUser=manager,tomcatPassword=password bitnami/tomcat
|
||||
```
|
||||
|
||||
@@ -112,7 +112,7 @@ The above command sets the Tomcat management username and password to `manager`
|
||||
Alternatively, a YAML file that specifies the values for the parameters can be provided while installing the chart. For example,
|
||||
|
||||
```console
|
||||
$ helm install --name my-release -f values.yaml bitnami/tomcat
|
||||
$ helm install my-release -f values.yaml bitnami/tomcat
|
||||
```
|
||||
|
||||
> **Tip**: You can use the default [values.yaml](values.yaml)
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
apiVersion: v1
|
||||
name: wildfly
|
||||
version: 3.5.0
|
||||
version: 3.5.1
|
||||
appVersion: 18.0.1
|
||||
description: Chart for Wildfly
|
||||
keywords:
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
|
||||
```console
|
||||
$ helm repo add bitnami https://charts.bitnami.com/bitnami
|
||||
$ helm install bitnami/wildfly
|
||||
$ helm install my-release bitnami/wildfly
|
||||
```
|
||||
|
||||
## Introduction
|
||||
@@ -28,7 +28,7 @@ To install the chart with the release name `my-release`:
|
||||
|
||||
```console
|
||||
$ helm repo add bitnami https://charts.bitnami.com/bitnami
|
||||
$ helm install --name my-release bitnami/wildfly
|
||||
$ helm install my-release bitnami/wildfly
|
||||
```
|
||||
|
||||
These commands deploy WildFly on the Kubernetes cluster in the default configuration. The [Parameters](#parameters) section lists the parameters that can be configured during installation.
|
||||
@@ -96,7 +96,7 @@ The above parameters map to the env variables defined in [bitnami/wildfly](http:
|
||||
Specify each parameter using the `--set key=value[,key=value]` argument to `helm install`. For example,
|
||||
|
||||
```console
|
||||
$ helm install --name my-release \
|
||||
$ helm install my-release \
|
||||
--set wildflyUser=manager,wildflyPassword=password \
|
||||
bitnami/wildfly
|
||||
```
|
||||
@@ -106,7 +106,7 @@ The above command sets the WildFly management username and password to `manager`
|
||||
Alternatively, a YAML file that specifies the values for the parameters can be provided while installing the chart. For example,
|
||||
|
||||
```console
|
||||
$ helm install --name my-release -f values.yaml bitnami/wildfly
|
||||
$ helm install my-release -f values.yaml bitnami/wildfly
|
||||
```
|
||||
|
||||
> **Tip**: You can use the default [values.yaml](values.yaml)
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
|
||||
```console
|
||||
$ helm repo add bitnami https://charts.bitnami.com/bitnami
|
||||
$ helm install bitnami/zookeeper
|
||||
$ helm install my-release bitnami/zookeeper
|
||||
```
|
||||
|
||||
## Introduction
|
||||
@@ -27,7 +27,7 @@ To install the chart with the release name `my-release`:
|
||||
|
||||
```console
|
||||
$ helm repo add bitnami https://charts.bitnami.com/bitnami
|
||||
$ helm install --name my-release bitnami/zookeeper
|
||||
$ helm install my-release bitnami/zookeeper
|
||||
```
|
||||
|
||||
These commands deploy ZooKeeper on the Kubernetes cluster in the default configuration. The [Parameters](#parameters) section lists the parameters that can be configured during installation.
|
||||
@@ -143,7 +143,7 @@ The following tables lists the configurable parameters of the ZooKeeper chart an
|
||||
Specify each parameter using the `--set key=value[,key=value]` argument to `helm install`. For example,
|
||||
|
||||
```console
|
||||
$ helm install --name my-release \
|
||||
$ helm install my-release \
|
||||
--set auth.clientUser=newUser \
|
||||
bitnami/zookeeper
|
||||
```
|
||||
@@ -153,7 +153,7 @@ The above command sets the ZooKeeper user to `newUser`.
|
||||
Alternatively, a YAML file that specifies the values for the parameters can be provided while installing the chart. For example,
|
||||
|
||||
```console
|
||||
$ helm install --name my-release -f values.yaml bitnami/zookeeper
|
||||
$ helm install my-release -f values.yaml bitnami/zookeeper
|
||||
```
|
||||
|
||||
> **Tip**: You can use the default [values.yaml](values.yaml)
|
||||
|
||||
Reference in New Issue
Block a user