Skip to content

Commit 7e703a9

Browse files
authored
Add release-6.0.0 missing vars (#3995)
1 parent 06cc35a commit 7e703a9

File tree

3 files changed

+21
-1
lines changed

3 files changed

+21
-1
lines changed

private_repo/ansible/inventory/dev/Core/common.yml

+8-1
Original file line numberDiff line numberDiff line change
@@ -518,12 +518,19 @@ portal_redis_connection_string: "redis://:@{{ sunbird_redis_host }}:6379/3" # U
518518
#### ML Analytics Service #####
519519
ml_analytics_cname_url: # Reference value - https://obj.dev.sunbirded.org/samiksha/
520520

521+
## ML internal kong ####
522+
internal_kong_postgres_host:
523+
internal_kong_ssl: True
524+
internal_kong_postgres_user:
525+
internal_kong_postgres_password:
526+
internal_kong_postgres_database:
527+
521528
### Variables added as part of 6.0.0 release - https://github.com/Sunbird-Ed/ml-analytics-service/tree/release-6.0.0/release-notes/6.0.0.md
522529
ml_analytics_client_id : project-sunbird-dev-client # Keycloak client group
523530
ml_analytics_username : reportAdmin1 # Username of a user which has roles of "PROGRAM_MANAGER", "PROGRAM_DESIGNER", "REPORT_ADMIN", "REPORT_VIEWER"
524531
ml_analytics_createdBy : fb85a044-d9eb-479b-a55a-faf1bfaea14d # Unique system generated user UUID which is the same user as above
525532
ml_container: samiksha
526-
533+
ml_kafka_topic_create: "" # set to true if ml related topics needs to be created
527534
# provide the s3 compatible endpoint
528535
# for AWS
529536
# cloud_private_storage_account_endpoint: "https://s3.{{ cloud_public_storage_region }}.amazonaws.com"

private_repo/ansible/inventory/dev/DataPipeline/common.yml

+11
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ domain_name: "" # your domain name like example.com
66
dockerhub: "change.docker.url" # docker hub username or url incase of private registry
77
private_ingressgateway_ip: "" # your private kubernetes load balancer ip
88
search_lb_ip: # search service Load balancer IP
9+
learningservice_ip: "10.0.1.5" # Load balancer IP or server ip
910

1011
# Cloud Service Provider Variables
1112
# If cloud_service_provider is AWS then update with access key as value
@@ -136,6 +137,11 @@ postgres:
136137
db_port: 5432
137138
db_admin_user: postgres
138139
db_admin_password: "{{dp_vault_pgdb_admin_password}}"
140+
dp_ssl: false
141+
dp_ssl_mode: require
142+
dp_sslfactory: org.postgresql.ssl.NonValidatingFactory
143+
dp_db_name: analytics
144+
spark_db_name: analytics
139145

140146
druid_postgres_user: druid # Do not change this
141147
imagepullsecrets: "{{env}}registrysecret" # kubernetes imagePullSecrets
@@ -184,6 +190,11 @@ cloudstorage_base_path: "{{ cloud_storage_url }}"
184190
valid_cloudstorage_base_urls: '["{{ cloud_storage_url }}"]'
185191
cloudstorage_relative_path_prefix: "CONTENT_STORAGE_BASE_PATH"
186192

193+
cloud_storage_telemetry_type: "{{ cloud_service_provider }}"
194+
druid_storage_type:
195+
spark_bds_url:
196+
druid_cloud_storage_pathstyle_access: true
197+
spark_version: # overide this var if you need a different version of spark. Ex: spark_version: 3.1.3
187198
# The below sets the kafka topics retention time to 1 day, if you use the defaults from the public repo, it will be 7 days
188199
# If you want to retain the topics for 7 days, remove the below sections completely
189200
# Ensure you have atleast 1 TB of disk to retain data for 7 days

private_repo/ansible/inventory/dev/KnowledgePlatform/common.yml

+2
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ cloud_service_provider: "" # Your cloud service provider name. Supported v
55
dockerhub: "change.docker.url" # docker hub username or url incase of private registry
66
private_ingressgateway_ip: "" # your private kubernetes load balancer ip
77
domain_name: "" # your domain name like example.com
8+
kp_print_service_base_url: "http://{{private_ingressgateway_ip}}/print"
9+
learningservice_ip: "10.0.1.5" # Load balancer IP or server ip
810

911
# Cloud Service Provider Variables
1012
# If cloud_service_provider is AWS/OCI then update with access key as value

0 commit comments

Comments
 (0)