Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions charts/plugin-br-bank-transfer/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ bankTransfer:
| `bankTransfer.ingress.hosts` | Ingress host configuration | See `values.yaml` |
| `bankTransfer.ingress.tls` | TLS configuration for ingress | `[]` |
| `bankTransfer.service.type` | Kubernetes service type | `ClusterIP` |
| `bankTransfer.service.port` | Service port | `8080` |
| `bankTransfer.service.port` | Service port | `4027` |
| `bankTransfer.deploymentUpdate.type` | Deployment strategy type | `RollingUpdate` |
| `bankTransfer.podSecurityContext` | Pod security context | `{}` |
| `bankTransfer.securityContext` | Security context for the container | See `values.yaml` |
Expand Down Expand Up @@ -161,7 +161,7 @@ Key environment variables configured via `bankTransfer.configmap`:
| --- | --- | --- |
| `ENV_NAME` | Environment name | `production` |
| `LOG_LEVEL` | Log level | `info` |
| `SERVER_ADDRESS` | Server listen address | `:8080` |
| `SERVER_ADDRESS` | Server listen address | `:4027` |
| `POSTGRES_HOST` | PostgreSQL host | Dynamic based on release |
| `REDIS_HOST` | Redis/Valkey host | Dynamic based on release |
| `PLUGIN_AUTH_ENABLED` | Enable authentication | `true` |
Expand Down
2 changes: 1 addition & 1 deletion charts/plugin-br-bank-transfer/templates/configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ data:
# Application Settings
ENV_NAME: {{ .Values.bankTransfer.configmap.ENV_NAME | default "production" | quote }}
LOG_LEVEL: {{ .Values.bankTransfer.configmap.LOG_LEVEL | default "info" | quote }}
SERVER_ADDRESS: {{ .Values.bankTransfer.configmap.SERVER_ADDRESS | default ":8080" | quote }}
SERVER_ADDRESS: {{ .Values.bankTransfer.configmap.SERVER_ADDRESS | default ":4027" | quote }}
HTTP_BODY_LIMIT_BYTES: {{ .Values.bankTransfer.configmap.HTTP_BODY_LIMIT_BYTES | default "1048576" | quote }}

# CORS Configuration
Expand Down
2 changes: 1 addition & 1 deletion charts/plugin-br-bank-transfer/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ spec:
{{- end }}
ports:
- name: http
containerPort: 8080
containerPort: 4027
protocol: TCP
livenessProbe:
httpGet:
Expand Down
2 changes: 1 addition & 1 deletion charts/plugin-br-bank-transfer/values-template.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ bankTransfer:
# Application Settings
ENV_NAME: "" # REQUIRED - Environment name (e.g., production, staging)
LOG_LEVEL: "info"
SERVER_ADDRESS: ":8080"
SERVER_ADDRESS: ":4027"
HTTP_BODY_LIMIT_BYTES: "1048576"

# CORS Configuration
Expand Down
4 changes: 2 additions & 2 deletions charts/plugin-br-bank-transfer/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ bankTransfer:
# -- Kubernetes service type
type: ClusterIP
# -- Port for the HTTP API
port: 8080
port: 4027
annotations: {}
ingress:
# -- Enable or disable ingress
Expand Down Expand Up @@ -174,7 +174,7 @@ bankTransfer:
# Application Settings
ENV_NAME: "production"
LOG_LEVEL: "info"
SERVER_ADDRESS: ":8080"
SERVER_ADDRESS: ":4027"
HTTP_BODY_LIMIT_BYTES: "1048576"
# CORS Configuration
CORS_ALLOWED_ORIGINS: "*"
Expand Down
Loading