Release V 5.0.1

Document Release Version

Details of Released Tag

Summary of the Changes

  • Making SB Lern Cloud agnostic

Affected Areas:

  • Textbook upload and download

  • QRCode list download from workspace

  • Old certificate download

  • New certificate generation and download

  • Exhaust Reports - UserInfo, Progress and Reponse Exhausts

  • OrgAdmin Reports - Org Consent Report and Geo Reports

Details of the Changes

LR-262 OCI and Open stack support analysis

LR-263 CSP integration testing in Non-Ed env

LR-254 BatchService: CSP Data migration for certificate obj data in RC

Env Configurations (Needs to be done before service deployment):

The below environment variable needs to be configured in the devops repo.

Ansible Changes need to be updated in Common.yml, secrets.yml, hosts.yml
sunbird-devops-private/ansible/inventory/{{env}}/KnowledgePlatform

hosts:

## Lern dataproducts
[learning]

[raw-broker]

[report-cassandra]

[raw-coordinator]

[redis]

[raw-overlord]

[lp-cassandra]



common:

## Lern dataproducts
dp_vault_artifacts_container: 
db_admin_password: 
db_password: 
postgres:                                                                                         
  db_url:       #"{{ groups['postgres'][0] }}"
  db_username:  #analytics
  db_name: 
  db_password: 
  db_table_name: 
  db_port: 5432
  db_admin_user: 
  db_admin_password: 
data_exhaust_webhook_url: 
data_exhaust_Channel: 
data_exhaust_name:
user_port: 6379

secrets:

## Lern dataproducts
dp_vault_data_exhaust_token: 
dp_vault_pgdb_admin_password: 
dp_vault_pgdb_password: 
dp_vault_druid_postgress_pass: 
core_vault_sunbird_api_auth_token:
core_vault_sunbird_encryption_key:   ### This variable added for admin user reports which is bein used to encrypt and decrypt data in cassandra.

Data Migrations: (Run these scripts after service deployment)

  • This script is to update the variable based relative url for cloud resources to course_batch(cassandra) and job_request(postgres) database tables.

https://project-sunbird.atlassian.net/wiki/spaces/UM/pages/3238723588/CSP+changes+in+Lern+related+tables

Verification Steps after migration:

Check few records in course_batch table to see whether the certificate template cloud url is changed to variable format and also check in job_request table to see whether the report url is in relative path format.

  • Update blob URL or CNAME URL in ES ad RC DB

To change actual URL to CNAME URL or In case of opting new CSP provider, to change to new blob URL execute below scripts :

RC PostgreSQL DB table V_TrainingCertificate data migration: https://project-sunbird.atlassian.net/wiki/spaces/UM/pages/3256877067/Training+certificate+migration

ES Migrations(course-batch index, trainingcertificate index) : https://project-sunbird.atlassian.net/wiki/spaces/UM/pages/3231449089/CSP+Changes+for+Course+Batch+and+RC

Verification Steps after migration:

Check ES course_batch index and TrainingCertificate index to see whether the certificate template cloud url is changed to new csp blob url or cname url.

Also check in postgres V_TrainingCertificate table to see whether the certificate template url is changed to new csp blob url or cname url.

  • Update system settings values for sunbird

Run the system-setting for setting the sunbird id value and the read the api

curl --location --request POST 'https://staging.sunbirded.org/api/data/v1/system/settings/set
' \
--header 'Authorization: Bearer {{authorization-key}}' \
--header 'Content-Type: application/json' \
--data-raw '{
	
	"request" :
		{
			 {
                "id": "sunbird",
                "field": "sunbird",
                "value": "{\\\"latestVersion\\\":\\\"v1\\\",\\\"v1\\\":{\\\"url\\\":\\\"https:\/\/obj.stage.sunbirded.org\/portal\/terms-and-conditions-v1.html\\\"}}"
            }
	}
}'




Last updated