This commit is contained in:
2026-04-17 17:43:30 -04:00
parent ba6bd5e0c2
commit 15f474019c
4 changed files with 86 additions and 10 deletions

View File

@@ -664,11 +664,17 @@ spec:
value: info
- name: CONFIG_PATH
value: /config/config.yaml
- name: SECRETS_PATH
value: /config/secrets.yaml
volumeMounts:
- name: ingestor-config
mountPath: /config
mountPath: /config/config.yaml
subPath: config.yaml
readOnly: true
- name: ingestor-secrets
mountPath: /secrets
mountPath: /config/secrets.yaml
subPath: secrets.yaml
readOnly: true
volumes:
- name: ingestor-config
configMap:

View File

@@ -5,9 +5,10 @@ metadata:
namespace: ai
type: Opaque
stringData:
binance-api-key: "{{ op://AI Prod/Ingestor/binance_api_key }}"
binance-api-secret: "{{ op://AI Prod/Ingestor/binance_api_secret }}"
coinbase-api-key: "{{ op://AI Prod/Ingestor/coinbase_api_key }}"
coinbase-api-secret: "{{ op://AI Prod/Ingestor/coinbase_api_secret }}"
kraken-api-key: "{{ op://AI Prod/Ingestor/kraken_api_key }}"
kraken-api-secret: "{{ op://AI Prod/Ingestor/kraken_api_secret }}"
secrets.yaml: |
binance_api_key: "{{ op://AI Prod/Ingestor/binance_api_key }}"
binance_api_secret: "{{ op://AI Prod/Ingestor/binance_api_secret }}"
coinbase_api_key: "{{ op://AI Prod/Ingestor/coinbase_api_key }}"
coinbase_api_secret: "{{ op://AI Prod/Ingestor/coinbase_api_secret }}"
kraken_api_key: "{{ op://AI Prod/Ingestor/kraken_api_key }}"
kraken_api_secret: "{{ op://AI Prod/Ingestor/kraken_api_secret }}"