This Helm chart installs Plugin BR Instant Payment for Midaz, a high-performance and open-source ledger.
To install Plugin BR Instant Payment using Helm, run the following command:
$ helm install plugin-br-pix-direct-jd oci://registry-1.docker.io/lerianstudio/plugin-br-pix-direct-jd --version <> -n midaz-plugins --create-namespace
This will create a new namespace called `midaz-plugins` if it doesn't already exist and deploy the Plugin BR Instant Payment Helm chart.
After installation, you can verify that the release was successful by listing the Helm releases in the `midaz-plugins` namespace:
```console
$ helm list -n midaz-plugins
To upgrade the chart to a new version:
$ helm upgrade plugin-br-pix-direct-jd oci://registry-1.docker.io/lerianstudio/plugin-br-pix-direct-jd --version <new-version> -n midaz-plugins
To uninstall the chart:
$ helm uninstall plugin-br-pix-direct-jd -n midaz-plugins
The Plugin pix Helm Chart optionally supports different Ingress Controllers for exposing services when necessary. Below are the configurations for commonly used controllers.
To use the NGINX Ingress Controller, configure the values.yaml as follows:
pix:
ingress:
enabled: true
className: "nginx"
annotations: {}
hosts:
- host: midaz.example.com
paths:
- path: /
pathType: Prefix
tls:
- secretName: midaz-tls
hosts:
- midaz.example.com
| Parameter | Description | Default |
|---|---|---|
pix.replicaCount |
Number of replicas for the deployment | 1 |
pix.image.repository |
Repository for the container image | ghcr.io/lerianstudio/plugin-br-pix-direct-jd |
pix.image.pullPolicy |
Image pull policy | Always |
pix.image.tag |
Image tag used for deployment | "" (defaults to Chart.AppVersion) |
pix.imagePullSecrets |
Secrets for pulling images from a private registry | {} |
pix.revisionHistoryLimit |
Old ReplicaSets to retain | 10 |
pix.nameOverride |
Overrides the default generated name by Helm | "" |
pix.fullnameOverride |
Overrides the full name generated by Helm | "" |
pix.ingress.enabled |
Enable or disable ingress | false |
pix.ingress.className |
Ingress class name | "" |
pix.ingress.annotations |
Additional ingress annotations | {} |
pix.ingress.hosts |
Ingress host configuration | [{"host": "", "paths": [{"path": "/", "pathType": "Prefix"}]}] |
pix.ingress.tls |
TLS configuration for ingress | [] |
pix.service.type |
Kubernetes service type | ClusterIP |
pix.service.port |
Service port | 4011 |
pix.deploymentStrategy |
Deployment strategy | See values.yaml |
pix.podSecurityContext |
Pod security context | {} |
pix.securityContext |
Security context for the container | See values.yaml |
pix.pdb.enabled |
Enable or disable PodDisruptionBudget | true |
pix.pdb.maxUnavailable |
Maximum number of unavailable pods | 1 |
pix.pdb.minAvailable |
Minimum number of available pods | 0 |
pix.resources |
CPU and memory limits for pods | See values.yaml |
pix.autoscaling.enabled |
Enable or disable horizontal pod autoscaling | true |
pix.autoscaling.minReplicas |
Minimum number of replicas | 1 |
pix.autoscaling.maxReplicas |
Maximum number of replicas | 3 |
pix.nodeSelector |
Node selector for scheduling pods | {} |
pix.tolerations |
Tolerations for scheduling on tainted nodes | {} |
pix.affinity |
Affinity rules for pod scheduling | {} |
pix.extraEnvVars |
Extra environment variables to be added to the deployment | {} |
pix.useExistingSecrets |
Use an existing secret instead of creating a new one | false |
pix.existingSecretName |
The name of the existing secret to use | "" |
| Parameter | Description | Default |
|---|---|---|
qrcode.replicaCount |
Number of replicas for the deployment | 1 |
qrcode.image.repository |
Repository for the container image | lerianstudio/cert-provider |
qrcode.image.pullPolicy |
Image pull policy | Always |
qrcode.image.tag |
Image tag used for deployment | "" |
qrcode.imagePullSecrets |
Secrets for pulling images from a private registry | {} |
qrcode.ingress.enabled |
Enable or disable ingress | false |
qrcode.ingress.className |
Ingress class name | "" |
qrcode.ingress.annotations |
Additional ingress annotations | {} |
qrcode.ingress.hosts |
Ingress host configuration | [{"host": "", "paths": [{"path": "/", "pathType": "Prefix"}]}] |
qrcode.ingress.tls |
TLS configuration for ingress | [] |
qrcode.service.type |
Kubernetes service type | ClusterIP |
qrcode.service.port |
Service port | 4009 |
qrcode.podSecurityContext |
Pod security context | {} |
qrcode.resources |
CPU and memory limits for pods | See values.yaml |
qrcode.autoscaling.enabled |
Enable or disable horizontal pod autoscaling | true |
qrcode.autoscaling.minReplicas |
Minimum number of replicas | 1 |
qrcode.autoscaling.maxReplicas |
Maximum number of replicas | 9 |
qrcode.useExistingSecret |
Use an existing secret instead of creating a new one | false |
qrcode.existingSecretName |
The name of the existing secret to use | "" |
| Parameter | Description | Default |
|---|---|---|
job.name |
Resource base name | "plugin-br-pix-direct-jd-job" |
job.image.repository |
Repository for the container image | ghcr.io/lerianstudio/plugin-br-pix-direct-jd-job |
job.image.pullPolicy |
Image pull policy | Always |
job.image.tag |
Image tag used for deployment | "" (defaults to Chart.AppVersion) |
job.imagePullSecrets |
Secrets for pulling images from a private registry | {} |
job.podSecurityContext |
Pod security context | {} |
job.service.type |
Kubernetes service type | ClusterIP |
job.service.port |
Service port | 4012 |
job.resources |
CPU and memory limits for pods | See values.yaml |
job.configmap.JOBS_CRON |
Cron schedule for background processing | "*/1 * * * *" |
job.extraEnvVars |
Extra environment variables | {} |
job.useExistingSecret |
Use an existing secret instead of creating a new one | false |
job.existingSecretName |
The name of the existing secret to use | "cert-provider" |
| Parameter | Description | Default |
|---|---|---|
postgresql.enabled |
Enable the PostgreSQL dependency | true |
postgresql.external |
Use an external PostgreSQL instance | false |
postgresql.image.repository |
PostgreSQL image repository | bitnamisecure/postgresql |
postgresql.image.tag |
PostgreSQL image tag | latest |
postgresql.auth.enabled |
Enable authentication | true |
postgresql.auth.enablePostgresUser |
Create default postgres user | false |
postgresql.auth.username |
Application DB user | pix |
postgresql.auth.password |
Application DB password | lerian |
postgresql.auth.database |
Application DB name | pix |
IMPORTANT: The bundled PostgreSQL is not intended for production. For production, use an external/managed PostgreSQL and set
postgresql.enabled=false.
For more information, see the Lerian Studio Documentation or contact the maintainers.