diff --git a/README.md b/README.md index c895e139..fb175ba2 100644 --- a/README.md +++ b/README.md @@ -44,4 +44,22 @@ Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. \ No newline at end of file +limitations under the License. + +## Chart Versions + +The versions of Helm charts available in this repository are as follows: + +| Formsflow Version | Chart Name | Chart Version | +|---------------------------|---------------------------|---------------------------| +| 7.0.0 | forms-flow-ai | v8.0.0 | +| 6.0.2 | forms-flow-ai | v7.1.2 | +| 6.0.1 | forms-flow-ai | v7.1.1 | +| 6.0.0 | forms-flow-ai | v6.0.0 | +| 5.3.1 | forms-flow-ai | v5.3.1 | +| 5.3.0 | forms-flow-ai | v5.3.0 | +| 5.2.2 | forms-flow-ai | v5.2.2 | +| 5.2.1 | forms-flow-ai | v5.2.1 | +| 5.2.0 | forms-flow-ai | v5.2.0 | +| 5.1.1 | forms-flow-ai | v5.1.1 | +| 5.1.0 | forms-flow-ai | v5.1.0 | \ No newline at end of file diff --git a/charts/forms-flow-analytics/README.md b/charts/forms-flow-analytics/README.md index 0c3c8913..491f7e08 100644 --- a/charts/forms-flow-analytics/README.md +++ b/charts/forms-flow-analytics/README.md @@ -1,4 +1,4 @@ -# Formsflow.ai Analytics Engine +# Formsflow.ai Analytics **formsflow.ai** leverages [Redash](https://github.com/getredash/redash) to build interactive dashboards and gain insights. @@ -19,10 +19,10 @@ helm install forms-flow-analytics forms-flow-analytics Specify each parameter using the `--set key=value[,key=value]` argument to `helm install`. For example, ```console -helm install forms-flow-analytics forms-flow-analytics --set ingress.ingressClassName=INGRESS_CLASS --set ingress.hostname=HOSTNAME +helm upgrade --install forms-flow-analytics forms-flow-analytics --set ingress.ingressClassName=INGRESS_CLASS --set ingress.hosts[0].host=HOSTNAME --set ingress.tls[0].secretName="SECRETNAME" --set ingress.tls[0].hosts[0]="HOSTNAME" --set ingress.hosts[0].paths[0]="/" -n NAMESPACE ``` -> Note: You need to substitute the placeholders `INGRESS_CLASS`, `HOSTNAME` with a reference to your Helm chart registry and repository. For example, in the case of Formsflow, you need to use `INGRESS_CLASS=nginx` +> Note: You need to substitute the placeholders `INGRESS_CLASS`, `HOSTNAME` and `SECRETNAME` with a reference to your Helm chart registry and repository. For example, in the case of Formsflow, you need to use `INGRESS_CLASS=nginx` These commands deploy Forms-flow-analytics on the Kubernetes cluster @@ -32,16 +32,50 @@ These commands deploy Forms-flow-analytics on the Kubernetes cluster Forms-flow-analytics charts allow setting resource requests and limits for all containers inside the chart deployment. These are inside the `resources` value (check parameter table). Setting requests is essential for production workloads and these should be adapted to your specific use case. +## Server + ```yaml -resources: - limits: - cpu: 200m - memory: 2Gi - requests: - cpu: 180m - memory: 1Gi + resources: + limits: + cpu: 1500m + memory: 2Gi + requests: + cpu: 900m + memory: 1Gi ``` +## Worker +```yaml + resources: + limits: + cpu: 300m + memory: 2Gi + requests: + cpu: 200m + memory: 1Gi +``` +## Scheduler + +```yaml + resources: + limits: + cpu: 300m + memory: 2Gi + requests: + cpu: 200m + memory: 1Gi +``` +## Migrations + +```yaml + resources: + limits: + cpu: 300m + memory: 2Gi + requests: + cpu: 200m + memory: 1Gi +``` ## Parameters