Skip to content

Commit

Permalink
fix: make backend big again
Browse files Browse the repository at this point in the history
  • Loading branch information
vncsna committed Apr 30, 2024
1 parent e671c10 commit d760f5e
Showing 1 changed file with 12 additions and 14 deletions.
26 changes: 12 additions & 14 deletions charts/basedosdados-api/values.yaml
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
---
# API configuration
api:
# Deployment name
name: "basedosdados-api"
name: basedosdados-api

# Deployment image
image:
name: "ghcr.io/basedosdados/api"
tag: "stable" # We use the stable tag for the API as a default
pullPolicy: "Always"
name: ghcr.io/basedosdados/api
tag: stable # We use the stable tag for the API as a default
pullPolicy: Always

# Number of replicas
replicas: 1
replicas: 2

# Specifying resources is recommended for production deployments
resources: {}
Expand All @@ -29,38 +30,35 @@ api:
env: []
# - name: "SOME_ENV"
# value: "some_value"

envFrom: []
# - secretRef:
# name: some-secret

# Django settings module
settingsModule: "bd_api.settings.remote"

settingsModule: bd_api.settings.remote
# Database configuration
database:
# Hostname of the database
host: "basedosdados-postgres"
host: basedosdados-postgres

# Port of the database
port: 5432

# Database name
name: "basedosdados"
name: basedosdados

# Username
user: "basedosdados"
user: basedosdados

# Secret containing the password (it must have a key called `password` containing the password)
passwordSecret: "basedosdados-postgres-password"

passwordSecret: basedosdados-postgres-password
# Ingress configuration
ingress:
# Enable ingress
enabled: false

# Host to be used in the ingress
host: "basedosdados-api.example.com"
host: basedosdados-api.example.com

# Ingress annotations
annotations: {}
Expand Down

0 comments on commit d760f5e

Please sign in to comment.