Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ED-4213] Add release-6.0.0 missing vars #3995

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion private_repo/ansible/inventory/dev/Core/common.yml
Original file line number Diff line number Diff line change
Expand Up @@ -518,12 +518,19 @@ portal_redis_connection_string: "redis://:@{{ sunbird_redis_host }}:6379/3" # U
#### ML Analytics Service #####
ml_analytics_cname_url: # Reference value - https://obj.dev.sunbirded.org/samiksha/

## ML internal kong ####
internal_kong_postgres_host:
internal_kong_ssl: True
internal_kong_postgres_user:
internal_kong_postgres_password:
internal_kong_postgres_database:

### 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
ml_analytics_client_id : project-sunbird-dev-client # Keycloak client group
ml_analytics_username : reportAdmin1 # Username of a user which has roles of "PROGRAM_MANAGER", "PROGRAM_DESIGNER", "REPORT_ADMIN", "REPORT_VIEWER"
ml_analytics_createdBy : fb85a044-d9eb-479b-a55a-faf1bfaea14d # Unique system generated user UUID which is the same user as above
ml_container: samiksha

ml_kafka_topic_create: "" # set to true if ml related topics needs to be created
# provide the s3 compatible endpoint
# for AWS
# cloud_private_storage_account_endpoint: "https://s3.{{ cloud_public_storage_region }}.amazonaws.com"
Expand Down
11 changes: 11 additions & 0 deletions private_repo/ansible/inventory/dev/DataPipeline/common.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ domain_name: "" # your domain name like example.com
dockerhub: "change.docker.url" # docker hub username or url incase of private registry
private_ingressgateway_ip: "" # your private kubernetes load balancer ip
search_lb_ip: # search service Load balancer IP
learningservice_ip: "10.0.1.5" # Load balancer IP or server ip

# Cloud Service Provider Variables
# If cloud_service_provider is AWS then update with access key as value
Expand Down Expand Up @@ -136,6 +137,11 @@ postgres:
db_port: 5432
db_admin_user: postgres
db_admin_password: "{{dp_vault_pgdb_admin_password}}"
dp_ssl: false
dp_ssl_mode: require
dp_sslfactory: org.postgresql.ssl.NonValidatingFactory
dp_db_name: analytics
spark_db_name: analytics

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

cloud_storage_telemetry_type: "{{ cloud_service_provider }}"
druid_storage_type:
spark_bds_url:
druid_cloud_storage_pathstyle_access: true
spark_version: # overide this var if you need a different version of spark. Ex: spark_version: 3.1.3
# 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
# If you want to retain the topics for 7 days, remove the below sections completely
# Ensure you have atleast 1 TB of disk to retain data for 7 days
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ cloud_service_provider: "" # Your cloud service provider name. Supported v
dockerhub: "change.docker.url" # docker hub username or url incase of private registry
private_ingressgateway_ip: "" # your private kubernetes load balancer ip
domain_name: "" # your domain name like example.com
kp_print_service_base_url: "http://{{private_ingressgateway_ip}}/print"
learningservice_ip: "10.0.1.5" # Load balancer IP or server ip

# Cloud Service Provider Variables
# If cloud_service_provider is AWS/OCI then update with access key as value
Expand Down
Loading