Skip to content

Commit

Permalink
new secrets
Browse files Browse the repository at this point in the history
  • Loading branch information
akhileshsharma99 committed Nov 17, 2024
1 parent 9c556e9 commit 1e623fa
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 13 deletions.
1 change: 1 addition & 0 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ AWS__REGION=us-east-1
AWS__SECRET_KEY=minioadmin
LLM__KEY= # Add your OpenAI key here
PG__URL=postgresql://postgres:postgres@postgres:5432/chunkr
REDIS__URL=redis://redis:6379
RRQ__URL=http://rrq:8000
SEARCH__DENSE_VECTOR_URL=http://dense-vector:80
WORKER__GENERAL_OCR_URL=http://doctr:8000
Expand Down
35 changes: 22 additions & 13 deletions kube/secret/chunkmydocs-secret.example.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,25 @@ metadata:
namespace: chunkmydocs
type: Opaque
stringData:
AUTH__KEYCLOAK_URL: 'auth.chunkr.ai' # Change this to your Keycloak URL
AWS__ACCESS_KEY: 'accesskey'
AWS__SECRET_KEY: 'secretkey'
PG__URL: 'postgresql://postgres:password@postgres:5432/chunkr'
RRQ__URL: 'http://rrq-service.chunkmydocs.svc.cluster.local'
RRQ__API_KEY: '1234567890'
EXTRACTION__PDLA_FAST_URL: 'http://pdla-service.chunkmydocs.svc.cluster.local'
EXTRACTION__PDLA_URL: 'http://pdla-service.chunkmydocs.svc.cluster.local'
EXTRACTION__GENERAL_OCR_URL: 'http://general-ocr-service.chunkmydocs.svc.cluster.local'
EXTRACTION__TABLE_OCR_URL: 'http://table-ocr-service.chunkmydocs.svc.cluster.local'
EXTRACTION__SERVER_URL: 'http://api.chunkr.ai' # Change this to your server URL
STRUCTURED_EXTRACT__EMBEDDING_URL: 'http://embeddings-service.chunkmydocs.svc.cluster.local'
STRUCTURED_EXTRACT__LLM_KEY: '' # Add your openai key here
AUTH__KEYCLOAK_URL: http://keycloak:8080
AWS__ACCESS_KEY: minioadmin
AWS__ENDPOINT: http://minio:9000
AWS__PRESIGNED_URL_ENDPOINT: http://localhost:9000
AWS__REGION: us-east-1
AWS__SECRET_KEY: minioadmin
LLM__KEY: # Add your OpenAI key here
PG__URL: postgresql://postgres:postgres@postgres:5432/chunkr
REDIS__URL: redis://redis:6379
RRQ__URL: http://rrq:8000
SEARCH__DENSE_VECTOR_URL: http://dense-vector:80
WORKER__GENERAL_OCR_URL: http://doctr:8000
WORKER__PDLA_FAST_URL: http://pdla:8000
WORKER__PDLA_URL: http://pdla:8000
WORKER__TABLE_OCR_URL: http://table-ocr:8000
VITE_API_URL: http://localhost:8000
VITE_KEYCLOAK_CLIENT_ID: chunkr
VITE_KEYCLOAK_POST_LOGOUT_REDIRECT_URI: http://localhost:5173
VITE_KEYCLOAK_REALM: chunkr
VITE_KEYCLOAK_REDIRECT_URI: http://localhost:5173
VITE_KEYCLOAK_URL: http://localhost:8080

0 comments on commit 1e623fa

Please sign in to comment.