You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@apisix.apache.org by GitBox <gi...@apache.org> on 2021/05/13 02:28:31 UTC

[GitHub] [apisix-helm-chart] tokers commented on a change in pull request #74: feat: restructure the apisix-helm-chart repo

tokers commented on a change in pull request #74:
URL: https://github.com/apache/apisix-helm-chart/pull/74#discussion_r631520080



##########
File path: charts/apisix/README.md
##########
@@ -0,0 +1,122 @@
+## Apache APISIX for Kubernetes
+
+Apache APISIX is a dynamic, real-time, high-performance API gateway.
+
+APISIX provides rich traffic management features such as load balancing, dynamic upstream, canary release, circuit breaking, authentication, observability, and more.
+
+You can use Apache APISIX to handle traditional north-south traffic, as well as east-west traffic between services. It can also be used as a [k8s ingress controller](https://github.com/apache/apisix-ingress-controller/).
+
+This chart bootstraps all the components needed to run Apache APISIX on a Kubernetes Cluster using [Helm](https://helm.sh).
+
+
+## TL;DR
+
+```sh
+➜ helm repo add apisix https://charts.apiseven.com
+➜ helm repo update

Review comment:
       What about adding a new step like:
   
   ```sh
   helm search repo apisix
   NAME                                    CHART VERSION   APP VERSION     DESCRIPTION
   apisix/apisix                           0.3.2           2.5.0           A Helm chart for Apache APISIX
   apisix/apisix-dashboard                 0.1.2           2.5.0           A Helm chart for Apache APISIX Dashboard
   apisix/apisix-ingress-controller        0.4.0           0.5.0           Apache APISIX Ingress Controller for Kubernetes
   ```
   
   So that people can get the details about this repo.

##########
File path: charts/apisix/README.md
##########
@@ -0,0 +1,122 @@
+## Apache APISIX for Kubernetes
+
+Apache APISIX is a dynamic, real-time, high-performance API gateway.
+
+APISIX provides rich traffic management features such as load balancing, dynamic upstream, canary release, circuit breaking, authentication, observability, and more.
+
+You can use Apache APISIX to handle traditional north-south traffic, as well as east-west traffic between services. It can also be used as a [k8s ingress controller](https://github.com/apache/apisix-ingress-controller/).
+
+This chart bootstraps all the components needed to run Apache APISIX on a Kubernetes Cluster using [Helm](https://helm.sh).
+
+
+## TL;DR
+
+```sh
+➜ helm repo add apisix https://charts.apiseven.com
+➜ helm repo update
+
+➜ helm install apisix/apisix --generate-name
+```
+
+## Prerequisites
+
+* Kubernetes v1.14+
+* Helm v3+
+
+
+## Install
+
+To install the chart with the release name `my-apisix`:
+
+```sh
+➜ helm repo add apisix https://charts.apiseven.com
+➜ helm repo update
+
+➜ helm install my-apisix apisix/apisix
+```
+
+## Uninstall
+
+ To uninstall/delete a Helm release `my-apisix`:
+
+ ```sh
+➜ helm delete my-apisix
+ ```
+
+The command removes all the Kubernetes components associated with the chart and deletes the release.
+
+## Parameters
+
+The following tables lists the configurable parameters of the apisix chart and their default values per section/component:
+
+### Global parameters
+
+| Parameter                 | Description                                     | Default                                                 |
+|---------------------------|-------------------------------------------------|---------------------------------------------------------|
+| `global.imagePullSecrets` | Global Docker registry secret names as an array | `[]` (does not add image pull secrets to deployed pods) |
+
+
+### apisix parameters
+
+| Parameter                                | Description                                         | Default                                                 |
+|------------------------------------------|-----------------------------------------------------|---------------------------------------------------------|
+| `apisix.enabled`                         | Enable or disable Apache APISIX itself              | `true`                                                  |
+| `apisix.enabled`                         | Enable or disable Apache APISIX itself              | `true`                                                  |

Review comment:
       Duplicated?

##########
File path: charts/apisix/README.md
##########
@@ -0,0 +1,122 @@
+## Apache APISIX for Kubernetes
+
+Apache APISIX is a dynamic, real-time, high-performance API gateway.
+
+APISIX provides rich traffic management features such as load balancing, dynamic upstream, canary release, circuit breaking, authentication, observability, and more.
+
+You can use Apache APISIX to handle traditional north-south traffic, as well as east-west traffic between services. It can also be used as a [k8s ingress controller](https://github.com/apache/apisix-ingress-controller/).
+
+This chart bootstraps all the components needed to run Apache APISIX on a Kubernetes Cluster using [Helm](https://helm.sh).
+
+
+## TL;DR
+
+```sh
+➜ helm repo add apisix https://charts.apiseven.com
+➜ helm repo update
+
+➜ helm install apisix/apisix --generate-name
+```
+
+## Prerequisites
+
+* Kubernetes v1.14+
+* Helm v3+
+
+
+## Install
+
+To install the chart with the release name `my-apisix`:
+
+```sh
+➜ helm repo add apisix https://charts.apiseven.com
+➜ helm repo update
+
+➜ helm install my-apisix apisix/apisix
+```
+
+## Uninstall
+
+ To uninstall/delete a Helm release `my-apisix`:
+
+ ```sh
+➜ helm delete my-apisix
+ ```
+
+The command removes all the Kubernetes components associated with the chart and deletes the release.
+
+## Parameters
+
+The following tables lists the configurable parameters of the apisix chart and their default values per section/component:
+
+### Global parameters
+
+| Parameter                 | Description                                     | Default                                                 |
+|---------------------------|-------------------------------------------------|---------------------------------------------------------|
+| `global.imagePullSecrets` | Global Docker registry secret names as an array | `[]` (does not add image pull secrets to deployed pods) |
+
+
+### apisix parameters
+
+| Parameter                                | Description                                         | Default                                                 |
+|------------------------------------------|-----------------------------------------------------|---------------------------------------------------------|
+| `apisix.enabled`                         | Enable or disable Apache APISIX itself              | `true`                                                  |
+| `apisix.enabled`                         | Enable or disable Apache APISIX itself              | `true`                                                  |
+| `apisix.image.repository`                | Apache APISIX image repository                      | `apache/apisix`                                         |
+| `apisix.image.tag`                       | Apache APISIX image tag                             | `{TAG_NAME}` (the latest Apache APISIX image tag)       |
+| `apisix.image.pullPolicy`                | Apache APISIX image pull policy                     | `IfNotPresent`                                          |
+| `apisix.replicaCount`                    | Apache APISIX deploy replica count                  | `1`                                                     |
+| `apisix.podAnnotations`                  | Annotations to add to each pod                      | `{}`                                                    |
+| `apisix.podSecurityContext`              | Set the securityContext for Apache APISIX pods      | `{}`                                                    |
+| `apisix.securityContext`                 | Set the securityContext for Apache APISIX container | `{}`                                                    |
+| `apisix.resources`                       | Set pod resource requests & limits                  | `{}`                                                    |
+| `apisix.nodeSelector`                    | Node labels for Apache APISIX pod assignment        | `{}`                                                    |
+| `apisix.tolerations`                     | List of node taints to tolerate                     | `{}`                                                    |
+| `apisix.affinity`                        | Set affinity for Apache APISIX deploy               | `{}`                                                    |
+| `apisix.podAntiAffinity.enabled`         | Enable or disable podAntiAffinity                   | `{}`                                                    |

Review comment:
       `enabled` is a boolean value.

##########
File path: charts/apisix/README.md
##########
@@ -0,0 +1,122 @@
+## Apache APISIX for Kubernetes
+
+Apache APISIX is a dynamic, real-time, high-performance API gateway.
+
+APISIX provides rich traffic management features such as load balancing, dynamic upstream, canary release, circuit breaking, authentication, observability, and more.
+
+You can use Apache APISIX to handle traditional north-south traffic, as well as east-west traffic between services. It can also be used as a [k8s ingress controller](https://github.com/apache/apisix-ingress-controller/).
+
+This chart bootstraps all the components needed to run Apache APISIX on a Kubernetes Cluster using [Helm](https://helm.sh).
+
+
+## TL;DR
+
+```sh
+➜ helm repo add apisix https://charts.apiseven.com
+➜ helm repo update
+
+➜ helm install apisix/apisix --generate-name
+```
+
+## Prerequisites
+
+* Kubernetes v1.14+
+* Helm v3+
+
+
+## Install
+
+To install the chart with the release name `my-apisix`:
+
+```sh
+➜ helm repo add apisix https://charts.apiseven.com
+➜ helm repo update
+
+➜ helm install my-apisix apisix/apisix
+```
+
+## Uninstall
+
+ To uninstall/delete a Helm release `my-apisix`:
+
+ ```sh
+➜ helm delete my-apisix
+ ```
+
+The command removes all the Kubernetes components associated with the chart and deletes the release.
+
+## Parameters
+
+The following tables lists the configurable parameters of the apisix chart and their default values per section/component:
+
+### Global parameters
+
+| Parameter                 | Description                                     | Default                                                 |
+|---------------------------|-------------------------------------------------|---------------------------------------------------------|
+| `global.imagePullSecrets` | Global Docker registry secret names as an array | `[]` (does not add image pull secrets to deployed pods) |
+
+
+### apisix parameters
+
+| Parameter                                | Description                                         | Default                                                 |
+|------------------------------------------|-----------------------------------------------------|---------------------------------------------------------|
+| `apisix.enabled`                         | Enable or disable Apache APISIX itself              | `true`                                                  |
+| `apisix.enabled`                         | Enable or disable Apache APISIX itself              | `true`                                                  |
+| `apisix.image.repository`                | Apache APISIX image repository                      | `apache/apisix`                                         |
+| `apisix.image.tag`                       | Apache APISIX image tag                             | `{TAG_NAME}` (the latest Apache APISIX image tag)       |
+| `apisix.image.pullPolicy`                | Apache APISIX image pull policy                     | `IfNotPresent`                                          |
+| `apisix.replicaCount`                    | Apache APISIX deploy replica count                  | `1`                                                     |
+| `apisix.podAnnotations`                  | Annotations to add to each pod                      | `{}`                                                    |
+| `apisix.podSecurityContext`              | Set the securityContext for Apache APISIX pods      | `{}`                                                    |
+| `apisix.securityContext`                 | Set the securityContext for Apache APISIX container | `{}`                                                    |
+| `apisix.resources`                       | Set pod resource requests & limits                  | `{}`                                                    |
+| `apisix.nodeSelector`                    | Node labels for Apache APISIX pod assignment        | `{}`                                                    |
+| `apisix.tolerations`                     | List of node taints to tolerate                     | `{}`                                                    |
+| `apisix.affinity`                        | Set affinity for Apache APISIX deploy               | `{}`                                                    |
+| `apisix.podAntiAffinity.enabled`         | Enable or disable podAntiAffinity                   | `{}`                                                    |
+
+
+### gateway parameters
+
+Apache APISIX service parameters, this determines how users can access itself.
+
+| Parameter                  | Description                                                                      | Default                                                 |
+|----------------------------|----------------------------------------------------------------------------------|---------------------------------------------------------|
+| `gateway.type`             | Apache APISIX service type for user access itself                                | `NodePort`                                              |
+| `gateway.http`             | Apache APISIX service settings for http                                          |                                                         |
+| `gateway.tls`              | Apache APISIX service settings for tls                                           |                                                         |
+| `gateway.stream`           | Apache APISIX service settings for stream                                        |                                                         |
+| `gateway.ingress`          | Using ingress access Apache APISIX service                                       |                                                         |
+
+
+### admin parameters
+
+| Parameter                  | Description                                                                      | Default                                                 |
+|----------------------------|----------------------------------------------------------------------------------|---------------------------------------------------------|
+| `admin.enabled`            | Enable or disable Apache APISIX admin API                                        | `true`                                                  |
+| `admin.port`               | which port to use for Apache APISIX admin API                                    | `9180`                                                  |
+| `admin.servicePort`        | Service port to use for Apache APISIX admin API                                  | `9180`                                                  |
+| `admin.type`               | Apache APISIX admin API service type                                             | `ClusterIP`                                             |
+| `admin.externalIPs`        | IPs for which nodes in the cluster will also accept traffic for the servic       | `[]`                                                    |
+| `admin.cors`               | Apache APISIX admin API support CORS response headers                            | `true`                                                  |
+| `admin.credentials.admin`  | Apache APISIX admin API admin role credentials                                   | `edd1c9f034335f136f87ad84b625c8f1`                      |
+| `admin.credentials.viewer` | Apache APISIX admin API viewer role credentials                                  | `4054f7cf07e344346cd3f287985e76a2`                      |
+| `admin.allow.ipList`       | the IP range allowed to Apache APISIX admin API                                  | `true`                                                  |
+
+### plugins and stream_plugins parameters 
+
+Default enabled plugins.

Review comment:
       ```suggestion
   Default enabled plugins. See [configmap template](charts/apisix/templates/configmap.yaml) for details.
   ```




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org