Update README.md
This commit is contained in:
parent
1a588f0973
commit
27d9aded23
|
@ -1,6 +1,6 @@
|
||||||
# Budibase
|
# Budibase
|
||||||
|
|
||||||
[Budibase](https://posthog.com/) Budibase is an open source low-code platform, helping thousands of teams build apps for their workplace in minutes.
|
[Budibase](https://budibase.com/) Budibase is an open source low-code platform, helping thousands of teams build apps for their workplace in minutes.
|
||||||
|
|
||||||
## TL;DR;
|
## TL;DR;
|
||||||
```console
|
```console
|
||||||
|
@ -12,8 +12,6 @@ $ helm install budibase .
|
||||||
|
|
||||||
This chart bootstraps a [Budibase](https://budibase.com/) deployment on a [Kubernetes](http://kubernetes.io) cluster using the [Helm](https://helm.sh) package manager.
|
This chart bootstraps a [Budibase](https://budibase.com/) deployment on a [Kubernetes](http://kubernetes.io) cluster using the [Helm](https://helm.sh) package manager.
|
||||||
|
|
||||||
<!-- It also optionally packages [PostgreSQL](https://github.com/kubernetes/charts/tree/master/stable/postgresql) and [Redis](https://github.com/kubernetes/charts/tree/master/stable/redis) which are required for PostHog. -->
|
|
||||||
|
|
||||||
## Prerequisites
|
## Prerequisites
|
||||||
|
|
||||||
- helm v3 or above
|
- helm v3 or above
|
||||||
|
@ -28,7 +26,7 @@ To install the chart with the release name `budi-release`:
|
||||||
$ helm install budi-release .
|
$ helm install budi-release .
|
||||||
```
|
```
|
||||||
|
|
||||||
The command deploys PostHog on the Kubernetes cluster in the default configuration. The [configuration](#configuration) section lists the parameters that can be configured during installation.
|
The command deploys Budibase on the Kubernetes cluster in the default configuration. The [configuration](#configuration) section lists the parameters that can be configured during installation.
|
||||||
|
|
||||||
> **Tip**: List all releases using `helm list`
|
> **Tip**: List all releases using `helm list`
|
||||||
|
|
||||||
|
@ -39,144 +37,3 @@ To uninstall/delete the `my-release` deployment:
|
||||||
```console
|
```console
|
||||||
$ helm delete my-release
|
$ helm delete my-release
|
||||||
```
|
```
|
||||||
|
|
||||||
The command removes all the Kubernetes components associated with the chart and deletes the release.
|
|
||||||
|
|
||||||
> **Warning**: Jobs are not deleted automatically. They need to be manually deleted
|
|
||||||
|
|
||||||
```console
|
|
||||||
$ kubectl delete job/posthog-migrate
|
|
||||||
```
|
|
||||||
|
|
||||||
## Configuration
|
|
||||||
|
|
||||||
The following table lists the configurable parameters of the PostHog chart and their default values.
|
|
||||||
|
|
||||||
Dependent charts can also have values overwritten. Preface values with postgresql.*
|
|
||||||
|
|
||||||
Parameter | Description | Default
|
|
||||||
:--------------------------------------------------- | :--------------------------------------------------------------------------------------------------------- | :---------------------------------------------------
|
|
||||||
`image.repository` | PostHog image | `posthog/posthog`
|
|
||||||
`image.tag` | PostHog image tag | `latest`
|
|
||||||
`image.pullPolicy` | Image pull policy | `Always`
|
|
||||||
`image.imagePullSecrets` | Specify image pull secrets | `[]`
|
|
||||||
`posthogSecret` | Specify SECRET_KEY. If isn't specified it will be generated automatically. | `nil`
|
|
||||||
`disableSecureSslRedirect` | Specify DISABLE_SECURE_SSL_REDIRECT. | `1`
|
|
||||||
`useSecureCookies` | Specify SECURE_COOKIES. | `0`
|
|
||||||
`web.podAnnotations` | Web pod annotations | `{}`
|
|
||||||
`web.podLabels` | Web pod extra labels | `{}`
|
|
||||||
`web.replicacount` | Amount of web pods to run | `1`
|
|
||||||
`web.resources.limits` | Web resource limits | `{cpu: 500m, memory: 500Mi}`
|
|
||||||
`web.resources.requests` | Web resource requests | `{cpu: 300m, memory: 300Mi}`
|
|
||||||
`web.env` | Additional web environment variables | `[]`
|
|
||||||
`web.nodeSelector` | Node labels for web pod assignment | `{}`
|
|
||||||
`web.affinity` | Affinity settings for web pod assignment | `{}`
|
|
||||||
`web.schedulerName` | Name of an alternate scheduler for web pod | `nil`
|
|
||||||
`web.tolerations` | Toleration labels for web pod assignment | `[]`
|
|
||||||
`web.livenessProbe.failureThreshold` | The liveness probe failure threshold | `5`
|
|
||||||
`web.livenessProbe.initialDelaySeconds` | The liveness probe initial delay seconds | `50`
|
|
||||||
`web.livenessProbe.periodSeconds` | The liveness probe period seconds | `10`
|
|
||||||
`web.livenessProbe.successThreshold` | The liveness probe success threshold | `1`
|
|
||||||
`web.livenessProbe.timeoutSeconds` | The liveness probe timeout seconds | `2`
|
|
||||||
`web.readinessProbe.failureThreshold` | The readiness probe failure threshold | `10`
|
|
||||||
`web.readinessProbe.initialDelaySeconds` | The readiness probe initial delay seconds | `50`
|
|
||||||
`web.readinessProbe.periodSeconds` | The readiness probe period seconds | `10`
|
|
||||||
`web.readinessProbe.successThreshold` | The readiness probe success threshold | `1`
|
|
||||||
`web.readinessProbe.timeoutSeconds` | The readiness probe timeout seconds | `2`
|
|
||||||
`web.priorityClassName` | The priorityClassName on web deployment | `nil`
|
|
||||||
`web.hpa.enabled` | Boolean to create a HorizontalPodAutoscaler for web deployment | `false`
|
|
||||||
`web.hpa.cputhreshold` | CPU threshold percent for the web HorizontalPodAutoscaler | `60`
|
|
||||||
`web.hpa.minpods` | Min pods for the web HorizontalPodAutoscaler | `1`
|
|
||||||
`web.hpa.maxpods` | Max pods for the web HorizontalPodAutoscaler | `10`
|
|
||||||
`email.from_email` | Emails are sent are from | `tim@posthog.com`
|
|
||||||
`email.host` | SMTP host for sending email | `smtp`
|
|
||||||
`email.port` | SMTP port | `578`
|
|
||||||
`email.user` | SMTP user | `nil`
|
|
||||||
`email.password` | SMTP password | `nil`
|
|
||||||
`email.use_tls` | SMTP TLS for security | `false`
|
|
||||||
`email.use_ssl` | SMTP SSL for security | `false`
|
|
||||||
`email.existingSecret` | SMTP password from an existing secret | `nil`
|
|
||||||
`email.existingSecretKey` | Key to get from the `email.existingSecret` secret | `smtp-password`
|
|
||||||
`service.type` | Kubernetes service type | `LoadBalancer`
|
|
||||||
`service.name` | Kubernetes service name | `posthog`
|
|
||||||
`service.externalPort` | Kubernetes external service port | `8000`
|
|
||||||
`service.internalPort` | Kubernetes internal service port | `8000`
|
|
||||||
`service.annotations` | Service annotations | `{}`
|
|
||||||
`service.nodePort` | Kubernetes service NodePort port | Randomly chosen by Kubernetes
|
|
||||||
`service.loadBalancerSourceRanges` | Allow list for the load balancer | `nil`
|
|
||||||
`ingress.enabled` | Enable ingress controller resource | `false`
|
|
||||||
`ingress.annotations` | Ingress annotations | `{}`
|
|
||||||
`ingress.hostname` | URL to address your PostHog installation | `posthog.local`
|
|
||||||
`ingress.path` | path to address your PostHog installation | `/`
|
|
||||||
`ingress.tls` | Ingress TLS configuration | `[]`
|
|
||||||
`postgresql.enabled` | Deploy postgres server (see below) | `true`
|
|
||||||
`postgresql.postgresqlDatabase` | Postgres database name | `posthog`
|
|
||||||
`postgresql.postgresqlUsername` | Postgres username | `postgres`
|
|
||||||
`postgresql.postgresqlHost` | External postgres host | `nil`
|
|
||||||
`postgresql.postgresqlPassword` | External/Internal postgres password | `postgres`
|
|
||||||
`postgresql.postgresqlPort` | External postgres port | `5432`
|
|
||||||
`postgresql.existingSecret` | Name of existing secret to use for the PostgreSQL password | `nil`
|
|
||||||
`postgresql.existingSecretKey` | Key to get from the `postgresql.existingSecret` secret | `postgresql-password` | `nil`
|
|
||||||
`redis.enabled` | Deploy redis server (see below) | `true`
|
|
||||||
`redis.host` | External redis host | `nil`
|
|
||||||
`redis.password` | External redis password | `nil`
|
|
||||||
`redis.port` | External redis port | `6379`
|
|
||||||
`redis.existingSecret` | Name of existing secret to use for the Redis password | `nil`
|
|
||||||
`redis.existingSecretKey` | Key to get from the `redis.existingSecret` secret | `redis-password`
|
|
||||||
`metrics.enabled` | Start an exporter for posthog metrics | `false`
|
|
||||||
`metrics.nodeSelector` | Node labels for metrics pod assignment | `{}`
|
|
||||||
`metrics.tolerations` | Toleration labels for metrics pod assignment | `[]`
|
|
||||||
`metrics.affinity` | Affinity settings for metrics pod | `{}`
|
|
||||||
`metrics.schedulerName` | Name of an alternate scheduler for metrics pod | `nil`
|
|
||||||
`metrics.podLabels` | Labels for metrics pod | `nil`
|
|
||||||
`metrics.resources` | Metrics resource requests/limit | `{}`
|
|
||||||
`metrics.service.type` | Kubernetes service type for metrics service | `ClusterIP`
|
|
||||||
`metrics.service.labels` | Additional labels for metrics service | `{}`
|
|
||||||
`metrics.image.repository` | Metrics exporter image repository | `prom/statsd-exporter`
|
|
||||||
`metrics.image.tag` | Metrics exporter image tag | `v0.10.5`
|
|
||||||
`metrics.image.PullPolicy` | Metrics exporter image pull policy | `IfNotPresent`
|
|
||||||
`metrics.serviceMonitor.enabled` | if `true`, creates a Prometheus Operator ServiceMonitor (also requires `metrics.enabled` to be `true`) | `false`
|
|
||||||
`metrics.serviceMonitor.namespace` | Optional namespace which Prometheus is running in | `nil`
|
|
||||||
`metrics.serviceMonitor.interval` | How frequently to scrape metrics (use by default, falling back to Prometheus' default) | `nil`
|
|
||||||
`metrics.serviceMonitor.selector` | Default to kube-prometheus install (CoreOS recommended), but should be set according to Prometheus install | `{ prometheus: kube-prometheus }`
|
|
||||||
`hooks.affinity` | Affinity settings for hooks pods | `{}`
|
|
||||||
`hooks.migrate.resources.limits` | Hook job resource limits | `{memory: 1000Mi}`
|
|
||||||
`hooks.migrate.resources.requests` | Hook job resource requests | `{memory: 1000Mi}`
|
|
||||||
`hooks.migrate.hookAnnotation` | Hook lifecycle annotation value | `post-install,post-upgrade`
|
|
||||||
`serviceAccount.name` | name of the ServiceAccount to be used by access-controlled resources | autogenerated
|
|
||||||
`serviceAccount.create` | Configures if a ServiceAccount with this name should be created | `true`
|
|
||||||
`serviceAccount.annotations` | Configures annotation for the ServiceAccount | `{}`
|
|
||||||
`env` | Additional environment variables applied to all deployments (web, worker, beat, plugin-server) | `[]`
|
|
||||||
|
|
||||||
Dependent charts can also have values overwritten. Preface values with "postgresql."
|
|
||||||
|
|
||||||
Specify each parameter using the `--set key=value[,key=value]` argument to `helm install`. For example,
|
|
||||||
|
|
||||||
```console
|
|
||||||
$ helm install \
|
|
||||||
--set persistence.enabled=false,email.host=email \
|
|
||||||
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 -f my-values.yaml my-release .
|
|
||||||
```
|
|
||||||
|
|
||||||
## PostgreSQL
|
|
||||||
|
|
||||||
By default, PostgreSQL is installed as part of the chart. To use an external PostgreSQL server set `postgresql.enabled` to `false` and then set `postgresql.postgresHost` and `postgresql.postgresqlPassword`. The other options (`postgresql.postgresqlDatabase`, `postgresql.postgresqlUsername` and `postgresql.postgresqlPort`) may also want changing from their default values.
|
|
||||||
|
|
||||||
To avoid issues when upgrading this chart, provide `postgresql.postgresqlPassword` for subsequent upgrades. This is due to an issue in the PostgreSQL chart where password will be overwritten with randomly generated passwords otherwise. See https://github.com/helm/charts/tree/master/stable/postgresql#upgrade for more detail.
|
|
||||||
|
|
||||||
## Redis
|
|
||||||
|
|
||||||
By default, Redis is installed as part of the chart. To use an external Redis server/cluster set `redis.enabled` to `false` and then set `redis.host`. If your redis cluster uses password define it with `redis.password`, otherwise just omit it. Check the table above for more configuration options.
|
|
||||||
|
|
||||||
To avoid issues when upgrading this chart, provide `redis.password` for subsequent upgrades. Otherwise the redis pods will get recreated on every update, potentially incurring some downtime.
|
|
||||||
|
|
||||||
## Ingress
|
|
||||||
|
|
||||||
This chart provides support for Ingress resource. If you have an available Ingress Controller such as Nginx or Traefik you maybe want to set `ingress.enabled` to true and choose an `ingress.hostname` for the URL. Then, you should be able to access the installation using that address.
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue