Skip to content

Commit

Permalink
chore: update values
Browse files Browse the repository at this point in the history
  • Loading branch information
dirodriguezm committed Dec 4, 2023
1 parent a80561d commit 73b5ce5
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,9 @@ configYaml:
PYROSCOPE_SERVER: "http://pyroscope.pyroscope:4040"
LOGGING_DEBUG: false
MONGO_SECRET_NAME: "mongodb-alerts-production-writer"
SQL_SECRET_NAME: "psql-alerts-production/alerce"
FEATURE_FLAGS:
PROMETHEUS: false
USE_PROFILING: true
SKIP_MJD_FILTER: false
USE_SQL: false
USE_SQL: true
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,11 @@ configYaml:
bootstrap.servers: ${kafka_server}
sasl.username: ${kafka_username}
sasl.password: ${kafka_password}
TOPICS: ["sorting-hat"]
METRICS_CONFIG:
PARAMS:
PARAMS:
bootstrap.servers: ${kafka_server}
sasl.username: ${kafka_username}
sasl.password: ${kafka_password}
DATABASE_SECRET_NAME: "alerts-database"
DATABASE_SECRET_NAME: "psql-alerts-production/alerce"
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,13 @@ resources:

configYaml:
DB_TYPE: "mongo"
DB_SECRET_NAME: "alerts-database"
DB_SECRET_NAME: "mongodb-alerts-production-writer"
CONSUMER_CONFIG:
CLASS: "apf.consumers.KafkaConsumer"
SCHEMA_PATH: "/schemas/scribe_step/scribe.avsc"
PARAMS:
bootstrap.servers: ${kafka_server}
group.id: "mongodb-alerts-production-writer"
group.id: "scribe-mongo"
sasl.username: ${kafka_username}
sasl.password: ${kafka_password}
TOPICS: ["w_object","w_detection"]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,14 @@ resources:
memory: 128Mi

configYaml:
DB_TYPE: "psql"
DB_SECRET_NAME: "alerts-database"
DB_TYPE: "sql"
DB_SECRET_NAME: "psql-alerts-production/alerce"
CONSUMER_CONFIG:
CLASS: "apf.consumers.KafkaConsumer"
SCHEMA_PATH: "/schemas/scribe_step/scribe.avsc"
PARAMS:
bootstrap.servers: ${kafka_server}
group.id: "scribe_consumer_psql"
group.id: "scribe-psql"
sasl.username: ${kafka_username}
sasl.password: ${kafka_password}
TOPICS: ["w_object","w_detection"]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ autoscaling:
configYaml:
enabled: true
FEATURE_FLAGS:
RUN_CONESEARCH: false
RUN_CONESEARCH: true
USE_PROFILING: true
USE_PSQL: false
USE_PSQL: true
PROMETHEUS: false
MONGO_SECRET_NAME: mongodb-alerts-production-writer
PSQL_SECRET_NAME: "alerts-database"
PSQL_SECRET_NAME: "psql-alerts-production/alerce"
CONSUMER_CONFIG:
CLASS: "apf.consumers.KafkaConsumer"
SCHEMA_PATH: "/schemas/ztf/alert.avsc"
Expand Down

0 comments on commit 73b5ce5

Please sign in to comment.