diff --git a/ansible/inventory/env/group_vars/all.yml b/ansible/inventory/env/group_vars/all.yml index 65eb1db118..423ac116ec 100644 --- a/ansible/inventory/env/group_vars/all.yml +++ b/ansible/inventory/env/group_vars/all.yml @@ -110,8 +110,8 @@ sunbird_cassandra_host: "{{groups['cassandra']|join(',')}}" #Private IP of Cass sunbird_es_host: "{{groups['es']| join(',')}}" ## Application server configurations -sunbird_analytics_api_base_url: "http://{{analyticsapi_ip}}:9000" -sunbird_search_service_api_base_url: "http://{{sunbird_swarm_manager_lb_ip}}:9004" +sunbird_analytics_api_base_url: "analytics-service.{{namespace}}.svc.cluster.local:9000" +sunbird_search_service_api_base_url: "http://{{private_ingressgateway_ip}}/search" sunbird_mail_server_host: "{{ mail_server_host }}" #SMTP server IP. Could be ignored if not mails are to be sent. sunbird_mail_server_port: "{{ mail_server_port }}" #SMTP port. Could be ignored if not mails are to be sent. sunbird_mail_server_username: "{{ mail_server_username }}" #SMTP username. Could be ignored if not mails are to be sent. @@ -197,8 +197,8 @@ sunbird_dial_repo_api_key: "{{ core_vault_sunbird_ekstep_api_key }}" sunbird_plugin_repo_api_base_url: "{{ sunbird_search_service_api_base_url }}" sunbird_data_service_api_base_url: "{{sunbird_ekstep_api_base_url}}" sunbird_data_service_api_key: "{{ core_vault_sunbird_ekstep_api_key }}" -sunbird_content_service_api_base_url: "http://{{sunbird_swarm_manager_lb_ip}}:9002" -sunbird_user_service_api_base_url: "http://{{sunbird_swarm_manager_lb_ip}}:9000" +sunbird_content_service_api_base_url: "http://{{private_ingressgateway_ip}}/content" +sunbird_user_service_api_base_url: "http://{{private_ingressgateway_ip}}/learner" sunbird_group_service_api_base_url: "http://groups-service:9000" #API Manager @@ -262,7 +262,7 @@ enable_scraping_docker_metrics: false postgres_exporter_postgres_port: 5432 postgres_exporter_user: postgres_exporter sunbird_cs_base_url: "http://{{sunbird_swarm_manager_lb_ip}}:5000" -sunbird_user_service_base_url: "http://{{sunbird_swarm_manager_lb_ip}}:9000" +sunbird_user_service_base_url: "http://{{private_ingressgateway_ip}}/learner" kong_admin_api_url: http://localhost:8001 @@ -342,7 +342,7 @@ sunbird_device_register_api: "{{proto}}://{{api_proxy_name}}/v3/device/register/ sunbird_course_batch_notification_signature: sunbird sunbird_authorization: "{{core_vault_sunbird_api_auth_token}}" -sunbird_lms_base_url: "http://{{sunbird_swarm_manager_lb_ip}}:8000" +sunbird_lms_base_url: "http://{{private_ingressgateway_ip}}/api" sunbird_content_service_local_base_url: "http://{{sunbird_swarm_manager_lb_ip}}:5000" sunbird_kafka_host: "{{sunbird_processing_kafka_host}}" sunbird_qrimage_topic: "{{env}}.qrimage.request" @@ -543,7 +543,7 @@ sunbird_sso_kafka_topic: "{{env_name}}.lms.sso.events" __yarn_host__: "{{ groups['yarn-master'][0] }}" zookeepers: "{{groups['zookeeper']|join(':2181,')}}:2181" kafka_brokers: "{{groups['processing-cluster-kafka']|join(':9092,')}}:9092" -__lms_host__: "http://{{sunbird_swarm_manager_lb_ip}}:9000" +__lms_host__: "http://{{private_ingressgateway_ip}}/learner" sunbird_redis_host: "{{ groups['lp-redis'][0] }}" @@ -649,3 +649,11 @@ group_activity_agg_cache_enable: false # nodebb variables sunbird_nodebb_storage_key: "{{ core_vault_sunbird_nodebb_storage_key }}" +kibana_service: kibana.logging.svc.cluster.local:5601 +sunbird_dial_repo_api_base_url: "http://{{dialservice_ip}}:9001" + +#report service +dp_postgres_host: "{{ groups['postgres'][0] }}" +dp_postgres_db: analytics +dp_postgres_password: "{{ core_vault_dp_pgdb_password }}" +dp_postgres_username: analytics diff --git a/deploy/jenkins/jenkins-plugins-setup.sh b/deploy/jenkins/jenkins-plugins-setup.sh index 1bc665b7ec..b6956c7df9 100755 --- a/deploy/jenkins/jenkins-plugins-setup.sh +++ b/deploy/jenkins/jenkins-plugins-setup.sh @@ -4,21 +4,21 @@ normal=$(tput sgr0) if [[ ! -d /var/lib/jenkins/.m2 ]]; then echo -e "\n\e[0;32m${bold}Downloading and copying m2 directory to Jenkins ${normal}" -wget https://sunbirdpublic.blob.core.windows.net/installation/m2_updated.zip -unzip m2_updated.zip +wget https://sunbirdpublic.blob.core.windows.net/installation/m2_new.zip +unzip m2_new.zip mv .m2 /var/lib/jenkins chown -R jenkins:jenkins /var/lib/jenkins/.m2 fi echo -e "\n\e[0;32m${bold}Downloading and copying jenkins plugin directory to Jenkins ${normal}" if [[ ! -d /var/lib/jenkins/plugins ]]; then -wget https://sunbirdpublic.blob.core.windows.net/installation/JenkinsPlugin.zip -unzip JenkinsPlugin.zip +wget https://sunbirdpublic.blob.core.windows.net/installation/jenkins-plugins-new.zip +unzip jenkins-plugins-new.zip mv plugins /var/lib/jenkins/ chown -R jenkins:jenkins /var/lib/jenkins/plugins else -wget https://sunbirdpublic.blob.core.windows.net/installation/JenkinsPlugin.zip -unzip JenkinsPlugin.zip +wget https://sunbirdpublic.blob.core.windows.net/installation/jenkins-plugins-new.zip +unzip jenkins-plugins-new.zip cp -rf plugins/* /var/lib/jenkins/plugins/ chown -R jenkins:jenkins /var/lib/jenkins/plugins fi diff --git a/deploy/jenkins/jenkins-server-setup.sh b/deploy/jenkins/jenkins-server-setup.sh index c28e876901..61dc03d71d 100755 --- a/deploy/jenkins/jenkins-server-setup.sh +++ b/deploy/jenkins/jenkins-server-setup.sh @@ -15,7 +15,7 @@ echo -e "\n\e[0;32m${bold}Installating Jenkins${normal}" wget -q -O - https://pkg.jenkins.io/debian-stable/jenkins.io.key | apt-key add - apt-add-repository "deb https://pkg.jenkins.io/debian-stable binary/" apt-get update -apt-get install -y jenkins=2.190.2 +apt-get install -y jenkins=2.263.1 echo -e "\n\e[0;32m${bold}Installating PIP${normal}" apt-get install -y python-pip @@ -128,6 +128,22 @@ echo "deb http://apt.kubernetes.io/ kubernetes-xenial main" | sudo tee -a /etc/a apt-get update apt-get install -y kubectl +#Install yarn +curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add - +echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list +apt update && apt install yarn + +wget https://download.java.net/openjdk/jdk11/ri/openjdk-11+28_linux-x64_bin.tar.gz +tar -xf openjdk-11+28_linux-x64_bin.tar.gz +mv jdk-11 java-11-openjdk-amd64 +cp -r java-11-openjdk-amd64 /usr/lib/jvm/ +rm -rf java-11-openjdk-amd64 openjdk-11+28_linux-x64_bin.tar.gz + +wget https://downloads.apache.org/maven/maven-3/3.6.3/binaries/apache-maven-3.6.3-bin.tar.gz +tar -xf apache-maven-3.6.3-bin.tar.gz +mv apache-maven-3.6.3/bin/mvn /opt/apache-maven-3.6.3/bin/mvn.3.6 +rm -rf apache-maven-3.6.3-bin.tar.gz + echo -e "\n\e[0;32m${bold}Clean up${normal}" sudo apt -y autoremove diff --git a/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/config.xml b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/config.xml index ca27afff70..92618cba96 100644 --- a/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/config.xml +++ b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/config.xml @@ -1,12 +1,12 @@ - + - + - - + + diff --git a/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/APIManager/config.xml b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/APIManager/config.xml index a3e8cbe68b..99ae364dae 100644 --- a/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/APIManager/config.xml +++ b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/APIManager/config.xml @@ -1,26 +1,25 @@ - - + - + hudson.model.ParametersDefinitionProperty com.sonyericsson.rebuild.RebuildSettings - + false -1 - -1 + 10 -1 - 5 + 1 - + false false @@ -35,7 +34,7 @@ image_tag <font color=darkgreen size=2><b>OPTIONAL: Specify the tag to upload a specific image version to the container registry.</b></font> - + false @@ -51,20 +50,21 @@ ArtifactRepo - Push the docker image to container registry. - + 0 0 false project false - + + - - Build/Core/APIManager + + /Build/Core/APIManager SUCCESS 0 @@ -75,8 +75,8 @@ ArtifactRepo - Push the docker image to container registry. - - + + 2 @@ -94,7 +94,7 @@ ArtifactRepo - Push the docker image to container registry. true false - + 1 false @@ -105,4 +105,4 @@ ArtifactRepo - Push the docker image to container registry. false - + \ No newline at end of file diff --git a/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/APIManagerEcho/config.xml b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/APIManagerEcho/config.xml index cc051470f7..cb84967fb9 100644 --- a/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/APIManagerEcho/config.xml +++ b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/APIManagerEcho/config.xml @@ -1,26 +1,25 @@ - - + - + hudson.model.ParametersDefinitionProperty com.sonyericsson.rebuild.RebuildSettings - + false -1 - -1 + 10 -1 - 5 + 1 - + false false @@ -29,13 +28,13 @@ absolute_job_path <font color=dimgray size=2><b>Do not change this value! The metadata.json will be copied from this job.</b></font> - Build/Core/APIManagerEcho + Build/Core/ApiManagerEcho false image_tag <font color=darkgreen size=2><b>OPTIONAL: Specify the tag to upload a specific image version to the container registry.</b></font> - + false @@ -51,20 +50,21 @@ ArtifactRepo - Push the docker image to container registry. - + 0 0 false project false - + + - - Build/Core/APIManagerEcho + + /Build/Core/ApiManagerEcho SUCCESS 0 @@ -75,8 +75,8 @@ ArtifactRepo - Push the docker image to container registry. - - + + 2 @@ -94,7 +94,7 @@ ArtifactRepo - Push the docker image to container registry. true false - + 1 false @@ -105,4 +105,4 @@ ArtifactRepo - Push the docker image to container registry. false - + \ No newline at end of file diff --git a/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/AdminUtils/config.xml b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/AdminUtils/config.xml index 397432f382..bad9bddc1f 100644 --- a/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/AdminUtils/config.xml +++ b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/AdminUtils/config.xml @@ -1,37 +1,35 @@ - - + - + hudson.model.ParametersDefinitionProperty com.sonyericsson.rebuild.RebuildSettings - - + + - + false - - - - - /Build/Core/AdminUtils - - SUCCESS - 0 - BLUE - true - - - - + + + -1 + 10 + -1 + 1 + + + + + false + false + @@ -43,7 +41,7 @@ image_tag <font color=darkgreen size=2><b>OPTIONAL: Specify the tag to upload a specific image version to the container registry.</b></font> - + false @@ -59,32 +57,33 @@ ArtifactRepo - Push the docker image to container registry. - - - -1 - -1 - -1 - 5 - - - - - false - false - - + 0 0 false project false - - 1 + + + + + + + /Build/Core/AdminUtils + + SUCCESS + 0 + BLUE + true + + + + - - + + 2 @@ -102,7 +101,7 @@ ArtifactRepo - Push the docker image to container registry. true false - + 1 false @@ -113,4 +112,4 @@ ArtifactRepo - Push the docker image to container registry. false - + \ No newline at end of file diff --git a/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/Analytics/config.xml b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/Analytics/config.xml new file mode 100644 index 0000000000..0e2f5b81b5 --- /dev/null +++ b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/Analytics/config.xml @@ -0,0 +1,108 @@ + + + + + hudson.model.ParametersDefinitionProperty + com.sonyericsson.rebuild.RebuildSettings + + + + + false + + + + -1 + 10 + -1 + 1 + + + + + false + false + + + + + absolute_job_path + <font color=dimgray size=2><b>Do not change this value! The metadata.json will be copied from this job.</b></font> + Build/Core/Analytics + false + + + image_tag + <font color=darkgreen size=2><b>OPTIONAL: Specify the tag to upload a specific image version to the container registry.</b></font> + + false + + + artifact_source + <font color=dimgray size=2><b> +ArtifactRepo - Push the docker image to container registry. +</b></font> + + + ArtifactRepo + + + + + + + 0 + 0 + + false + project + false + + + + + + + + /Build/Core/Analytics + + SUCCESS + 0 + BLUE + true + + + + + + + + 2 + + + https://github.com/project-sunbird/sunbird-devops.git + + + + + ${public_repo_branch} + + + false + + + + true + false + + 0 + false + + + + pipelines/upload/docker/Jenkinsfile + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/Assessment/config.xml b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/Assessment/config.xml index 99461aa982..dc2b9069b7 100644 --- a/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/Assessment/config.xml +++ b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/Assessment/config.xml @@ -1,5 +1,4 @@ - - + @@ -8,15 +7,15 @@ - + false -1 - -1 + 10 -1 - 5 + 1 @@ -35,7 +34,7 @@ image_tag <font color=darkgreen size=2><b>OPTIONAL: Specify the tag to upload a specific image version to the container registry.</b></font> - + false @@ -51,19 +50,20 @@ ArtifactRepo - Push the docker image to container registry. - + 0 0 false project false - + + - + /Build/Core/Assessment SUCCESS @@ -75,8 +75,8 @@ ArtifactRepo - Push the docker image to container registry. - - + + 2 @@ -94,7 +94,7 @@ ArtifactRepo - Push the docker image to container registry. true false - + 0 false diff --git a/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/Badger/config.xml b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/Badger/config.xml index 7a4b219bb4..6e2ea43037 100644 --- a/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/Badger/config.xml +++ b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/Badger/config.xml @@ -1,26 +1,25 @@ - - + - + hudson.model.ParametersDefinitionProperty com.sonyericsson.rebuild.RebuildSettings - + false -1 - -1 + 10 -1 - 5 + 1 - + false false @@ -35,7 +34,7 @@ image_tag <font color=darkgreen size=2><b>OPTIONAL: Specify the tag to upload a specific image version to the container registry.</b></font> - + false @@ -51,19 +50,20 @@ ArtifactRepo - Push the docker image to container registry. - + 0 0 false project false - + + - + /Build/Core/Badger SUCCESS @@ -75,8 +75,8 @@ ArtifactRepo - Push the docker image to container registry. - - + + 2 @@ -94,7 +94,7 @@ ArtifactRepo - Push the docker image to container registry. true false - + 1 false @@ -105,4 +105,4 @@ ArtifactRepo - Push the docker image to container registry. false - + \ No newline at end of file diff --git a/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/Bot/config.xml b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/Bot/config.xml new file mode 100644 index 0000000000..9d3f277a13 --- /dev/null +++ b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/Bot/config.xml @@ -0,0 +1,108 @@ + + + + + hudson.model.ParametersDefinitionProperty + com.sonyericsson.rebuild.RebuildSettings + + + + + false + + + + -1 + 10 + -1 + 1 + + + + + false + false + + + + + absolute_job_path + <font color=dimgray size=2><b>Do not change this value! The metadata.json will be copied from this job.</b></font> + Build/Core/Bot + false + + + image_tag + <font color=darkgreen size=2><b>OPTIONAL: Specify the tag to upload a specific image version to the container registry.</b></font> + + false + + + artifact_source + <font color=dimgray size=2><b> +ArtifactRepo - Push the docker image to container registry. +</b></font> + + + ArtifactRepo + + + + + + + 0 + 0 + + false + project + false + + + + + + + + /Build/Core/Bot + + SUCCESS + 0 + BLUE + true + + + + + + + + 2 + + + https://github.com/project-sunbird/sunbird-devops.git + + + + + ${public_repo_branch} + + + false + + + + true + false + + 0 + false + + + + pipelines/upload/docker/Jenkinsfile + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/Cassandra/config.xml b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/Cassandra/config.xml index e26714086f..06ff17040a 100644 --- a/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/Cassandra/config.xml +++ b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/Cassandra/config.xml @@ -1,5 +1,4 @@ - - + @@ -8,15 +7,15 @@ - + false -1 - -1 + 10 -1 - 5 + 1 @@ -51,19 +50,20 @@ ArtifactRepo - Upload and keep a copy of the artifact in Jenkins, JenkinsJob - J - + 0 0 false project false - + + - + /Build/Core/Cassandra SUCCESS @@ -75,8 +75,8 @@ ArtifactRepo - Upload and keep a copy of the artifact in Jenkins, JenkinsJob - J - - + + 2 @@ -94,7 +94,7 @@ ArtifactRepo - Upload and keep a copy of the artifact in Jenkins, JenkinsJob - J true false - + 0 false diff --git a/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/CassandraDecrypt/config.xml b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/CassandraDecrypt/config.xml index 1dec9c818c..72bb8bb862 100644 --- a/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/CassandraDecrypt/config.xml +++ b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/CassandraDecrypt/config.xml @@ -1,5 +1,4 @@ - - + @@ -8,15 +7,15 @@ - + false -1 - -1 + 10 -1 - 5 + 1 @@ -51,19 +50,20 @@ ArtifactRepo - Upload and keep a copy of the artifact in Jenkins, JenkinsJob - J - + 0 0 false project false - + + - + /Build/Core/CassandraDecrypt SUCCESS @@ -75,8 +75,8 @@ ArtifactRepo - Upload and keep a copy of the artifact in Jenkins, JenkinsJob - J - - + + 2 @@ -94,7 +94,7 @@ ArtifactRepo - Upload and keep a copy of the artifact in Jenkins, JenkinsJob - J true false - + 0 false diff --git a/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/CassandraStateValidated/config.xml b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/CassandraStateValidated/config.xml new file mode 100644 index 0000000000..dec55c1df8 --- /dev/null +++ b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/CassandraStateValidated/config.xml @@ -0,0 +1,108 @@ + + + + + hudson.model.ParametersDefinitionProperty + com.sonyericsson.rebuild.RebuildSettings + + + + + false + + + + -1 + 10 + -1 + 1 + + + + + false + false + + + + + absolute_job_path + <font color=dimgray size=2><b>Do not change this value! The metadata.json will be copied from this job.</b></font> + Build/Core/CassandraStateValidated + false + + + build_number + <font color=darkgreen size=2><b>OPTIONAL: Specify the build job number to upload / copy the artifact built in that job.</b></font> + lastSuccessfulBuild + false + + + artifact_source + <font color=dimgray size=2><b> +ArtifactRepo - Upload and keep a copy of the artifact in Jenkins, JenkinsJob - Just keep a copy of the artifact in Jenkins.</b></font> + + + ArtifactRepo + JenkinsJob + + + + + + + 0 + 0 + + false + project + false + + + + + + + + /Build/Core/CassandraStateValidated + + SUCCESS + 0 + BLUE + true + + + + + + + + 2 + + + https://github.com/project-sunbird/sunbird-devops.git + + + + + ${public_repo_branch} + + + false + + + + true + false + + 0 + false + + + + pipelines/upload/artifacts/Jenkinsfile + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/CassandraTrigger/config.xml b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/CassandraTrigger/config.xml index e99180b3a7..19b638685d 100644 --- a/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/CassandraTrigger/config.xml +++ b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/CassandraTrigger/config.xml @@ -1,5 +1,4 @@ - - + @@ -8,19 +7,19 @@ - + false -1 - -1 + 10 -1 - 5 + 1 - + false false @@ -51,20 +50,21 @@ ArtifactRepo - Upload and keep a copy of the artifact in Jenkins, JenkinsJob - J - + 0 0 false project false - + + - - Build/Core/CassandraTrigger + + /Build/Core/CassandraTrigger SUCCESS 0 @@ -75,8 +75,8 @@ ArtifactRepo - Upload and keep a copy of the artifact in Jenkins, JenkinsJob - J - - + + 2 @@ -94,7 +94,7 @@ ArtifactRepo - Upload and keep a copy of the artifact in Jenkins, JenkinsJob - J true false - + 0 false diff --git a/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/Cert/config.xml b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/Cert/config.xml index fc06750462..fbf6fc242f 100644 --- a/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/Cert/config.xml +++ b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/Cert/config.xml @@ -1,5 +1,4 @@ - - + @@ -8,19 +7,19 @@ - + false -1 - -1 + 10 -1 - 5 + 1 - + false false @@ -35,7 +34,7 @@ image_tag <font color=darkgreen size=2><b>OPTIONAL: Specify the tag to upload a specific image version to the container registry.</b></font> - + false @@ -51,19 +50,20 @@ ArtifactRepo - Push the docker image to container registry. - + 0 0 false project false - + + - + /Build/Core/Cert SUCCESS @@ -75,8 +75,8 @@ ArtifactRepo - Push the docker image to container registry. - - + + 2 @@ -94,7 +94,7 @@ ArtifactRepo - Push the docker image to container registry. true false - + 0 false diff --git a/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/CertRegistryService/config.xml b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/CertRegistryService/config.xml index 418c706b3d..4748b3d7bb 100644 --- a/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/CertRegistryService/config.xml +++ b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/CertRegistryService/config.xml @@ -1,5 +1,4 @@ - - + @@ -8,15 +7,15 @@ - + false -1 - -1 + 10 -1 - 5 + 1 @@ -35,7 +34,7 @@ image_tag <font color=darkgreen size=2><b>OPTIONAL: Specify the tag to upload a specific image version to the container registry.</b></font> - + false @@ -51,19 +50,20 @@ ArtifactRepo - Push the docker image to container registry. - + 0 0 false project false - + + - + /Build/Core/CertRegistryService SUCCESS @@ -75,8 +75,8 @@ ArtifactRepo - Push the docker image to container registry. - - + + 2 @@ -94,7 +94,7 @@ ArtifactRepo - Push the docker image to container registry. true false - + 0 false diff --git a/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/Config/config.xml b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/Config/config.xml new file mode 100644 index 0000000000..874765187c --- /dev/null +++ b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/Config/config.xml @@ -0,0 +1,108 @@ + + + + + hudson.model.ParametersDefinitionProperty + com.sonyericsson.rebuild.RebuildSettings + + + + + false + + + + -1 + 10 + -1 + 1 + + + + + false + false + + + + + absolute_job_path + <font color=dimgray size=2><b>Do not change this value! The metadata.json will be copied from this job.</b></font> + Build/Core/Config + false + + + image_tag + <font color=darkgreen size=2><b>OPTIONAL: Specify the tag to upload a specific image version to the container registry.</b></font> + + false + + + artifact_source + <font color=dimgray size=2><b> +ArtifactRepo - Push the docker image to container registry. +</b></font> + + + ArtifactRepo + + + + + + + 0 + 0 + + false + project + false + + + + + + + + /Build/Core/Config + + SUCCESS + 0 + BLUE + true + + + + + + + + 2 + + + https://github.com/project-sunbird/sunbird-devops.git + + + + + ${public_repo_branch} + + + false + + + + true + false + + 1 + false + + + + pipelines/upload/docker/Jenkinsfile + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/Content/config.xml b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/Content/config.xml index ff83188c26..3cd813b454 100644 --- a/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/Content/config.xml +++ b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/Content/config.xml @@ -1,22 +1,21 @@ - - + - + hudson.model.ParametersDefinitionProperty com.sonyericsson.rebuild.RebuildSettings - + false -1 - -1 + 10 -1 - 5 + 1 @@ -35,7 +34,7 @@ image_tag <font color=darkgreen size=2><b>OPTIONAL: Specify the tag to upload a specific image version to the container registry.</b></font> - + false @@ -51,19 +50,20 @@ ArtifactRepo - Push the docker image to container registry. - + 0 0 false project false - + + - + /Build/Core/Content SUCCESS @@ -75,8 +75,8 @@ ArtifactRepo - Push the docker image to container registry. - - + + 2 @@ -94,7 +94,7 @@ ArtifactRepo - Push the docker image to container registry. true false - + 0 false diff --git a/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/EncService/config.xml b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/EncService/config.xml index 77c780c037..b6ac09120d 100644 --- a/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/EncService/config.xml +++ b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/EncService/config.xml @@ -1,5 +1,4 @@ - - + @@ -8,19 +7,19 @@ - + false -1 - -1 + 10 -1 - 5 + 1 - + false false @@ -35,7 +34,7 @@ image_tag <font color=darkgreen size=2><b>OPTIONAL: Specify the tag to upload a specific image version to the container registry.</b></font> - + false @@ -51,19 +50,20 @@ ArtifactRepo - Push the docker image to container registry. - + 0 0 false project false - + + - + /Build/Core/EncService SUCCESS @@ -75,8 +75,8 @@ ArtifactRepo - Push the docker image to container registry. - - + + 2 @@ -94,7 +94,7 @@ ArtifactRepo - Push the docker image to container registry. true false - + 0 false diff --git a/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/Groups/config.xml b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/Groups/config.xml new file mode 100644 index 0000000000..e163035864 --- /dev/null +++ b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/Groups/config.xml @@ -0,0 +1,108 @@ + + + + + hudson.model.ParametersDefinitionProperty + com.sonyericsson.rebuild.RebuildSettings + + + + + false + + + + -1 + 10 + -1 + 1 + + + + + false + false + + + + + absolute_job_path + <font color=dimgray size=2><b>Do not change this value! The metadata.json will be copied from this job.</b></font> + Build/Core/Groups + false + + + image_tag + <font color=darkgreen size=2><b>OPTIONAL: Specify the tag to upload a specific image version to the container registry.</b></font> + + false + + + artifact_source + <font color=dimgray size=2><b> +ArtifactRepo - Push the docker image to container registry. +</b></font> + + + ArtifactRepo + + + + + + + 0 + 0 + + false + project + false + + + + + + + + /Build/Core/Groups + + SUCCESS + 0 + BLUE + true + + + + + + + + 2 + + + https://github.com/project-sunbird/sunbird-devops.git + + + + + ${public_repo_branch} + + + false + + + + true + false + + 0 + false + + + + pipelines/upload/docker/Jenkinsfile + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/Hawkeye-superset/config.xml b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/Hawkeye-superset/config.xml new file mode 100644 index 0000000000..ab8dbb6ef7 --- /dev/null +++ b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/Hawkeye-superset/config.xml @@ -0,0 +1,108 @@ + + + + + hudson.model.ParametersDefinitionProperty + com.sonyericsson.rebuild.RebuildSettings + + + + + false + + + + -1 + 10 + -1 + 1 + + + + + false + false + + + + + absolute_job_path + <font color=dimgray size=2><b>Do not change this value! The metadata.json will be copied from this job.</b></font> + Build/Core/Hawkeye-superset + false + + + image_tag + <font color=darkgreen size=2><b>OPTIONAL: Specify the tag to upload a specific image version to the container registry.</b></font> + + false + + + artifact_source + <font color=dimgray size=2><b> +ArtifactRepo - Push the docker image to container registry. +</b></font> + + + ArtifactRepo + + + + + + + 0 + 0 + + false + project + false + + + + + + + + /Build/Core/Hawkeye-superset + + SUCCESS + 0 + BLUE + true + + + + + + + + 2 + + + https://github.com/project-sunbird/sunbird-devops.git + + + + + ${public_repo_branch} + + + false + + + + true + false + + 1 + false + + + + pipelines/upload/docker/Jenkinsfile + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/Keycloak/config.xml b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/Keycloak/config.xml index 56e5f8b789..825932b1b9 100644 --- a/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/Keycloak/config.xml +++ b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/Keycloak/config.xml @@ -1,26 +1,25 @@ - - + - + hudson.model.ParametersDefinitionProperty com.sonyericsson.rebuild.RebuildSettings - + false -1 - -1 + 10 -1 - 5 + 1 - + false false @@ -51,19 +50,20 @@ ArtifactRepo - Upload and keep a copy of the artifact in Jenkins, JenkinsJob - J - + 0 0 false project false - + + - + /Build/Core/Keycloak SUCCESS @@ -75,8 +75,8 @@ ArtifactRepo - Upload and keep a copy of the artifact in Jenkins, JenkinsJob - J - - + + 2 @@ -94,7 +94,7 @@ ArtifactRepo - Upload and keep a copy of the artifact in Jenkins, JenkinsJob - J true false - + 1 false @@ -105,4 +105,4 @@ ArtifactRepo - Upload and keep a copy of the artifact in Jenkins, JenkinsJob - J false - + \ No newline at end of file diff --git a/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/KnowledgeMW/config.xml b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/KnowledgeMW/config.xml index 1d398f8845..b8352ba777 100644 --- a/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/KnowledgeMW/config.xml +++ b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/KnowledgeMW/config.xml @@ -1,5 +1,4 @@ - - + @@ -8,15 +7,15 @@ - + false -1 - -1 + 10 -1 - 5 + 1 @@ -35,7 +34,7 @@ image_tag <font color=darkgreen size=2><b>OPTIONAL: Specify the tag to upload a specific image version to the container registry.</b></font> - + false @@ -51,19 +50,20 @@ ArtifactRepo - Push the docker image to container registry. - + 0 0 false project false - + + - + /Build/Core/KnowledgeMW SUCCESS @@ -75,8 +75,8 @@ ArtifactRepo - Push the docker image to container registry. - - + + 2 @@ -94,7 +94,7 @@ ArtifactRepo - Push the docker image to container registry. true false - + 1 false diff --git a/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/Learner/config.xml b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/Learner/config.xml index 28100d104e..a0f41171e9 100644 --- a/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/Learner/config.xml +++ b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/Learner/config.xml @@ -1,5 +1,4 @@ - - + @@ -8,15 +7,15 @@ - + false -1 - -1 + 10 -1 - 5 + 1 @@ -35,7 +34,7 @@ image_tag <font color=darkgreen size=2><b>OPTIONAL: Specify the tag to upload a specific image version to the container registry.</b></font> - + false @@ -51,19 +50,20 @@ ArtifactRepo - Push the docker image to container registry. - + 0 0 false project false - + + - + /Build/Core/Learner SUCCESS @@ -75,8 +75,8 @@ ArtifactRepo - Push the docker image to container registry. - - + + 2 @@ -94,7 +94,7 @@ ArtifactRepo - Push the docker image to container registry. true false - + 0 false diff --git a/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/Lms/config.xml b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/Lms/config.xml index eecb2f3184..353c7d776f 100644 --- a/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/Lms/config.xml +++ b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/Lms/config.xml @@ -1,5 +1,4 @@ - - + @@ -8,15 +7,15 @@ - + false -1 - -1 + 10 -1 - 5 + 1 @@ -35,7 +34,7 @@ image_tag <font color=darkgreen size=2><b>OPTIONAL: Specify the tag to upload a specific image version to the container registry.</b></font> - + false @@ -51,19 +50,20 @@ ArtifactRepo - Push the docker image to container registry. - + 0 0 false project false - + + - + /Build/Core/Lms SUCCESS @@ -75,8 +75,8 @@ ArtifactRepo - Push the docker image to container registry. - - + + 2 @@ -94,7 +94,7 @@ ArtifactRepo - Push the docker image to container registry. true false - + 0 false diff --git a/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/Nodebb/config.xml b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/Nodebb/config.xml new file mode 100644 index 0000000000..e74f85cc5a --- /dev/null +++ b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/Nodebb/config.xml @@ -0,0 +1,108 @@ + + + + + hudson.model.ParametersDefinitionProperty + com.sonyericsson.rebuild.RebuildSettings + + + + + false + + + + -1 + 10 + -1 + 1 + + + + + false + false + + + + + absolute_job_path + <font color=dimgray size=2><b>Do not change this value! The metadata.json will be copied from this job.</b></font> + Build/Core/Nodebb + false + + + image_tag + <font color=darkgreen size=2><b>OPTIONAL: Specify the tag to upload a specific image version to the container registry.</b></font> + + false + + + artifact_source + <font color=dimgray size=2><b> +ArtifactRepo - Push the docker image to container registry. +</b></font> + + + ArtifactRepo + + + + + + + 0 + 0 + + false + project + false + + + + + + + + /Build/Core/Nodebb + + SUCCESS + 0 + BLUE + true + + + + + + + + 2 + + + https://github.com/project-sunbird/sunbird-devops.git + + + + + ${public_repo_branch} + + + false + + + + true + false + + 1 + false + + + + pipelines/upload/docker/Jenkinsfile + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/Notification/config.xml b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/Notification/config.xml index a6f84bf6e1..8741ed7874 100644 --- a/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/Notification/config.xml +++ b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/Notification/config.xml @@ -1,5 +1,4 @@ - - + @@ -8,15 +7,15 @@ - + false -1 - -1 + 10 -1 - 5 + 1 @@ -35,7 +34,7 @@ image_tag <font color=darkgreen size=2><b>OPTIONAL: Specify the tag to upload a specific image version to the container registry.</b></font> - + false @@ -51,19 +50,20 @@ ArtifactRepo - Push the docker image to container registry. - + 0 0 false project false - + + - + /Build/Core/Notification SUCCESS @@ -75,8 +75,8 @@ ArtifactRepo - Push the docker image to container registry. - - + + 2 @@ -94,7 +94,7 @@ ArtifactRepo - Push the docker image to container registry. true false - + 0 false diff --git a/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/Player/config.xml b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/Player/config.xml index a0c8fd7a65..d14adf080f 100644 --- a/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/Player/config.xml +++ b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/Player/config.xml @@ -1,5 +1,4 @@ - - + @@ -8,19 +7,19 @@ - + false -1 - -1 + 10 -1 - 5 + 1 - + false false @@ -35,7 +34,7 @@ image_tag <font color=darkgreen size=2><b>OPTIONAL: Specify the tag to upload a specific image version to the container registry.</b></font> - + false @@ -51,19 +50,20 @@ ArtifactRepo - Push the docker image to container registry. - + 0 0 false project false - + + - + /Build/Core/Player SUCCESS @@ -75,8 +75,8 @@ ArtifactRepo - Push the docker image to container registry. - - + + 2 @@ -94,7 +94,7 @@ ArtifactRepo - Push the docker image to container registry. true false - + 1 false diff --git a/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/Print/config.xml b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/Print/config.xml index df8959b6a3..ef761534e2 100644 --- a/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/Print/config.xml +++ b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/Print/config.xml @@ -1,5 +1,4 @@ - - + @@ -8,15 +7,15 @@ - + false -1 - -1 + 10 -1 - 5 + 1 @@ -35,7 +34,7 @@ image_tag <font color=darkgreen size=2><b>OPTIONAL: Specify the tag to upload a specific image version to the container registry.</b></font> - + false @@ -51,19 +50,20 @@ ArtifactRepo - Push the docker image to container registry. - + 0 0 false project false - + + - + /Build/Core/Print SUCCESS @@ -75,8 +75,8 @@ ArtifactRepo - Push the docker image to container registry. - - + + 2 @@ -94,7 +94,7 @@ ArtifactRepo - Push the docker image to container registry. true false - + 1 false diff --git a/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/Proxy/config.xml b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/Proxy/config.xml index 281955d43a..eff80798ab 100644 --- a/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/Proxy/config.xml +++ b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/Proxy/config.xml @@ -1,26 +1,25 @@ - - + - + hudson.model.ParametersDefinitionProperty com.sonyericsson.rebuild.RebuildSettings - + false -1 - -1 + 10 -1 - 5 + 1 - + false false @@ -35,7 +34,7 @@ image_tag <font color=darkgreen size=2><b>OPTIONAL: Specify the tag to upload a specific image version to the container registry.</b></font> - + false @@ -51,19 +50,20 @@ ArtifactRepo - Push the docker image to container registry. - + 0 0 false project false - + + - + /Build/Core/Proxy SUCCESS @@ -75,8 +75,8 @@ ArtifactRepo - Push the docker image to container registry. - - + + 2 @@ -94,7 +94,7 @@ ArtifactRepo - Push the docker image to container registry. true false - + 1 false @@ -105,4 +105,4 @@ ArtifactRepo - Push the docker image to container registry. false - + \ No newline at end of file diff --git a/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/Report/config.xml b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/Report/config.xml new file mode 100644 index 0000000000..6e6022264f --- /dev/null +++ b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/Report/config.xml @@ -0,0 +1,108 @@ + + + + + hudson.model.ParametersDefinitionProperty + com.sonyericsson.rebuild.RebuildSettings + + + + + false + + + + -1 + 10 + -1 + 1 + + + + + false + false + + + + + absolute_job_path + <font color=dimgray size=2><b>Do not change this value! The metadata.json will be copied from this job.</b></font> + Build/Core/Report + false + + + image_tag + <font color=darkgreen size=2><b>OPTIONAL: Specify the tag to upload a specific image version to the container registry.</b></font> + + false + + + artifact_source + <font color=dimgray size=2><b> +ArtifactRepo - Push the docker image to container registry. +</b></font> + + + ArtifactRepo + + + + + + + 0 + 0 + + false + project + false + + + + + + + + /Build/Core/Report + + SUCCESS + 0 + BLUE + true + + + + + + + + 2 + + + https://github.com/project-sunbird/sunbird-devops.git + + + + + ${public_repo_branch} + + + false + + + + true + false + + 0 + false + + + + pipelines/upload/docker/Jenkinsfile + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/Router/config.xml b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/Router/config.xml new file mode 100644 index 0000000000..2f6dbc4e18 --- /dev/null +++ b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/Router/config.xml @@ -0,0 +1,108 @@ + + + + + hudson.model.ParametersDefinitionProperty + com.sonyericsson.rebuild.RebuildSettings + + + + + false + + + + -1 + 10 + -1 + 1 + + + + + false + false + + + + + absolute_job_path + <font color=dimgray size=2><b>Do not change this value! The metadata.json will be copied from this job.</b></font> + Build/Core/Router + false + + + image_tag + <font color=darkgreen size=2><b>OPTIONAL: Specify the tag to upload a specific image version to the container registry.</b></font> + + false + + + artifact_source + <font color=dimgray size=2><b> +ArtifactRepo - Push the docker image to container registry. +</b></font> + + + ArtifactRepo + + + + + + + 0 + 0 + + false + project + false + + + + + + + + /Build/Core/Router + + SUCCESS + 0 + BLUE + true + + + + + + + + 2 + + + https://github.com/project-sunbird/sunbird-devops.git + + + + + ${public_repo_branch} + + + false + + + + true + false + + 0 + false + + + + pipelines/upload/docker/Jenkinsfile + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/Search/config.xml b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/Search/config.xml new file mode 100644 index 0000000000..c5c50f2621 --- /dev/null +++ b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/Search/config.xml @@ -0,0 +1,108 @@ + + + + + hudson.model.ParametersDefinitionProperty + com.sonyericsson.rebuild.RebuildSettings + + + + + false + + + + -1 + 10 + -1 + 1 + + + + + false + false + + + + + absolute_job_path + <font color=dimgray size=2><b>Do not change this value! The metadata.json will be copied from this job.</b></font> + Build/Core/Search + false + + + image_tag + <font color=darkgreen size=2><b>OPTIONAL: Specify the tag to upload a specific image version to the container registry.</b></font> + + false + + + artifact_source + <font color=dimgray size=2><b> +ArtifactRepo - Push the docker image to container registry. +</b></font> + + + ArtifactRepo + + + + + + + 0 + 0 + + false + project + false + + + + + + + + /Build/Core/Search + + SUCCESS + 0 + BLUE + true + + + + + + + + 2 + + + https://github.com/project-sunbird/sunbird-devops.git + + + + + ${public_repo_branch} + + + false + + + + true + false + + 0 + false + + + + pipelines/upload/docker/Jenkinsfile + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/Taxonomy/config.xml b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/Taxonomy/config.xml new file mode 100644 index 0000000000..22173d79ee --- /dev/null +++ b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/Taxonomy/config.xml @@ -0,0 +1,108 @@ + + + + + hudson.model.ParametersDefinitionProperty + com.sonyericsson.rebuild.RebuildSettings + + + + + false + + + + -1 + 10 + -1 + 1 + + + + + false + false + + + + + absolute_job_path + <font color=dimgray size=2><b>Do not change this value! The metadata.json will be copied from this job.</b></font> + Build/Core/Taxonomy + false + + + image_tag + <font color=darkgreen size=2><b>OPTIONAL: Specify the tag to upload a specific image version to the container registry.</b></font> + + false + + + artifact_source + <font color=dimgray size=2><b> +ArtifactRepo - Push the docker image to container registry. +</b></font> + + + ArtifactRepo + + + + + + + 0 + 0 + + false + project + false + + + + + + + + /Build/Core/Taxonomy + + SUCCESS + 0 + BLUE + true + + + + + + + + 2 + + + https://github.com/project-sunbird/sunbird-devops.git + + + + + ${public_repo_branch} + + + false + + + + true + false + + 0 + false + + + + pipelines/upload/docker/Jenkinsfile + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/Telemetry/config.xml b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/Telemetry/config.xml index 9bb6a0028c..8364282076 100644 --- a/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/Telemetry/config.xml +++ b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/Telemetry/config.xml @@ -1,26 +1,25 @@ - - + - + hudson.model.ParametersDefinitionProperty com.sonyericsson.rebuild.RebuildSettings - + false -1 - -1 + 10 -1 - 5 + 1 - + false false @@ -35,7 +34,7 @@ image_tag <font color=darkgreen size=2><b>OPTIONAL: Specify the tag to upload a specific image version to the container registry.</b></font> - + false @@ -51,19 +50,20 @@ ArtifactRepo - Push the docker image to container registry. - + 0 0 false project false - + + - + /Build/Core/Telemetry SUCCESS @@ -75,8 +75,8 @@ ArtifactRepo - Push the docker image to container registry. - - + + 2 @@ -94,7 +94,7 @@ ArtifactRepo - Push the docker image to container registry. true false - + 1 false @@ -105,4 +105,4 @@ ArtifactRepo - Push the docker image to container registry. false - + \ No newline at end of file diff --git a/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/UserOrg/config.xml b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/UserOrg/config.xml index 26c03bc496..103b8d979e 100644 --- a/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/UserOrg/config.xml +++ b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/UserOrg/config.xml @@ -1,5 +1,4 @@ - - + @@ -8,19 +7,19 @@ - + false -1 - -1 + 10 -1 - 5 + 1 - + false false @@ -35,7 +34,7 @@ image_tag <font color=darkgreen size=2><b>OPTIONAL: Specify the tag to upload a specific image version to the container registry.</b></font> - + false @@ -51,19 +50,20 @@ ArtifactRepo - Push the docker image to container registry. - + 0 0 false project false - + + - + /Build/Core/UserOrg SUCCESS @@ -75,8 +75,8 @@ ArtifactRepo - Push the docker image to container registry. - - + + 2 @@ -94,7 +94,7 @@ ArtifactRepo - Push the docker image to container registry. true false - + 0 false diff --git a/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/Yarn/config.xml b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/Yarn/config.xml index 8469565882..b235988e34 100644 --- a/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/Yarn/config.xml +++ b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Core/jobs/Yarn/config.xml @@ -1,5 +1,4 @@ - - + @@ -8,19 +7,19 @@ - + false -1 - -1 + 10 -1 - 5 + 1 - + false false @@ -51,19 +50,20 @@ ArtifactRepo - Upload and keep a copy of the artifact in Jenkins, JenkinsJob - J - + 0 0 false project false - + + - + /Build/Core/Yarn SUCCESS @@ -75,8 +75,8 @@ ArtifactRepo - Upload and keep a copy of the artifact in Jenkins, JenkinsJob - J - - + + 2 @@ -94,7 +94,7 @@ ArtifactRepo - Upload and keep a copy of the artifact in Jenkins, JenkinsJob - J true false - + 0 false diff --git a/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/DataPipeline/config.xml b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/DataPipeline/config.xml index ca27afff70..92618cba96 100644 --- a/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/DataPipeline/config.xml +++ b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/DataPipeline/config.xml @@ -1,12 +1,12 @@ - + - + - - + + diff --git a/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/DataPipeline/jobs/AdhocScripts/config.xml b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/DataPipeline/jobs/AdhocScripts/config.xml new file mode 100644 index 0000000000..9a042704ae --- /dev/null +++ b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/DataPipeline/jobs/AdhocScripts/config.xml @@ -0,0 +1,108 @@ + + + + + hudson.model.ParametersDefinitionProperty + com.sonyericsson.rebuild.RebuildSettings + + + + + false + + + + -1 + 10 + -1 + 1 + + + + + false + false + + + + + absolute_job_path + <font color=dimgray size=2><b>Do not change this value! The metadata.json will be copied from this job.</b></font> + Build/DataPipeline/AdhocScripts + false + + + build_number + <font color=darkgreen size=2><b>OPTIONAL: Specify the build job number to upload / copy the artifact built in that job.</b></font> + lastSuccessfulBuild + false + + + artifact_source + <font color=dimgray size=2><b> +ArtifactRepo - Upload and keep a copy of the artifact in Jenkins, JenkinsJob - Just keep a copy of the artifact in Jenkins.</b></font> + + + ArtifactRepo + JenkinsJob + + + + + + + 0 + 0 + + false + project + false + + + + + + + + /Build/DataPipeline/AdhocScripts + + SUCCESS + 0 + BLUE + true + + + + + + + + 2 + + + https://github.com/project-sunbird/sunbird-data-pipeline.git + + + + + ${public_repo_branch} + + + false + + + + true + false + + 1 + false + + + + pipelines/upload/Jenkinsfile + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/DataPipeline/jobs/Analytics/config.xml b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/DataPipeline/jobs/Analytics/config.xml index 7010abb55e..b4458fb7cd 100644 --- a/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/DataPipeline/jobs/Analytics/config.xml +++ b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/DataPipeline/jobs/Analytics/config.xml @@ -1,5 +1,4 @@ - - + @@ -8,15 +7,15 @@ - + false -1 - -1 + 10 -1 - 5 + 1 @@ -51,19 +50,20 @@ ArtifactRepo - Upload and keep a copy of the artifact in Jenkins, JenkinsJob - J - + 0 0 false project false - + + - + /Build/DataPipeline/Analytics SUCCESS @@ -75,8 +75,8 @@ ArtifactRepo - Upload and keep a copy of the artifact in Jenkins, JenkinsJob - J - - + + 2 @@ -94,7 +94,7 @@ ArtifactRepo - Upload and keep a copy of the artifact in Jenkins, JenkinsJob - J true false - + 1 false diff --git a/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/DataPipeline/jobs/AnalyticsCore/config.xml b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/DataPipeline/jobs/AnalyticsCore/config.xml new file mode 100644 index 0000000000..6de1a96449 --- /dev/null +++ b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/DataPipeline/jobs/AnalyticsCore/config.xml @@ -0,0 +1,108 @@ + + + + + hudson.model.ParametersDefinitionProperty + com.sonyericsson.rebuild.RebuildSettings + + + + + false + + + + -1 + 10 + -1 + 1 + + + + + false + false + + + + + absolute_job_path + <font color=dimgray size=2><b>Do not change this value! The metadata.json will be copied from this job.</b></font> + Build/DataPipeline/AnalyticsCore + false + + + build_number + <font color=darkgreen size=2><b>OPTIONAL: Specify the build job number to upload / copy the artifact built in that job.</b></font> + lastSuccessfulBuild + false + + + artifact_source + <font color=dimgray size=2><b> +ArtifactRepo - Upload and keep a copy of the artifact in Jenkins, JenkinsJob - Just keep a copy of the artifact in Jenkins.</b></font> + + + ArtifactRepo + JenkinsJob + + + + + + + 0 + 0 + + false + project + false + + + + + + + + /Build/DataPipeline/AnalyticsCore + + SUCCESS + 0 + BLUE + true + + + + + + + + 2 + + + https://github.com/project-sunbird/sunbird-data-pipeline.git + + + + + ${public_repo_branch} + + + false + + + + true + false + + 1 + false + + + + pipelines/upload/Jenkinsfile + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/DataPipeline/jobs/AnalyticsService/config.xml b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/DataPipeline/jobs/AnalyticsService/config.xml new file mode 100644 index 0000000000..7f16a721f7 --- /dev/null +++ b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/DataPipeline/jobs/AnalyticsService/config.xml @@ -0,0 +1,108 @@ + + + + + hudson.model.ParametersDefinitionProperty + com.sonyericsson.rebuild.RebuildSettings + + + + + false + + + + -1 + 10 + -1 + 1 + + + + + false + false + + + + + absolute_job_path + <font color=dimgray size=2><b>Do not change this value! The metadata.json will be copied from this job.</b></font> + Build/DataPipeline/AnalyticsService + false + + + build_number + <font color=darkgreen size=2><b>OPTIONAL: Specify the build job number to upload / copy the artifact built in that job.</b></font> + lastSuccessfulBuild + false + + + artifact_source + <font color=dimgray size=2><b> +ArtifactRepo - Upload and keep a copy of the artifact in Jenkins, JenkinsJob - Just keep a copy of the artifact in Jenkins.</b></font> + + + ArtifactRepo + JenkinsJob + + + + + + + 0 + 0 + + false + project + false + + + + + + + + /Build/DataPipeline/AnalyticsService + + SUCCESS + 0 + BLUE + true + + + + + + + + 2 + + + https://github.com/project-sunbird/sunbird-data-pipeline.git + + + + + ${public_repo_branch} + + + false + + + + true + false + + 1 + false + + + + pipelines/upload/Jenkinsfile + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/DataPipeline/jobs/ApiModule/config.xml b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/DataPipeline/jobs/ApiModule/config.xml index 2f3f7f3cd0..82bdc7efcb 100644 --- a/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/DataPipeline/jobs/ApiModule/config.xml +++ b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/DataPipeline/jobs/ApiModule/config.xml @@ -1,5 +1,4 @@ - - + @@ -8,15 +7,15 @@ - + false -1 - -1 + 10 -1 - 5 + 1 @@ -35,7 +34,7 @@ image_tag <font color=darkgreen size=2><b>OPTIONAL: Specify the tag to upload a specific image version to the container registry.</b></font> - + false @@ -51,20 +50,21 @@ ArtifactRepo - Push the docker image to container registry. - + 0 0 false project false - + + - - Build/DataPipeline/ApiModule + + /Build/DataPipeline/ApiModule SUCCESS 0 @@ -75,12 +75,12 @@ ArtifactRepo - Push the docker image to container registry. - - + + 2 - https://github.com/project-sunbird/sunbird-devops.git + https://github.com/project-sunbird/sunbird-data-pipeline.git @@ -94,7 +94,7 @@ ArtifactRepo - Push the docker image to container registry. true false - + 1 false diff --git a/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/DataPipeline/jobs/CoreDataProducts/config.xml b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/DataPipeline/jobs/CoreDataProducts/config.xml new file mode 100644 index 0000000000..f93395f5e0 --- /dev/null +++ b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/DataPipeline/jobs/CoreDataProducts/config.xml @@ -0,0 +1,108 @@ + + + + + hudson.model.ParametersDefinitionProperty + com.sonyericsson.rebuild.RebuildSettings + + + + + false + + + + -1 + 10 + -1 + 1 + + + + + false + false + + + + + absolute_job_path + <font color=dimgray size=2><b>Do not change this value! The metadata.json will be copied from this job.</b></font> + Build/DataPipeline/CoreDataProducts + false + + + build_number + <font color=darkgreen size=2><b>OPTIONAL: Specify the build job number to upload / copy the artifact built in that job.</b></font> + lastSuccessfulBuild + false + + + artifact_source + <font color=dimgray size=2><b> +ArtifactRepo - Upload and keep a copy of the artifact in Jenkins, JenkinsJob - Just keep a copy of the artifact in Jenkins.</b></font> + + + ArtifactRepo + JenkinsJob + + + + + + + 0 + 0 + + false + project + false + + + + + + + + /Build/DataPipeline/CoreDataProducts + + SUCCESS + 0 + BLUE + true + + + + + + + + 2 + + + https://github.com/project-sunbird/sunbird-data-pipeline.git + + + + + ${public_repo_branch} + + + false + + + + true + false + + 1 + false + + + + pipelines/upload/Jenkinsfile + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/DataPipeline/jobs/DataPipeline/config.xml b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/DataPipeline/jobs/DataPipeline/config.xml index d3a16f329a..e23abe6fcb 100644 --- a/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/DataPipeline/jobs/DataPipeline/config.xml +++ b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/DataPipeline/jobs/DataPipeline/config.xml @@ -1,5 +1,4 @@ - - + @@ -8,15 +7,15 @@ - + false -1 - -1 + 10 -1 - 5 + 1 @@ -51,19 +50,20 @@ ArtifactRepo - Upload and keep a copy of the artifact in Jenkins, JenkinsJob - J - + 0 0 false project false - + + - + /Build/DataPipeline/DataPipeline SUCCESS @@ -75,8 +75,8 @@ ArtifactRepo - Upload and keep a copy of the artifact in Jenkins, JenkinsJob - J - - + + 2 @@ -94,7 +94,7 @@ ArtifactRepo - Upload and keep a copy of the artifact in Jenkins, JenkinsJob - J true false - + 1 false diff --git a/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/DataPipeline/jobs/DataReplay/config.xml b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/DataPipeline/jobs/DataReplay/config.xml new file mode 100644 index 0000000000..fa45925735 --- /dev/null +++ b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/DataPipeline/jobs/DataReplay/config.xml @@ -0,0 +1,108 @@ + + + + + hudson.model.ParametersDefinitionProperty + com.sonyericsson.rebuild.RebuildSettings + + + + + false + + + + -1 + 10 + -1 + 1 + + + + + false + false + + + + + absolute_job_path + <font color=dimgray size=2><b>Do not change this value! The metadata.json will be copied from this job.</b></font> + Build/DataPipeline/DataReplay + false + + + build_number + <font color=darkgreen size=2><b>OPTIONAL: Specify the build job number to upload / copy the artifact built in that job.</b></font> + lastSuccessfulBuild + false + + + artifact_source + <font color=dimgray size=2><b> +ArtifactRepo - Upload and keep a copy of the artifact in Jenkins, JenkinsJob - Just keep a copy of the artifact in Jenkins.</b></font> + + + ArtifactRepo + JenkinsJob + + + + + + + 0 + 0 + + false + project + false + + + + + + + + /Build/DataPipeline/DataReplay + + SUCCESS + 0 + BLUE + true + + + + + + + + 2 + + + https://github.com/project-sunbird/sunbird-data-pipeline.git + + + + + ${public_repo_branch} + + + false + + + + true + false + + 1 + false + + + + pipelines/upload/Jenkinsfile + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/DataPipeline/jobs/ETLJobs/config.xml b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/DataPipeline/jobs/ETLJobs/config.xml index 309207380b..bd031ec623 100644 --- a/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/DataPipeline/jobs/ETLJobs/config.xml +++ b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/DataPipeline/jobs/ETLJobs/config.xml @@ -1,5 +1,4 @@ - - + @@ -8,15 +7,15 @@ - + false -1 - -1 + 10 -1 - 5 + 1 @@ -51,19 +50,20 @@ ArtifactRepo - Upload and keep a copy of the artifact in Jenkins, JenkinsJob - J - + 0 0 false project false - + + - + /Build/DataPipeline/ETLJobs SUCCESS @@ -75,8 +75,8 @@ ArtifactRepo - Upload and keep a copy of the artifact in Jenkins, JenkinsJob - J - - + + 2 @@ -94,7 +94,7 @@ ArtifactRepo - Upload and keep a copy of the artifact in Jenkins, JenkinsJob - J true false - + 1 false diff --git a/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/DataPipeline/jobs/EdDataProducts/config.xml b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/DataPipeline/jobs/EdDataProducts/config.xml new file mode 100644 index 0000000000..6e67c63781 --- /dev/null +++ b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/DataPipeline/jobs/EdDataProducts/config.xml @@ -0,0 +1,108 @@ + + + + + hudson.model.ParametersDefinitionProperty + com.sonyericsson.rebuild.RebuildSettings + + + + + false + + + + -1 + 10 + -1 + 1 + + + + + false + false + + + + + absolute_job_path + <font color=dimgray size=2><b>Do not change this value! The metadata.json will be copied from this job.</b></font> + Build/DataPipeline/EdDataProducts + false + + + build_number + <font color=darkgreen size=2><b>OPTIONAL: Specify the build job number to upload / copy the artifact built in that job.</b></font> + lastSuccessfulBuild + false + + + artifact_source + <font color=dimgray size=2><b> +ArtifactRepo - Upload and keep a copy of the artifact in Jenkins, JenkinsJob - Just keep a copy of the artifact in Jenkins.</b></font> + + + ArtifactRepo + JenkinsJob + + + + + + + 0 + 0 + + false + project + false + + + + + + + + /Build/DataPipeline/EdDataProducts + + SUCCESS + 0 + BLUE + true + + + + + + + + 2 + + + https://github.com/project-sunbird/sunbird-data-pipeline.git + + + + + ${public_repo_branch} + + + false + + + + true + false + + 1 + false + + + + pipelines/upload/Jenkinsfile + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/DataPipeline/jobs/FlinkPipelineJobs/config.xml b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/DataPipeline/jobs/FlinkPipelineJobs/config.xml new file mode 100644 index 0000000000..d05493d86c --- /dev/null +++ b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/DataPipeline/jobs/FlinkPipelineJobs/config.xml @@ -0,0 +1,108 @@ + + + + + hudson.model.ParametersDefinitionProperty + com.sonyericsson.rebuild.RebuildSettings + + + + + false + + + + -1 + 10 + -1 + 1 + + + + + false + false + + + + + absolute_job_path + <font color=dimgray size=2><b>Do not change this value! The metadata.json will be copied from this job.</b></font> + Build/DataPipeline/FlinkPipelineJobs + false + + + image_tag + <font color=darkgreen size=2><b>OPTIONAL: Specify the tag to upload a specific image version to the container registry.</b></font> + + false + + + artifact_source + <font color=dimgray size=2><b> +ArtifactRepo - Push the docker image to container registry. +</b></font> + + + ArtifactRepo + + + + + + + 0 + 0 + + false + project + false + + + + + + + + Build/DataPipeline/FlinkPipelineJobs + + SUCCESS + 0 + BLUE + true + + + + + + + + 2 + + + https://github.com/project-sunbird/sunbird-data-pipeline.git + + + + + ${public_repo_branch} + + + false + + + + true + false + + 0 + false + + + + kubernetes/pipelines/upload/Jenkinsfile + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/DataPipeline/jobs/MLWorkbench/config.xml b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/DataPipeline/jobs/MLWorkbench/config.xml new file mode 100644 index 0000000000..953421f039 --- /dev/null +++ b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/DataPipeline/jobs/MLWorkbench/config.xml @@ -0,0 +1,108 @@ + + + + + hudson.model.ParametersDefinitionProperty + com.sonyericsson.rebuild.RebuildSettings + + + + + false + + + + -1 + 10 + -1 + 1 + + + + + false + false + + + + + absolute_job_path + <font color=black size=2><b>Do not change this value! The metadata.json will be copied from this job.</b></font> + /Build/DataPipeline/ml-workbench + false + + + image_tag + <font color=darkgreen size=2><b>OPTIONAL: Specify the tag to upload a specific image version to the container registry.</b></font> + + false + + + artifact_source + <font color=black size=2><b> +ArtifactRepo - Push the docker image to container registry. +</b></font> + + + ArtifactRepo + + + + + + + 0 + 0 + + false + project + false + + + + + + + + /Build/DataPipeline/MLWorkbench + + SUCCESS + 0 + BLUE + true + + + + + + + + 2 + + + https://github.com/project-sunbird/sunbird-data-pipeline.git + + + + + ${public_repo_branch} + + + false + + + + true + false + + 0 + false + + + + pipelines/upload/docker/Jenkinsfile + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/DataPipeline/jobs/Secor/config.xml b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/DataPipeline/jobs/Secor/config.xml index 7a140ec413..3a215e2943 100644 --- a/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/DataPipeline/jobs/Secor/config.xml +++ b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/DataPipeline/jobs/Secor/config.xml @@ -1,5 +1,4 @@ - - + @@ -8,15 +7,15 @@ - + false -1 - -1 + 10 -1 - 5 + 1 @@ -51,19 +50,20 @@ ArtifactRepo - Upload and keep a copy of the artifact in Jenkins, JenkinsJob - J - + 0 0 false project false - + + - + /Build/DataPipeline/Secor SUCCESS @@ -75,8 +75,8 @@ ArtifactRepo - Upload and keep a copy of the artifact in Jenkins, JenkinsJob - J - - + + 2 @@ -94,7 +94,7 @@ ArtifactRepo - Upload and keep a copy of the artifact in Jenkins, JenkinsJob - J true false - + 1 false diff --git a/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/KnowledgePlatform/jobs/CassandraTrigger/config.xml b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/KnowledgePlatform/jobs/CassandraTrigger/config.xml index b2b55dbb54..f954ac1cbe 100644 --- a/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/KnowledgePlatform/jobs/CassandraTrigger/config.xml +++ b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/KnowledgePlatform/jobs/CassandraTrigger/config.xml @@ -1,5 +1,4 @@ - - + @@ -8,19 +7,19 @@ - + false -1 - -1 + 10 -1 - 5 + 1 - + false false @@ -51,19 +50,20 @@ ArtifactRepo - Upload and keep a copy of the artifact in Jenkins, JenkinsJob - J - + 0 0 false project false - + + - + /Build/KnowledgePlatform/CassandraTrigger SUCCESS @@ -75,8 +75,8 @@ ArtifactRepo - Upload and keep a copy of the artifact in Jenkins, JenkinsJob - J - - + + 2 @@ -94,7 +94,7 @@ ArtifactRepo - Upload and keep a copy of the artifact in Jenkins, JenkinsJob - J true false - + 1 false diff --git a/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/KnowledgePlatform/jobs/Dial/config.xml b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/KnowledgePlatform/jobs/Dial/config.xml new file mode 100644 index 0000000000..b3ae96700e --- /dev/null +++ b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/KnowledgePlatform/jobs/Dial/config.xml @@ -0,0 +1,108 @@ + + + + + hudson.model.ParametersDefinitionProperty + com.sonyericsson.rebuild.RebuildSettings + + + + + false + + + + -1 + 10 + -1 + 1 + + + + + false + false + + + + + absolute_job_path + <font color=dimgray size=2><b>Do not change this value! The metadata.json will be copied from this job.</b></font> + Build/KnowledgePlatform/Dial + false + + + build_number + <font color=darkgreen size=2><b>OPTIONAL: Specify the build job number to upload / copy the artifact built in that job.</b></font> + lastSuccessfulBuild + false + + + artifact_source + <font color=dimgray size=2><b> +ArtifactRepo - Upload and keep a copy of the artifact in Jenkins, JenkinsJob - Just keep a copy of the artifact in Jenkins.</b></font> + + + ArtifactRepo + JenkinsJob + + + + + + + 0 + 0 + + false + project + false + + + + + + + + /Build/KnowledgePlatform/Dial + + SUCCESS + 0 + BLUE + true + + + + + + + + 2 + + + https://github.com/project-sunbird/sunbird-learning-platform.git + + + + + ${public_repo_branch} + + + false + + + + true + false + + 1 + false + + + + pipelines/upload/Jenkinsfile + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/KnowledgePlatform/jobs/FlinkJobs/config.xml b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/KnowledgePlatform/jobs/FlinkJobs/config.xml new file mode 100644 index 0000000000..4742bdefff --- /dev/null +++ b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/KnowledgePlatform/jobs/FlinkJobs/config.xml @@ -0,0 +1,108 @@ + + + + + hudson.model.ParametersDefinitionProperty + com.sonyericsson.rebuild.RebuildSettings + + + + + false + + + + -1 + 10 + -1 + 1 + + + + + false + false + + + + + absolute_job_path + <font color=dimgray size=2><b>Do not change this value! The metadata.json will be copied from this job.</b></font> + Build/KnowledgePlatform/FlinkJobs + false + + + image_tag + <font color=darkgreen size=2><b>OPTIONAL: Specify the tag to upload a specific image version to the container registry.</b></font> + + false + + + artifact_source + <font color=dimgray size=2><b> +ArtifactRepo - Push the docker image to container registry. +</b></font> + + + ArtifactRepo + + + + + + + 0 + 0 + + false + project + false + + + + + + + + Build/KnowledgePlatform/FlinkJobs + + SUCCESS + 0 + BLUE + true + + + + + + + + 2 + + + https://github.com/project-sunbird/sunbird-learning-platform.git + + + + + ${public_repo_branch} + + + false + + + + true + false + + 0 + false + + + + kubernetes/pipelines/upload/Jenkinsfile + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/KnowledgePlatform/jobs/KnowledgePlatform/config.xml b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/KnowledgePlatform/jobs/KnowledgePlatform/config.xml index 5444de21f6..8f97978001 100644 --- a/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/KnowledgePlatform/jobs/KnowledgePlatform/config.xml +++ b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/KnowledgePlatform/jobs/KnowledgePlatform/config.xml @@ -1,22 +1,21 @@ - - + - + hudson.model.ParametersDefinitionProperty com.sonyericsson.rebuild.RebuildSettings - + false -1 - -1 + 10 -1 - 5 + 1 @@ -51,19 +50,20 @@ ArtifactRepo - Upload and keep a copy of the artifact in Jenkins, JenkinsJob - J - + 0 0 false project false - + + - + /Build/KnowledgePlatform/KnowledgePlatform SUCCESS @@ -75,8 +75,8 @@ ArtifactRepo - Upload and keep a copy of the artifact in Jenkins, JenkinsJob - J - - + + 2 @@ -94,7 +94,7 @@ ArtifactRepo - Upload and keep a copy of the artifact in Jenkins, JenkinsJob - J true false - + 1 false diff --git a/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/KnowledgePlatform/jobs/Neo4j/config.xml b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/KnowledgePlatform/jobs/Neo4j/config.xml index e3162085bb..fd7ef60977 100644 --- a/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/KnowledgePlatform/jobs/Neo4j/config.xml +++ b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/KnowledgePlatform/jobs/Neo4j/config.xml @@ -1,26 +1,25 @@ - - + - + hudson.model.ParametersDefinitionProperty com.sonyericsson.rebuild.RebuildSettings - + false -1 - -1 + 10 -1 - 5 + 1 - + false false @@ -51,19 +50,20 @@ ArtifactRepo - Upload and keep a copy of the artifact in Jenkins, JenkinsJob - J - + 0 0 false project false - + + - + /Build/KnowledgePlatform/Neo4j SUCCESS @@ -75,8 +75,8 @@ ArtifactRepo - Upload and keep a copy of the artifact in Jenkins, JenkinsJob - J - - + + 2 @@ -94,7 +94,7 @@ ArtifactRepo - Upload and keep a copy of the artifact in Jenkins, JenkinsJob - J true false - + 1 false @@ -105,4 +105,4 @@ ArtifactRepo - Upload and keep a copy of the artifact in Jenkins, JenkinsJob - J false - + \ No newline at end of file diff --git a/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/KnowledgePlatform/jobs/SyncTool/config.xml b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/KnowledgePlatform/jobs/SyncTool/config.xml index 02ab22706e..6a9af8f80c 100644 --- a/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/KnowledgePlatform/jobs/SyncTool/config.xml +++ b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/KnowledgePlatform/jobs/SyncTool/config.xml @@ -1,5 +1,4 @@ - - + @@ -8,15 +7,15 @@ - + false -1 - -1 + 10 -1 - 5 + 1 @@ -51,19 +50,20 @@ ArtifactRepo - Upload and keep a copy of the artifact in Jenkins, JenkinsJob - J - + 0 0 false project false - + + - + /Build/KnowledgePlatform/SyncTool SUCCESS @@ -75,8 +75,8 @@ ArtifactRepo - Upload and keep a copy of the artifact in Jenkins, JenkinsJob - J - - + + 2 @@ -94,7 +94,7 @@ ArtifactRepo - Upload and keep a copy of the artifact in Jenkins, JenkinsJob - J true false - + 1 false diff --git a/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/KnowledgePlatform/jobs/Yarn/config.xml b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/KnowledgePlatform/jobs/Yarn/config.xml index 2d60345419..4d6a32c856 100644 --- a/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/KnowledgePlatform/jobs/Yarn/config.xml +++ b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/KnowledgePlatform/jobs/Yarn/config.xml @@ -1,22 +1,21 @@ - - + - + hudson.model.ParametersDefinitionProperty com.sonyericsson.rebuild.RebuildSettings - + false -1 - -1 + 10 -1 - 5 + 1 @@ -51,19 +50,20 @@ ArtifactRepo - Upload and keep a copy of the artifact in Jenkins, JenkinsJob - J - + 0 0 false project false - + + - + /Build/KnowledgePlatform/Yarn SUCCESS @@ -75,8 +75,8 @@ ArtifactRepo - Upload and keep a copy of the artifact in Jenkins, JenkinsJob - J - - + + 2 @@ -94,7 +94,7 @@ ArtifactRepo - Upload and keep a copy of the artifact in Jenkins, JenkinsJob - J true false - + 1 false diff --git a/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Plugins/jobs/CollectionEditor/config.xml b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Plugins/jobs/CollectionEditor/config.xml index 3fe0057074..969a059c99 100644 --- a/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Plugins/jobs/CollectionEditor/config.xml +++ b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Plugins/jobs/CollectionEditor/config.xml @@ -1,19 +1,18 @@ - - + - + false -1 - -1 + 10 -1 - -1 + 1 - + false false @@ -44,21 +43,21 @@ ArtifactRepo - Upload and keep a copy of the artifact in Jenkins, JenkinsJob - J - + 0 0 false project false - - 1 + + - - Build/Plugins/CollectionEditor + + /Build/Plugins/CollectionEditor SUCCESS 0 @@ -69,8 +68,8 @@ ArtifactRepo - Upload and keep a copy of the artifact in Jenkins, JenkinsJob - J - - + + 2 diff --git a/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Plugins/jobs/ContentEditor/config.xml b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Plugins/jobs/ContentEditor/config.xml index 9b43d7d8fa..9215d10244 100644 --- a/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Plugins/jobs/ContentEditor/config.xml +++ b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Plugins/jobs/ContentEditor/config.xml @@ -1,19 +1,18 @@ - - + - + false -1 - -1 + 10 -1 - -1 + 1 - + false false @@ -44,20 +43,21 @@ ArtifactRepo - Upload and keep a copy of the artifact in Jenkins, JenkinsJob - J - + 0 0 false project false - + + - - Build/Plugins/ContentEditor + + /Build/Plugins/ContentEditor SUCCESS 0 @@ -68,8 +68,8 @@ ArtifactRepo - Upload and keep a copy of the artifact in Jenkins, JenkinsJob - J - - + + 2 diff --git a/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Plugins/jobs/ContentPlayer/config.xml b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Plugins/jobs/ContentPlayer/config.xml index 6dcf3f76b4..4f8edb89fa 100644 --- a/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Plugins/jobs/ContentPlayer/config.xml +++ b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Plugins/jobs/ContentPlayer/config.xml @@ -1,19 +1,18 @@ - - + - + false -1 - -1 + 10 -1 - -1 + 1 - + false false @@ -44,20 +43,21 @@ ArtifactRepo - Upload and keep a copy of the artifact in Jenkins, JenkinsJob - J - + 0 0 false project false - + + - - Build/Plugins/ContentPlayer + + /Build/Plugins/ContentPlayer SUCCESS 0 @@ -68,8 +68,8 @@ ArtifactRepo - Upload and keep a copy of the artifact in Jenkins, JenkinsJob - J - - + + 2 diff --git a/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Plugins/jobs/ContentPlugins/config.xml b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Plugins/jobs/ContentPlugins/config.xml index 0d3a13392b..253aeb9d55 100644 --- a/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Plugins/jobs/ContentPlugins/config.xml +++ b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Plugins/jobs/ContentPlugins/config.xml @@ -1,19 +1,18 @@ - - + - + false -1 - -1 + 10 -1 - -1 + 1 - + false false @@ -44,20 +43,21 @@ ArtifactRepo - Upload and keep a copy of the artifact in Jenkins, JenkinsJob - J - + 0 0 false project false - + + - - Build/Plugins/ContentPlugins + + /Build/Plugins/ContentPlugins SUCCESS 0 @@ -68,8 +68,8 @@ ArtifactRepo - Upload and keep a copy of the artifact in Jenkins, JenkinsJob - J - - + + 2 diff --git a/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Plugins/jobs/GenericEditor/config.xml b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Plugins/jobs/GenericEditor/config.xml index 4f27344098..569336322c 100644 --- a/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Plugins/jobs/GenericEditor/config.xml +++ b/deploy/jenkins/jobs/ArtifactUpload/jobs/dev/jobs/Plugins/jobs/GenericEditor/config.xml @@ -1,19 +1,18 @@ - - + - + false -1 - -1 + 10 -1 - -1 + 1 - + false false @@ -44,20 +43,21 @@ ArtifactRepo - Upload and keep a copy of the artifact in Jenkins, JenkinsJob - J - + 0 0 false project false - + + - - Build/Plugins/GenericEditor + + /Build/Plugins/GenericEditor SUCCESS 0 @@ -68,8 +68,8 @@ ArtifactRepo - Upload and keep a copy of the artifact in Jenkins, JenkinsJob - J - - + + 2 @@ -90,4 +90,4 @@ ArtifactRepo - Upload and keep a copy of the artifact in Jenkins, JenkinsJob - J false - + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Build/config.xml b/deploy/jenkins/jobs/Build/config.xml index 6fe3ca0b64..e794546f97 100644 --- a/deploy/jenkins/jobs/Build/config.xml +++ b/deploy/jenkins/jobs/Build/config.xml @@ -1,13 +1,8 @@ - + - - - - - - + diff --git a/deploy/jenkins/jobs/Build/jobs/Core/config.xml b/deploy/jenkins/jobs/Build/jobs/Core/config.xml index ca27afff70..92618cba96 100644 --- a/deploy/jenkins/jobs/Build/jobs/Core/config.xml +++ b/deploy/jenkins/jobs/Build/jobs/Core/config.xml @@ -1,12 +1,12 @@ - + - + - - + + diff --git a/deploy/jenkins/jobs/Build/jobs/Core/jobs/APIManager/config.xml b/deploy/jenkins/jobs/Build/jobs/Core/jobs/APIManager/config.xml index 2ee272e189..e0d29e22d7 100644 --- a/deploy/jenkins/jobs/Build/jobs/Core/jobs/APIManager/config.xml +++ b/deploy/jenkins/jobs/Build/jobs/Core/jobs/APIManager/config.xml @@ -1,7 +1,6 @@ - - + - + false @@ -13,37 +12,41 @@ github_release_tag <font color=red size=2><b>CAUTION: If the value is blank, latest code will be built. Specify github tag name to build from a tag.</b></font> - + false - + 0 0 false project false - + + - - - true + + + 2 + + + https://github.com/project-sunbird/sunbird-devops.git + + + + + ${github_release_tag} + + + false + + + + images/kong/Jenkinsfile.build + false false diff --git a/deploy/jenkins/jobs/Build/jobs/Core/jobs/APIManagerEcho_Backup/config.xml b/deploy/jenkins/jobs/Build/jobs/Core/jobs/APIManagerEcho_Backup/config.xml new file mode 100644 index 0000000000..a441e6b66c --- /dev/null +++ b/deploy/jenkins/jobs/Build/jobs/Core/jobs/APIManagerEcho_Backup/config.xml @@ -0,0 +1,38 @@ + + + + + false + + + false + false + + + + false + project + false + + + + + + true + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Build/jobs/Core/jobs/AdminUtils/config.xml b/deploy/jenkins/jobs/Build/jobs/Core/jobs/AdminUtils/config.xml index 6c04d49872..a26017e13d 100644 --- a/deploy/jenkins/jobs/Build/jobs/Core/jobs/AdminUtils/config.xml +++ b/deploy/jenkins/jobs/Build/jobs/Core/jobs/AdminUtils/config.xml @@ -1,5 +1,4 @@ - - + @@ -8,51 +7,65 @@ - + false -1 - -1 + 10 -1 - 10 + 1 - + false false - + + + + github_release_tag + <font color=red size=2><b>CAUTION: If the value is blank, latest code will be built. Specify github tag name to build from a tag.</b></font> + + false + + + + 0 0 false project false - + + - - - true + + + 2 + + + https://github.com/project-sunbird/sunbird-apimanager-util.git + + + + + ${github_release_tag} + + + false + + + + Jenkinsfile + false false diff --git a/deploy/jenkins/jobs/Build/jobs/Core/jobs/Analytics/config.xml b/deploy/jenkins/jobs/Build/jobs/Core/jobs/Analytics/config.xml new file mode 100644 index 0000000000..1f6d5991a5 --- /dev/null +++ b/deploy/jenkins/jobs/Build/jobs/Core/jobs/Analytics/config.xml @@ -0,0 +1,79 @@ + + + + + hudson.model.ParametersDefinitionProperty + com.sonyericsson.rebuild.RebuildSettings + + + + + false + + + + -1 + 10 + -1 + 1 + + + + false + false + + + + + github_release_tag + <font color=red size=2><b>CAUTION: If the value is blank, latest code will be built. Specify github tag name to build from a tag.</b></font> + + false + + + + + 0 + 0 + + false + project + false + + + + + + + + + + 2 + + + https://github.com/project-sunbird/sunbird-analytics-service.git + + + + + ${github_release_tag} + + + false + + + + true + false + + 0 + false + + + + Jenkinsfile + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Build/jobs/Core/jobs/ApiManagerEcho/config.xml b/deploy/jenkins/jobs/Build/jobs/Core/jobs/ApiManagerEcho/config.xml new file mode 100644 index 0000000000..96d35d3ab4 --- /dev/null +++ b/deploy/jenkins/jobs/Build/jobs/Core/jobs/ApiManagerEcho/config.xml @@ -0,0 +1,73 @@ + + + + false + + + + -1 + 10 + -1 + 1 + + + + + false + false + + + + + github_release_tag + <font color=red size=2><b>CAUTION: If the value is blank, latest code will be built. Specify github tag name to build from a tag.</b></font> + + false + + + + + 0 + 0 + + false + project + false + + + + + + + + + + 2 + + + https://github.com/project-sunbird/sunbird-echo-service.git + + + + + ${github_release_tag} + + + false + + + + true + false + + 0 + false + + + + Jenkinsfile + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Build/jobs/Core/jobs/Assessment/config.xml b/deploy/jenkins/jobs/Build/jobs/Core/jobs/Assessment/config.xml index 43bed5c858..f23ff671d6 100644 --- a/deploy/jenkins/jobs/Build/jobs/Core/jobs/Assessment/config.xml +++ b/deploy/jenkins/jobs/Build/jobs/Core/jobs/Assessment/config.xml @@ -1,5 +1,4 @@ - - + @@ -8,15 +7,15 @@ - + false -1 - -1 + 10 -1 - 10 + 1 @@ -29,26 +28,27 @@ github_release_tag <font color=red size=2><b>CAUTION: If the value is blank, latest code will be built. Specify github tag name to build from a tag.</b></font> - + false - + 0 0 false project false - + + - - + + 2 @@ -66,7 +66,7 @@ true false - + 0 false diff --git a/deploy/jenkins/jobs/Build/jobs/Core/jobs/Badger/config.xml b/deploy/jenkins/jobs/Build/jobs/Core/jobs/Badger/config.xml index 145cdd44aa..5b20171528 100644 --- a/deploy/jenkins/jobs/Build/jobs/Core/jobs/Badger/config.xml +++ b/deploy/jenkins/jobs/Build/jobs/Core/jobs/Badger/config.xml @@ -1,5 +1,4 @@ - - + @@ -8,15 +7,15 @@ - + false -1 - -1 + 10 -1 - 10 + 1 @@ -29,44 +28,39 @@ github_release_tag <font color=red size=2><b>CAUTION: If the value is blank, latest code will be built. Specify github tag name to build from a tag.</b></font> - + false - + 0 0 false project false - - 1 + + - - - H/15 * * * * - false - - + - + true diff --git a/deploy/jenkins/jobs/Build/jobs/Core/jobs/Cassandra/config.xml b/deploy/jenkins/jobs/Build/jobs/Core/jobs/Cassandra/config.xml index c7470f6bfa..e93b6d0fbd 100644 --- a/deploy/jenkins/jobs/Build/jobs/Core/jobs/Cassandra/config.xml +++ b/deploy/jenkins/jobs/Build/jobs/Core/jobs/Cassandra/config.xml @@ -1,5 +1,4 @@ - - + @@ -8,15 +7,15 @@ - + false -1 - -1 + 10 -1 - 10 + 1 @@ -29,20 +28,21 @@ github_release_tag <font color=red size=2><b>CAUTION: If the value is blank, latest code will be built. Specify github tag name to build from a tag.</b></font> - + false - + 0 0 false project false - + + @@ -52,8 +52,8 @@ - - + + 2 @@ -71,7 +71,7 @@ true false - + 0 false diff --git a/deploy/jenkins/jobs/Build/jobs/Core/jobs/CassandraDecrypt/config.xml b/deploy/jenkins/jobs/Build/jobs/Core/jobs/CassandraDecrypt/config.xml index 3746907b3a..949257c004 100644 --- a/deploy/jenkins/jobs/Build/jobs/Core/jobs/CassandraDecrypt/config.xml +++ b/deploy/jenkins/jobs/Build/jobs/Core/jobs/CassandraDecrypt/config.xml @@ -1,5 +1,4 @@ - - + @@ -8,15 +7,15 @@ - + false -1 - -1 + 10 -1 - 10 + 1 @@ -29,31 +28,37 @@ github_release_tag <font color=red size=2><b>CAUTION: If the value is blank, latest code will be built. Specify github tag name to build from a tag.</b></font> - + false + + cassandra_jar_name + + + + groups-service-util-1.0-SNAPSHOT-jar-with-dependencies.jar + user-declaration-util-1.0-SNAPSHOT-jar-with-dependencies.jar + + + - + 0 0 false project false - + + - - - H/15 * * * * - false - - + - - + + 2 @@ -71,7 +76,7 @@ true false - + 0 false diff --git a/deploy/jenkins/jobs/Build/jobs/Core/jobs/CassandraStateValidated/config.xml b/deploy/jenkins/jobs/Build/jobs/Core/jobs/CassandraStateValidated/config.xml new file mode 100644 index 0000000000..4c4a7e1b00 --- /dev/null +++ b/deploy/jenkins/jobs/Build/jobs/Core/jobs/CassandraStateValidated/config.xml @@ -0,0 +1,80 @@ + + + + + + hudson.model.ParametersDefinitionProperty + com.sonyericsson.rebuild.RebuildSettings + + + + + false + + + + -1 + 10 + -1 + 1 + + + + + false + false + + + + + github_release_tag + <font color=red size=2><b>CAUTION: If the value is blank, latest code will be built. Specify github tag name to build from a tag.</b></font> + + false + + + + + 0 + 0 + + false + project + false + + + + + + + + + 2 + + + https://github.com/project-sunbird/sunbird-utils.git + + + + + ${github_release_tag} + + + false + + + + true + false + + 0 + false + + + + Jenkinsfile.stateValidated + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Build/jobs/Core/jobs/CassandraTrigger/config.xml b/deploy/jenkins/jobs/Build/jobs/Core/jobs/CassandraTrigger/config.xml index 2347b235cb..1c1e1a1ef4 100644 --- a/deploy/jenkins/jobs/Build/jobs/Core/jobs/CassandraTrigger/config.xml +++ b/deploy/jenkins/jobs/Build/jobs/Core/jobs/CassandraTrigger/config.xml @@ -14,9 +14,9 @@ -1 - -1 + 10 -1 - 10 + 1 diff --git a/deploy/jenkins/jobs/Build/jobs/Core/jobs/Cert/config.xml b/deploy/jenkins/jobs/Build/jobs/Core/jobs/Cert/config.xml index a867909a6f..74e5873c35 100644 --- a/deploy/jenkins/jobs/Build/jobs/Core/jobs/Cert/config.xml +++ b/deploy/jenkins/jobs/Build/jobs/Core/jobs/Cert/config.xml @@ -1,5 +1,4 @@ - - + @@ -8,15 +7,15 @@ - + false -1 - -1 + 10 -1 - 10 + 1 @@ -29,31 +28,27 @@ github_release_tag <font color=blue size=2><b>CAUTION: If the value is blank, latest code will be built. Specify github tag name to build from a tag.</b></font> - + false - + 0 0 false project false - + + - - - H/15 * * * * - false - - + - - + + 2 @@ -71,7 +66,7 @@ true false - + 0 false diff --git a/deploy/jenkins/jobs/Build/jobs/Core/jobs/CertRegistryService/config.xml b/deploy/jenkins/jobs/Build/jobs/Core/jobs/CertRegistryService/config.xml index bcd353ae7b..d226d54c01 100644 --- a/deploy/jenkins/jobs/Build/jobs/Core/jobs/CertRegistryService/config.xml +++ b/deploy/jenkins/jobs/Build/jobs/Core/jobs/CertRegistryService/config.xml @@ -1,5 +1,4 @@ - - + @@ -8,15 +7,15 @@ - + false -1 - -1 + 10 -1 - 10 + 1 @@ -29,31 +28,25 @@ github_release_tag <font color=blue size=2><b>CAUTION: If the value is blank, latest code will be built. Specify github tag name to build from a tag.</b></font> - + false - - 0 - 0 + false project false - + + - - - H/15 * * * * - false - - + - - + + 2 @@ -71,7 +64,7 @@ true false - + 0 false diff --git a/deploy/jenkins/jobs/Build/jobs/Core/jobs/CloudStorageSDK/config.xml b/deploy/jenkins/jobs/Build/jobs/Core/jobs/CloudStorageSDK/config.xml new file mode 100644 index 0000000000..8fc15e8756 --- /dev/null +++ b/deploy/jenkins/jobs/Build/jobs/Core/jobs/CloudStorageSDK/config.xml @@ -0,0 +1,84 @@ + + + + + + hudson.model.ParametersDefinitionProperty + com.sonyericsson.rebuild.RebuildSettings + + + + + false + + + + -1 + 10 + -1 + 1 + + + + + false + false + + + + + github_release_tag + <font color=red size=2><b>CAUTION: If the value is blank, latest code will be built. Specify github tag name to build from a tag.</b></font> + + false + + + + + 0 + 0 + + false + project + false + + + + + + H/15 * * * * + false + + + + + + 2 + + + https://github.com/project-sunbird/sunbird-cloud-storage-sdk.git + + + + + ${github_release_tag} + + + false + + + + true + false + + 0 + false + + + + Jenkinsfile + false + + + true + diff --git a/deploy/jenkins/jobs/Build/jobs/Core/jobs/Config/config.xml b/deploy/jenkins/jobs/Build/jobs/Core/jobs/Config/config.xml new file mode 100644 index 0000000000..842c70c411 --- /dev/null +++ b/deploy/jenkins/jobs/Build/jobs/Core/jobs/Config/config.xml @@ -0,0 +1,85 @@ + + + + + + hudson.model.ParametersDefinitionProperty + com.sonyericsson.rebuild.RebuildSettings + + + + + false + + + + -1 + 10 + -1 + 1 + + + + + false + false + + + + + github_release_tag + <font color=red size=2><b>CAUTION: If the value is blank, latest code will be built. Specify github tag name to build from a tag.</b></font> + + false + + + + + 0 + 0 + + false + project + false + + 1 + + + + + H/15 * * * * + false + + + + + + 2 + + + https://github.com/project-sunbird/sunbird-config.git + + + + + ${github_release_tag} + + + false + + + + true + false + + 0 + false + + + + Jenkinsfile + false + + + true + diff --git a/deploy/jenkins/jobs/Build/jobs/Core/jobs/Content/config.xml b/deploy/jenkins/jobs/Build/jobs/Core/jobs/Content/config.xml index 34533b223b..7def9cac2a 100644 --- a/deploy/jenkins/jobs/Build/jobs/Core/jobs/Content/config.xml +++ b/deploy/jenkins/jobs/Build/jobs/Core/jobs/Content/config.xml @@ -1,5 +1,4 @@ - - + @@ -8,15 +7,15 @@ - + false -1 - -1 + 10 -1 - 10 + 1 @@ -29,31 +28,27 @@ github_release_tag <font color=red size=2><b>CAUTION: If the value is blank, latest code will be built. Specify github tag name to build from a tag.</b></font> - + false - + 0 0 false project false - + + - - - 15 * * * * - false - - + - - + + 2 @@ -71,7 +66,7 @@ true false - + 0 false diff --git a/deploy/jenkins/jobs/Build/jobs/Core/jobs/EncService/config.xml b/deploy/jenkins/jobs/Build/jobs/Core/jobs/EncService/config.xml index 013e1a9f87..1113115faf 100644 --- a/deploy/jenkins/jobs/Build/jobs/Core/jobs/EncService/config.xml +++ b/deploy/jenkins/jobs/Build/jobs/Core/jobs/EncService/config.xml @@ -1,5 +1,4 @@ - - + @@ -8,15 +7,15 @@ - + false -1 - -1 + 10 -1 - 10 + 1 @@ -28,31 +27,25 @@ github_release_tag <font color=red size=2><b>CAUTION: If the value is blank, latest code will be built. Specify github tag name to build from a tag.</b></font> - + false - - 0 - 0 + false project false - + + - - - H/15 * * * * - false - - + - - + + 2 @@ -70,7 +63,7 @@ true false - + 0 false diff --git a/deploy/jenkins/jobs/Build/jobs/Core/jobs/Groups/config.xml b/deploy/jenkins/jobs/Build/jobs/Core/jobs/Groups/config.xml new file mode 100644 index 0000000000..aaf6e8d80e --- /dev/null +++ b/deploy/jenkins/jobs/Build/jobs/Core/jobs/Groups/config.xml @@ -0,0 +1,78 @@ + + + + + hudson.model.ParametersDefinitionProperty + com.sonyericsson.rebuild.RebuildSettings + + + + + false + + + + -1 + 10 + -1 + 1 + + + + + false + false + + + + + github_release_tag + <font color=red size=2><b>CAUTION: If the value is blank, latest code will be built. Specify github tag name to build from a tag.</b></font> + + false + + + + + + false + project + false + + + + + + + + + + 2 + + + https://github.com/project-sunbird/groups-service.git + + + + + ${github_release_tag} + + + false + + + + true + false + + 0 + false + + + + Jenkinsfile + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Build/jobs/Core/jobs/Hawkeye-superset/config.xml b/deploy/jenkins/jobs/Build/jobs/Core/jobs/Hawkeye-superset/config.xml new file mode 100644 index 0000000000..1f7728a619 --- /dev/null +++ b/deploy/jenkins/jobs/Build/jobs/Core/jobs/Hawkeye-superset/config.xml @@ -0,0 +1,78 @@ + + + + false + + + + -1 + 10 + -1 + 1 + + + + + false + false + + + + + github_release_tag + <font color=red size=2><b>CAUTION: If the value is blank, latest code will be built. Specify github tag name to build from a tag.</b></font> + + false + + + + + 0 + 0 + + false + project + false + + + + + + + H/15 * * * * + false + + + + + + + 2 + + + https://github.com/Sunbird-Ed/incubator-superset.git + + + + + ${github_release_tag} + + + false + + + + true + false + + 0 + false + + + + Jenkinsfile + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Build/jobs/Core/jobs/Keycloak/config.xml b/deploy/jenkins/jobs/Build/jobs/Core/jobs/Keycloak/config.xml index 75e3f824ef..c4f17ac8c7 100644 --- a/deploy/jenkins/jobs/Build/jobs/Core/jobs/Keycloak/config.xml +++ b/deploy/jenkins/jobs/Build/jobs/Core/jobs/Keycloak/config.xml @@ -1,13 +1,12 @@ - - + - + false -1 - -1 + 10 -1 1 @@ -22,20 +21,21 @@ github_release_tag <font color=red size=2><b>CAUTION: If the value is blank, latest code will be built. Specify github tag name to build from a tag.</b></font> - + false - + 0 0 false project false - + + @@ -45,8 +45,8 @@ - - + + 2 @@ -64,7 +64,7 @@ true false - + 1 false diff --git a/deploy/jenkins/jobs/Build/jobs/Core/jobs/KnowledgeMW/config.xml b/deploy/jenkins/jobs/Build/jobs/Core/jobs/KnowledgeMW/config.xml index 71e5de7bbe..edf3983a72 100644 --- a/deploy/jenkins/jobs/Build/jobs/Core/jobs/KnowledgeMW/config.xml +++ b/deploy/jenkins/jobs/Build/jobs/Core/jobs/KnowledgeMW/config.xml @@ -1,15 +1,14 @@ - - + - + false -1 - -1 + 10 -1 - 10 + 1 @@ -22,35 +21,29 @@ github_release_tag <font color=red size=2><b>CAUTION: If the value is blank, latest code will be built. Specify github tag name to build from a tag.</b></font> - + false - - 0 - 0 + false project false - + + - - - H/15 * * * * - false - - + - - + + 2 - https://github.com/project-sunbird/sunbird-content-service.git + https://github.com/project-sunbird/knowledge-mw-service.git @@ -64,7 +57,7 @@ true false - + 0 false diff --git a/deploy/jenkins/jobs/Build/jobs/Core/jobs/Learner/config.xml b/deploy/jenkins/jobs/Build/jobs/Core/jobs/Learner/config.xml index b8d0132a39..8d26ae1f1a 100644 --- a/deploy/jenkins/jobs/Build/jobs/Core/jobs/Learner/config.xml +++ b/deploy/jenkins/jobs/Build/jobs/Core/jobs/Learner/config.xml @@ -1,5 +1,4 @@ - - + @@ -8,15 +7,15 @@ - + false -1 - -1 + 10 -1 - 10 + 1 @@ -29,31 +28,27 @@ github_release_tag <font color=red size=2><b>CAUTION: If the value is blank, latest code will be built. Specify github tag name to build from a tag.</b></font> - + false - + 0 0 false project false - + + - - - H/15 * * * * - false - - + - - + + 2 @@ -71,7 +66,7 @@ true false - + 0 false diff --git a/deploy/jenkins/jobs/Build/jobs/Core/jobs/Lms/config.xml b/deploy/jenkins/jobs/Build/jobs/Core/jobs/Lms/config.xml index 417df3f39e..4aa49ef4da 100644 --- a/deploy/jenkins/jobs/Build/jobs/Core/jobs/Lms/config.xml +++ b/deploy/jenkins/jobs/Build/jobs/Core/jobs/Lms/config.xml @@ -1,5 +1,4 @@ - - + @@ -8,15 +7,15 @@ - + false -1 - -1 + 10 -1 - 10 + 1 @@ -29,30 +28,29 @@ github_release_tag <font color=red size=2><b>CAUTION: If the value is blank, latest code will be built. Specify github tag name to build from a tag.</b></font> - + false - - 0 - 0 + false project false - + + - - + + 2 - https://github.com/project-sunbird/sunbird-course-service + https://github.com/project-sunbird/sunbird-course-service.git @@ -66,7 +64,7 @@ true false - + 0 false diff --git a/deploy/jenkins/jobs/Build/jobs/Core/jobs/Nodebb/config.xml b/deploy/jenkins/jobs/Build/jobs/Core/jobs/Nodebb/config.xml new file mode 100644 index 0000000000..f02fabb463 --- /dev/null +++ b/deploy/jenkins/jobs/Build/jobs/Core/jobs/Nodebb/config.xml @@ -0,0 +1,79 @@ + + + + false + + + + -1 + 10 + -1 + 1 + + + + + false + false + + + + + github_release_tag + <font color=red size=2><b>CAUTION: If the value is blank, latest code will be built. Specify github tag name to build from a tag.</b></font> + + false + + + nodebb_branch + <font color=red size=2><b>CAUTION: If the value is blank, latest code will be built. Specify github tag name to build from a tag.</b></font> + + false + + + + + 0 + 0 + + false + project + false + + + + + + + + + + 2 + + + https://github.com/project-sunbird/sunbird-devops.git + + + + + ${github_release_tag} + + + false + + + + true + false + + 0 + false + + + + pipelines/build/nodebb/Jenkinsfile + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Build/jobs/Core/jobs/Notification/config.xml b/deploy/jenkins/jobs/Build/jobs/Core/jobs/Notification/config.xml index 511ab2d2eb..6116cd04f2 100644 --- a/deploy/jenkins/jobs/Build/jobs/Core/jobs/Notification/config.xml +++ b/deploy/jenkins/jobs/Build/jobs/Core/jobs/Notification/config.xml @@ -1,5 +1,4 @@ - - + @@ -8,15 +7,15 @@ - + false -1 - -1 + 10 -1 - 10 + 1 @@ -29,31 +28,25 @@ github_release_tag <font color=blue size=2><b>CAUTION: If the value is blank, latest code will be built. Specify github tag name to build from a tag.</b></font> - + false - - 0 - 0 + false project false - + + - - - H/15 * * * * - false - - + - - + + 2 @@ -71,7 +64,7 @@ true false - + 0 false diff --git a/deploy/jenkins/jobs/Build/jobs/Core/jobs/PlatformCoursesFunctionalTest/config.xml b/deploy/jenkins/jobs/Build/jobs/Core/jobs/PlatformCoursesFunctionalTest/config.xml new file mode 100644 index 0000000000..94dd96265c --- /dev/null +++ b/deploy/jenkins/jobs/Build/jobs/Core/jobs/PlatformCoursesFunctionalTest/config.xml @@ -0,0 +1,88 @@ + + + + + hudson.model.ParametersDefinitionProperty + com.sonyericsson.rebuild.RebuildSettings + + + + + false + + + + -1 + 10 + -1 + 1 + + + + + false + false + + + + + github_release_tag + <font color=red size=2><b>CAUTION: If the value is blank, latest code will be built. Specify github tag name to build from a tag.</b></font> + + false + + + + + 0 + 0 + + false + project + false + + + + + + + H 0 * * * + + + H 23 * * * + false + + + + + + + 2 + + + https://github.com/project-sunbird/sunbird-functional-tests.git + + + + + ${github_release_tag} + + + false + + + + true + false + + 0 + false + + + + lms_service_api_test/Jenkinsfile + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Build/jobs/Core/jobs/Player/config.xml b/deploy/jenkins/jobs/Build/jobs/Core/jobs/Player/config.xml index 4558b6a434..a7ec059293 100644 --- a/deploy/jenkins/jobs/Build/jobs/Core/jobs/Player/config.xml +++ b/deploy/jenkins/jobs/Build/jobs/Core/jobs/Player/config.xml @@ -1,5 +1,4 @@ - - + @@ -8,15 +7,15 @@ - + false -1 - -1 + 10 -1 - 10 + 1 @@ -29,53 +28,73 @@ github_release_tag <font color=red size=2><b>CAUTION: If the value is blank, latest code will be built. Specify github tag name to build from a tag.</b></font> - + false sunbird_content_editor_artifact_url <font color=dimgray size=2><b>Blob URL for content editor zip file</b></font> - + https://sunbirddev.blob.core.windows.net/sunbird-content-dev/artefacts/editor/content-editor-iframe-3.0.0.zip false sunbird_collection_editor_artifact_url <font color=dimgray size=2><b>Blob URL for collection editor zip file</b></font> - + https://sunbirddev.blob.core.windows.net/sunbird-content-dev/artefacts/editor/collection-editor-iframe-3.0.0.zip false sunbird_generic_editor_artifact_url <font color=dimgray size=2><b>Blob URL for generic editor zip file</b></font> - + https://sunbirddev.blob.core.windows.net/sunbird-content-dev/artefacts/editor/generic-editor-iframe-2.9.0.zip + false + + + buildDockerImage + + + + true + false + + + + + buildCdnAssests + + + + false + true + + + + + cdnUrl + + false - - 0 - 0 + false project false - + + - - - H/15 * * * * - false - - + - - + + 2 - https://github.com/Sunbird-Ed/SunbirdEd-portal.git + https://github.com/Sunbird-Ed/SunbirdEd-portal @@ -89,7 +108,7 @@ true false - + 0 false @@ -100,4 +119,4 @@ false - + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Build/jobs/Core/jobs/PlayerCustomStage/config.xml b/deploy/jenkins/jobs/Build/jobs/Core/jobs/PlayerCustomStage/config.xml new file mode 100644 index 0000000000..133012369d --- /dev/null +++ b/deploy/jenkins/jobs/Build/jobs/Core/jobs/PlayerCustomStage/config.xml @@ -0,0 +1,60 @@ + + + + false + + + false + false + + + 0 + 0 + + false + project + false + + + + + + + true + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Build/jobs/Core/jobs/Print/config.xml b/deploy/jenkins/jobs/Build/jobs/Core/jobs/Print/config.xml index 2ec5081594..0317d4a8bd 100644 --- a/deploy/jenkins/jobs/Build/jobs/Core/jobs/Print/config.xml +++ b/deploy/jenkins/jobs/Build/jobs/Core/jobs/Print/config.xml @@ -1,15 +1,14 @@ - - + - + false -1 - -1 + 10 -1 - 10 + 1 @@ -22,31 +21,25 @@ github_release_tag <font color=red size=2><b>CAUTION: If the value is blank, latest code will be built. Specify github tag name to build from a tag.</b></font> - + false - - 0 - 0 + false project false - + + - - - H/15 * * * * - false - - + - - + + 2 @@ -64,7 +57,7 @@ true false - + 0 false diff --git a/deploy/jenkins/jobs/Build/jobs/Core/jobs/Proxy/config.xml b/deploy/jenkins/jobs/Build/jobs/Core/jobs/Proxy/config.xml index 20e7a55b7b..d6a7b60a56 100644 --- a/deploy/jenkins/jobs/Build/jobs/Core/jobs/Proxy/config.xml +++ b/deploy/jenkins/jobs/Build/jobs/Core/jobs/Proxy/config.xml @@ -1,19 +1,18 @@ - - + - + false -1 - -1 + 10 -1 - 10 + 1 - + false false @@ -22,26 +21,27 @@ github_release_tag <font color=red size=2><b>CAUTION: If the value is blank, latest code will be built. Specify github tag name to build from a tag.</b></font> - + false - + 0 0 false project false - + + - - + + 2 @@ -59,7 +59,7 @@ true false - + 0 false diff --git a/deploy/jenkins/jobs/Build/jobs/Core/jobs/Report/config.xml b/deploy/jenkins/jobs/Build/jobs/Core/jobs/Report/config.xml new file mode 100644 index 0000000000..ca135323c0 --- /dev/null +++ b/deploy/jenkins/jobs/Build/jobs/Core/jobs/Report/config.xml @@ -0,0 +1,78 @@ + + + + + hudson.model.ParametersDefinitionProperty + com.sonyericsson.rebuild.RebuildSettings + + + + + false + + + + -1 + 10 + -1 + 1 + + + + + false + false + + + + + github_release_tag + <font color=red size=2><b>CAUTION: If the value is blank, latest code will be built. Specify github tag name to build from a tag.</b></font> + + false + + + + + + false + project + false + + + + + + + + + + 2 + + + https://github.com/project-sunbird/sunbird-report-service + + + + + ${github_release_tag} + + + false + + + + true + false + + 0 + false + + + + Jenkinsfile + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Build/jobs/Core/jobs/Search/config.xml b/deploy/jenkins/jobs/Build/jobs/Core/jobs/Search/config.xml new file mode 100644 index 0000000000..e5472de674 --- /dev/null +++ b/deploy/jenkins/jobs/Build/jobs/Core/jobs/Search/config.xml @@ -0,0 +1,78 @@ + + + + + hudson.model.ParametersDefinitionProperty + com.sonyericsson.rebuild.RebuildSettings + + + + + false + + + + -1 + 10 + -1 + 1 + + + + + false + false + + + + + github_release_tag + <font color=red size=2><b>CAUTION: If the value is blank, latest code will be built. Specify github tag name to build from a tag.</b></font> + + false + + + + + + false + project + false + + + + + + + + + + 2 + + + https://github.com/project-sunbird/knowledge-platform.git + + + + + ${github_release_tag} + + + false + + + + true + false + + 0 + false + + + + build/search-service/Jenkinsfile + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Build/jobs/Core/jobs/Taxonomy/config.xml b/deploy/jenkins/jobs/Build/jobs/Core/jobs/Taxonomy/config.xml new file mode 100644 index 0000000000..d6845b1e75 --- /dev/null +++ b/deploy/jenkins/jobs/Build/jobs/Core/jobs/Taxonomy/config.xml @@ -0,0 +1,78 @@ + + + + + hudson.model.ParametersDefinitionProperty + com.sonyericsson.rebuild.RebuildSettings + + + + + false + + + + -1 + 10 + -1 + 1 + + + + + false + false + + + + + github_release_tag + <font color=red size=2><b>CAUTION: If the value is blank, latest code will be built. Specify github tag name to build from a tag.</b></font> + + false + + + + + + false + project + false + + + + + + + + + + 2 + + + https://github.com/project-sunbird/knowledge-platform.git + + + + + ${github_release_tag} + + + false + + + + true + false + + 0 + false + + + + build/taxonomy-service/Jenkinsfile + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Build/jobs/Core/jobs/Telemetry/config.xml b/deploy/jenkins/jobs/Build/jobs/Core/jobs/Telemetry/config.xml index 8db1eb374f..7d24355744 100644 --- a/deploy/jenkins/jobs/Build/jobs/Core/jobs/Telemetry/config.xml +++ b/deploy/jenkins/jobs/Build/jobs/Core/jobs/Telemetry/config.xml @@ -1,5 +1,4 @@ - - + @@ -8,15 +7,15 @@ - + false -1 - -1 + 10 -1 - 10 + 1 @@ -29,32 +28,25 @@ github_release_tag <font color=red size=2><b>CAUTION: If the value is blank, latest code will be built. Specify github tag name to build from a tag.</b></font> - + false - - 0 - 0 + false project false - - 1 + + - - - H/15 * * * * - false - - + - - + + 2 @@ -72,7 +64,7 @@ true false - + 0 false @@ -82,5 +74,5 @@ false - true + false \ No newline at end of file diff --git a/deploy/jenkins/jobs/Build/jobs/Core/jobs/UserOrg/config.xml b/deploy/jenkins/jobs/Build/jobs/Core/jobs/UserOrg/config.xml index 3b5cc656b2..e942a49066 100644 --- a/deploy/jenkins/jobs/Build/jobs/Core/jobs/UserOrg/config.xml +++ b/deploy/jenkins/jobs/Build/jobs/Core/jobs/UserOrg/config.xml @@ -1,7 +1,7 @@ - + - + hudson.model.ParametersDefinitionProperty com.sonyericsson.rebuild.RebuildSettings @@ -14,15 +14,11 @@ -1 - -1 + 10 -1 - 10 + 1 - - false - false - @@ -33,26 +29,12 @@ - - 0 - 0 - - false - project - false - - - - - H/15 * * * * - false - - + - - + + 2 diff --git a/deploy/jenkins/jobs/Build/jobs/Core/jobs/Yarn/config.xml b/deploy/jenkins/jobs/Build/jobs/Core/jobs/Yarn/config.xml index 76a1d0c7f2..903fc54bd3 100644 --- a/deploy/jenkins/jobs/Build/jobs/Core/jobs/Yarn/config.xml +++ b/deploy/jenkins/jobs/Build/jobs/Core/jobs/Yarn/config.xml @@ -1,5 +1,4 @@ - - + @@ -8,15 +7,15 @@ - + false -1 - -1 + 10 -1 - 10 + 1 @@ -29,32 +28,25 @@ github_release_tag <font color=red size=2><b>CAUTION: If the value is blank, latest code will be built. Specify github tag name to build from a tag.</b></font> - + false - - 0 - 0 + false project false - - 1 + + - - - H/15 * * * * - false - - + - - + + 2 @@ -72,7 +64,7 @@ true false - + 0 false @@ -82,5 +74,5 @@ false - true + false \ No newline at end of file diff --git a/deploy/jenkins/jobs/Build/jobs/DataPipeline/config.xml b/deploy/jenkins/jobs/Build/jobs/DataPipeline/config.xml index 2b6dfdd25f..b4e3e19ff5 100644 --- a/deploy/jenkins/jobs/Build/jobs/DataPipeline/config.xml +++ b/deploy/jenkins/jobs/Build/jobs/DataPipeline/config.xml @@ -1,13 +1,13 @@ - + - + - - - + + + diff --git a/deploy/jenkins/jobs/Build/jobs/DataPipeline/jobs/AdhocScripts/config.xml b/deploy/jenkins/jobs/Build/jobs/DataPipeline/jobs/AdhocScripts/config.xml new file mode 100644 index 0000000000..7fadcf6e98 --- /dev/null +++ b/deploy/jenkins/jobs/Build/jobs/DataPipeline/jobs/AdhocScripts/config.xml @@ -0,0 +1,68 @@ + + + + + + hudson.model.ParametersDefinitionProperty + com.sonyericsson.rebuild.RebuildSettings + + + + + false + + + + -1 + 10 + -1 + 1 + + + + + + + github_release_tag + <font color=red size=2><b>CAUTION: If the value is blank, latest code will be built. Specify github tag name to build from a tag.</b></font> + + false + + + + + + + + + + 2 + + + https://github.com/Sunbird-Ed/sunbird-data-products.git + githubHarsha + + + + + ${github_release_tag} + + + false + + + + true + false + + 0 + false + + + + python-scripts/Jenkinsfile + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Build/jobs/DataPipeline/jobs/Analytics/config.xml b/deploy/jenkins/jobs/Build/jobs/DataPipeline/jobs/Analytics/config.xml index ce25972cbb..b5f6fe737d 100644 --- a/deploy/jenkins/jobs/Build/jobs/DataPipeline/jobs/Analytics/config.xml +++ b/deploy/jenkins/jobs/Build/jobs/DataPipeline/jobs/Analytics/config.xml @@ -1,7 +1,7 @@ - + - + hudson.model.ParametersDefinitionProperty com.sonyericsson.rebuild.RebuildSettings @@ -14,16 +14,12 @@ -1 - -1 + 10 -1 1 - - false - false - @@ -34,30 +30,16 @@ - - 0 - 0 - - false - project - false - - - - - H/15 * * * * - false - - + - - + + 2 - https://github.com/project-sunbird/sunbird-analytics.git + https://github.com/project-sunbird/sunbird-core-dataproducts.git diff --git a/deploy/jenkins/jobs/Build/jobs/DataPipeline/jobs/AnalyticsCore/config.xml b/deploy/jenkins/jobs/Build/jobs/DataPipeline/jobs/AnalyticsCore/config.xml new file mode 100644 index 0000000000..6c0648ca69 --- /dev/null +++ b/deploy/jenkins/jobs/Build/jobs/DataPipeline/jobs/AnalyticsCore/config.xml @@ -0,0 +1,80 @@ + + + + + hudson.model.ParametersDefinitionProperty + com.sonyericsson.rebuild.RebuildSettings + + + + + false + + + + -1 + 10 + -1 + 1 + + + + + false + false + + + + + github_release_tag + <font color=red size=2><b>CAUTION: If the value is blank, latest code will be built. Specify github tag name to build from a tag.</b></font> + + false + + + + + 0 + 0 + + false + project + false + + + + + + + + + + 2 + + + https://github.com/project-sunbird/sunbird-analytics-core + + + + + ${github_release_tag} + + + false + + + + true + false + + 0 + false + + + + Jenkinsfile + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Build/jobs/DataPipeline/jobs/AnalyticsService/config.xml b/deploy/jenkins/jobs/Build/jobs/DataPipeline/jobs/AnalyticsService/config.xml new file mode 100644 index 0000000000..49b4a521aa --- /dev/null +++ b/deploy/jenkins/jobs/Build/jobs/DataPipeline/jobs/AnalyticsService/config.xml @@ -0,0 +1,67 @@ + + + + + + hudson.model.ParametersDefinitionProperty + com.sonyericsson.rebuild.RebuildSettings + + + + + false + + + + -1 + 10 + -1 + 1 + + + + + + + github_release_tag + <font color=red size=2><b>CAUTION: If the value is blank, latest code will be built. Specify github tag name to build from a tag.</b></font> + + false + + + + + + + + + + 2 + + + https://github.com/project-sunbird/sunbird-analytics-service.git + + + + + ${github_release_tag} + + + false + + + + true + false + + 0 + false + + + + Jenkinsfile + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Build/jobs/DataPipeline/jobs/ApiModule/config.xml b/deploy/jenkins/jobs/Build/jobs/DataPipeline/jobs/ApiModule/config.xml index 79fbc9b238..2ba32367d9 100644 --- a/deploy/jenkins/jobs/Build/jobs/DataPipeline/jobs/ApiModule/config.xml +++ b/deploy/jenkins/jobs/Build/jobs/DataPipeline/jobs/ApiModule/config.xml @@ -1,7 +1,7 @@ - + - + hudson.model.ParametersDefinitionProperty com.sonyericsson.rebuild.RebuildSettings @@ -14,16 +14,12 @@ -1 - -1 + 10 -1 1 - - false - false - @@ -34,26 +30,12 @@ - - 0 - 0 - - false - project - false - - - - - H/15 * * * * - false - - + - - + + 2 diff --git a/deploy/jenkins/jobs/Build/jobs/DataPipeline/jobs/CoreDataProducts/config.xml b/deploy/jenkins/jobs/Build/jobs/DataPipeline/jobs/CoreDataProducts/config.xml new file mode 100644 index 0000000000..550b6da99c --- /dev/null +++ b/deploy/jenkins/jobs/Build/jobs/DataPipeline/jobs/CoreDataProducts/config.xml @@ -0,0 +1,80 @@ + + + + + hudson.model.ParametersDefinitionProperty + com.sonyericsson.rebuild.RebuildSettings + + + + + false + + + + -1 + 10 + -1 + 1 + + + + + false + false + + + + + github_release_tag + <font color=red size=2><b>CAUTION: If the value is blank, latest code will be built. Specify github tag name to build from a tag.</b></font> + + false + + + + + 0 + 0 + + false + project + false + + + + + + + + + + 2 + + + https://github.com/project-sunbird/sunbird-core-dataproducts.git + + + + + ${github_release_tag} + + + false + + + + true + false + + 0 + false + + + + Jenkinsfile + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Build/jobs/DataPipeline/jobs/DataPipeline/config.xml b/deploy/jenkins/jobs/Build/jobs/DataPipeline/jobs/DataPipeline/config.xml index 17afc4067c..0777c5d77f 100644 --- a/deploy/jenkins/jobs/Build/jobs/DataPipeline/jobs/DataPipeline/config.xml +++ b/deploy/jenkins/jobs/Build/jobs/DataPipeline/jobs/DataPipeline/config.xml @@ -1,7 +1,7 @@ - + - + hudson.model.ParametersDefinitionProperty com.sonyericsson.rebuild.RebuildSettings @@ -14,16 +14,12 @@ -1 - -1 + 10 -1 1 - - false - false - @@ -34,26 +30,12 @@ - - 0 - 0 - - false - project - false - - - - - H/15 * * * * - false - - + - - + + 2 diff --git a/deploy/jenkins/jobs/Build/jobs/DataPipeline/jobs/DataReplay/config.xml b/deploy/jenkins/jobs/Build/jobs/DataPipeline/jobs/DataReplay/config.xml new file mode 100644 index 0000000000..2cc4217234 --- /dev/null +++ b/deploy/jenkins/jobs/Build/jobs/DataPipeline/jobs/DataReplay/config.xml @@ -0,0 +1,68 @@ + + + + + + hudson.model.ParametersDefinitionProperty + com.sonyericsson.rebuild.RebuildSettings + + + + + false + + + + -1 + 10 + -1 + 1 + + + + + + + github_release_tag + <font color=red size=2><b>CAUTION: If the value is blank, latest code will be built. Specify github tag name to build from a tag.</b></font> + + false + + + + + + + + + + 2 + + + https://github.com/sowmya-dixit/sunbird-data-products.git + githubHarsha + + + + + ${github_release_tag} + + + false + + + + true + false + + 0 + false + + + + replay-scripts/Jenkinsfile + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Build/jobs/DataPipeline/jobs/ETLJobs/config.xml b/deploy/jenkins/jobs/Build/jobs/DataPipeline/jobs/ETLJobs/config.xml index 5de7b91e0e..94e0a87ee1 100644 --- a/deploy/jenkins/jobs/Build/jobs/DataPipeline/jobs/ETLJobs/config.xml +++ b/deploy/jenkins/jobs/Build/jobs/DataPipeline/jobs/ETLJobs/config.xml @@ -1,7 +1,6 @@ - - + - + false @@ -13,27 +12,28 @@ github_release_tag <font color=red size=2><b>CAUTION: If the value is blank, latest code will be built. Specify github tag name to build from a tag.</b></font> - + false - + 0 0 false project false - + + - - + + 2 - https://github.com/project-sunbird/sunbird-data-pipeline.git + https://github.com/sunbird-Ed/sunbird-data-products.git @@ -45,7 +45,7 @@ - pipelines/build/adhoc-jobs/Jenkinsfile + etl-jobs/build.Jenkinsfile false diff --git a/deploy/jenkins/jobs/Build/jobs/DataPipeline/jobs/EdDataProducts/config.xml b/deploy/jenkins/jobs/Build/jobs/DataPipeline/jobs/EdDataProducts/config.xml new file mode 100644 index 0000000000..4c52f1ccf3 --- /dev/null +++ b/deploy/jenkins/jobs/Build/jobs/DataPipeline/jobs/EdDataProducts/config.xml @@ -0,0 +1,80 @@ + + + + + hudson.model.ParametersDefinitionProperty + com.sonyericsson.rebuild.RebuildSettings + + + + + false + + + + -1 + 10 + -1 + 1 + + + + + false + false + + + + + github_release_tag + <font color=red size=2><b>CAUTION: If the value is blank, latest code will be built. Specify github tag name to build from a tag.</b></font> + + false + + + + + 0 + 0 + + false + project + false + + + + + + + + + + 2 + + + https://github.com/Sunbird-Ed/sunbird-data-products.git + + + + + ${github_release_tag} + + + false + + + + true + false + + 0 + false + + + + data-products/build.Jenkinsfile + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Build/jobs/DataPipeline/jobs/FlinkPipelineJobs/config.xml b/deploy/jenkins/jobs/Build/jobs/DataPipeline/jobs/FlinkPipelineJobs/config.xml new file mode 100644 index 0000000000..0371953600 --- /dev/null +++ b/deploy/jenkins/jobs/Build/jobs/DataPipeline/jobs/FlinkPipelineJobs/config.xml @@ -0,0 +1,78 @@ + + + + + hudson.model.ParametersDefinitionProperty + com.sonyericsson.rebuild.RebuildSettings + + + + + false + + + + -1 + 10 + -1 + 1 + + + + + false + false + + + + + github_release_tag + <font color=red size=2><b>CAUTION: If the value is blank, latest code will be built. Specify github tag name to build from a tag.</b></font> + + false + + + + + + false + project + false + + + + + + + + + + 2 + + + https://github.com/project-sunbird/sunbird-data-pipeline.git + + + + + ${github_release_tag} + + + false + + + + true + false + + 0 + false + + + + kubernetes/pipelines/build/Jenkinsfile + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Build/jobs/DataPipeline/jobs/Secor/config.xml b/deploy/jenkins/jobs/Build/jobs/DataPipeline/jobs/Secor/config.xml index 35dfa63937..e179860313 100644 --- a/deploy/jenkins/jobs/Build/jobs/DataPipeline/jobs/Secor/config.xml +++ b/deploy/jenkins/jobs/Build/jobs/DataPipeline/jobs/Secor/config.xml @@ -1,7 +1,7 @@ - + - + hudson.model.ParametersDefinitionProperty com.sonyericsson.rebuild.RebuildSettings @@ -14,16 +14,12 @@ -1 - -1 + 10 -1 1 - - false - false - @@ -34,25 +30,12 @@ - - 0 - 0 - - false - project - false - - - - - H/15 * * * * - false - - + + - - + + 2 @@ -81,4 +64,4 @@ false - + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Build/jobs/Experiments/config.xml b/deploy/jenkins/jobs/Build/jobs/Experiments/config.xml new file mode 100644 index 0000000000..5be56a4e05 --- /dev/null +++ b/deploy/jenkins/jobs/Build/jobs/Experiments/config.xml @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + All + false + false + + + + + + + + false + + + + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Build/jobs/Experiments/jobs/dev/config.xml b/deploy/jenkins/jobs/Build/jobs/Experiments/jobs/dev/config.xml new file mode 100644 index 0000000000..37e2c9b17a --- /dev/null +++ b/deploy/jenkins/jobs/Build/jobs/Experiments/jobs/dev/config.xml @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + All + false + false + + + + + + + + false + + + + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Build/jobs/Experiments/jobs/dev/jobs/Experiments/config.xml b/deploy/jenkins/jobs/Build/jobs/Experiments/jobs/dev/jobs/Experiments/config.xml new file mode 100644 index 0000000000..37e2c9b17a --- /dev/null +++ b/deploy/jenkins/jobs/Build/jobs/Experiments/jobs/dev/jobs/Experiments/config.xml @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + All + false + false + + + + + + + + false + + + + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Build/jobs/Experiments/jobs/dev/jobs/Experiments/jobs/exp1/config.xml b/deploy/jenkins/jobs/Build/jobs/Experiments/jobs/dev/jobs/Experiments/jobs/exp1/config.xml new file mode 100644 index 0000000000..471add90f9 --- /dev/null +++ b/deploy/jenkins/jobs/Build/jobs/Experiments/jobs/dev/jobs/Experiments/jobs/exp1/config.xml @@ -0,0 +1,121 @@ + + + + + false + + + + false + false + + + + + private_branch + + choice-parameter-2544395024638227 + 1 + + false + + + + false + + + exp1 + + + ET_FORMATTED_HTML + true + + + branch_or_tag + + choice-parameter-2620434998790477 + 1 + + false + + + + false + + + exp1 + + + ET_FORMATTED_HTML + true + + + portal_branch_name + + release-2.2.0 + false + + + portal_repo_url + + https://github.com/Sunbird-Ed/SunbirdEd-portal.git + false + + + + + 0 + 0 + + false + project + false + + + + + + + + + 2 + + + https://github.com/project-sunbird/sunbird-devops.git + + + + + ${github_release_tag} + + + false + + + + true + false + + 0 + false + + + + pipelines/deploy/player-experiments/Jenkinsfile + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Build/jobs/Experiments/jobs/dev/jobs/Experiments/jobs/exp2/config.xml b/deploy/jenkins/jobs/Build/jobs/Experiments/jobs/dev/jobs/Experiments/jobs/exp2/config.xml new file mode 100644 index 0000000000..d8dcbf422d --- /dev/null +++ b/deploy/jenkins/jobs/Build/jobs/Experiments/jobs/dev/jobs/Experiments/jobs/exp2/config.xml @@ -0,0 +1,121 @@ + + + + + false + + + + false + false + + + + + private_branch + + choice-parameter-2544395024638227 + 1 + + false + + + + false + + + exp2 + + + ET_FORMATTED_HTML + true + + + branch_or_tag + + choice-parameter-2620434998790477 + 1 + + false + + + + false + + + exp2 + + + ET_FORMATTED_HTML + true + + + portal_branch_name + + portal-experiments + false + + + portal_repo_url + + https://github.com/G33tha/SunbirdEd-portal.git + false + + + + + 0 + 0 + + false + project + false + + + + + + + + + 2 + + + ${portal_repo_url} + + + + + ${github_release_tag} + + + false + + + + true + false + + 0 + false + + + + Experiments/experiments.Jenkinsfile + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Build/jobs/Experiments/jobs/dev/jobs/Experiments/jobs/exp3/config.xml b/deploy/jenkins/jobs/Build/jobs/Experiments/jobs/dev/jobs/Experiments/jobs/exp3/config.xml new file mode 100644 index 0000000000..295f773de5 --- /dev/null +++ b/deploy/jenkins/jobs/Build/jobs/Experiments/jobs/dev/jobs/Experiments/jobs/exp3/config.xml @@ -0,0 +1,26 @@ + + + + false + + + + experiments/experiments.Jenkinsfile + false + + + + https://github.com/G33tha/SunbirdEd-portal.git + + + + + portal-experiments + + + 2 + false + Default + + + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Build/jobs/Experiments/jobs/dev/jobs/Experiments_Job_Generator/config.xml b/deploy/jenkins/jobs/Build/jobs/Experiments/jobs/dev/jobs/Experiments_Job_Generator/config.xml new file mode 100644 index 0000000000..74790c6bfb --- /dev/null +++ b/deploy/jenkins/jobs/Build/jobs/Experiments/jobs/dev/jobs/Experiments_Job_Generator/config.xml @@ -0,0 +1,85 @@ + + + + + false + + + false + false + + + + + experiment_job_name + job name or experiment name + + false + + + repo_url + ex : https://github.com/${account_name}/SunbirdEd-portal.git + + false + + + branch_name + + + false + + + + + 0 + 0 + + false + project + false + + + + + true + false + false + false + + false + + + def jobname = "${experiment_job_name}" +def repo = "${repo_url}" +def branch = "${branch_name}" + +pipelineJob("Experiments/dev/Experiments/${jobname}") { + + definition { + cpsScm { + scm { + git { + remote { url(repo) } + branches(branch) + scriptPath('experiments/experiments.Jenkinsfile') + } + } + } + } +} + true + false + false + false + false + false + false + IGNORE + IGNORE + IGNORE + JENKINS_ROOT + + + + + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Build/jobs/FunctionalTests/config.xml b/deploy/jenkins/jobs/Build/jobs/FunctionalTests/config.xml new file mode 100644 index 0000000000..fb78197ddd --- /dev/null +++ b/deploy/jenkins/jobs/Build/jobs/FunctionalTests/config.xml @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + All + false + false + + + + + + + + false + + + + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Build/jobs/FunctionalTests/jobs/Core/config.xml b/deploy/jenkins/jobs/Build/jobs/FunctionalTests/jobs/Core/config.xml new file mode 100644 index 0000000000..fb78197ddd --- /dev/null +++ b/deploy/jenkins/jobs/Build/jobs/FunctionalTests/jobs/Core/config.xml @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + All + false + false + + + + + + + + false + + + + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Build/jobs/FunctionalTests/jobs/Core/jobs/Content/config.xml b/deploy/jenkins/jobs/Build/jobs/FunctionalTests/jobs/Core/jobs/Content/config.xml new file mode 100644 index 0000000000..3cf2aa50ee --- /dev/null +++ b/deploy/jenkins/jobs/Build/jobs/FunctionalTests/jobs/Core/jobs/Content/config.xml @@ -0,0 +1,80 @@ + + + + + hudson.model.ParametersDefinitionProperty + com.sonyericsson.rebuild.RebuildSettings + + + + + false + + + + -1 + 10 + -1 + 1 + + + + + false + false + + + + + github_release_tag + <font color=red size=2><b>CAUTION: If the value is blank, latest code will be built. Specify github tag name to build from a tag.</b></font> + + false + + + + + 0 + 0 + + false + project + false + + + + + + + + + + 2 + + + https://github.com/project-sunbird/knowledge-platform.git + + + + + ${github_release_tag} + + + false + + + + true + false + + 0 + false + + + + functional-tests/content/Jenkinsfile + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Build/jobs/KnowledgePlatform/config.xml b/deploy/jenkins/jobs/Build/jobs/KnowledgePlatform/config.xml index c3548f16ca..b4e3e19ff5 100644 --- a/deploy/jenkins/jobs/Build/jobs/KnowledgePlatform/config.xml +++ b/deploy/jenkins/jobs/Build/jobs/KnowledgePlatform/config.xml @@ -1,13 +1,13 @@ - + - + - - - + + + diff --git a/deploy/jenkins/jobs/Build/jobs/KnowledgePlatform/jobs/CassandraTrigger/config.xml b/deploy/jenkins/jobs/Build/jobs/KnowledgePlatform/jobs/CassandraTrigger/config.xml index b7a1b0f5f5..e9c657cf3b 100644 --- a/deploy/jenkins/jobs/Build/jobs/KnowledgePlatform/jobs/CassandraTrigger/config.xml +++ b/deploy/jenkins/jobs/Build/jobs/KnowledgePlatform/jobs/CassandraTrigger/config.xml @@ -1,5 +1,4 @@ - - + @@ -8,13 +7,13 @@ - + false -1 - -1 + 10 -1 1 @@ -29,26 +28,25 @@ github_release_tag <font color=red size=2><b>CAUTION: If the value is blank, latest code will be built. Specify github tag name to build from a tag.</b></font> - + false - - 0 - 0 + false project false - + + - - + + 2 @@ -66,7 +64,7 @@ true false - + 0 false diff --git a/deploy/jenkins/jobs/Build/jobs/KnowledgePlatform/jobs/Dial/config.xml b/deploy/jenkins/jobs/Build/jobs/KnowledgePlatform/jobs/Dial/config.xml new file mode 100644 index 0000000000..fb61d20cc7 --- /dev/null +++ b/deploy/jenkins/jobs/Build/jobs/KnowledgePlatform/jobs/Dial/config.xml @@ -0,0 +1,78 @@ + + + + + hudson.model.ParametersDefinitionProperty + com.sonyericsson.rebuild.RebuildSettings + + + + + false + + + + -1 + 10 + -1 + 1 + + + + + false + false + + + + + github_release_tag + <font color=red size=2><b>CAUTION: If the value is blank, latest code will be built. Specify github tag name to build from a tag.</b></font> + + false + + + + + + false + project + false + + + + + + + + + + 2 + + + https://github.com/project-sunbird/sunbird-dial-service + + + + + ${github_release_tag} + + + false + + + + true + false + + 0 + false + + + + Jenkinsfile + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Build/jobs/KnowledgePlatform/jobs/FlinkJobs/config.xml b/deploy/jenkins/jobs/Build/jobs/KnowledgePlatform/jobs/FlinkJobs/config.xml new file mode 100644 index 0000000000..41a9eadcd6 --- /dev/null +++ b/deploy/jenkins/jobs/Build/jobs/KnowledgePlatform/jobs/FlinkJobs/config.xml @@ -0,0 +1,80 @@ + + + + + hudson.model.ParametersDefinitionProperty + com.sonyericsson.rebuild.RebuildSettings + + + + + false + + + + -1 + 10 + -1 + 1 + + + + + false + false + + + + + github_release_tag + <font color=red size=2><b>CAUTION: If the value is blank, latest code will be built. Specify github tag name to build from a tag.</b></font> + + false + + + + + 0 + 0 + + false + project + false + + + + + + + + + + 2 + + + https://github.com/project-sunbird/knowledge-platform-jobs.git + + + + + ${github_release_tag} + + + false + + + + true + false + + 0 + false + + + + kubernets/pipelines/build/Jenkinsfile + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Build/jobs/KnowledgePlatform/jobs/KnowledgePlatform/config.xml b/deploy/jenkins/jobs/Build/jobs/KnowledgePlatform/jobs/KnowledgePlatform/config.xml index 01eeb5d515..a33487e183 100644 --- a/deploy/jenkins/jobs/Build/jobs/KnowledgePlatform/jobs/KnowledgePlatform/config.xml +++ b/deploy/jenkins/jobs/Build/jobs/KnowledgePlatform/jobs/KnowledgePlatform/config.xml @@ -1,5 +1,4 @@ - - + @@ -8,13 +7,13 @@ - + false -1 - -1 + 10 -1 1 @@ -29,7 +28,7 @@ github_release_tag <font color=red size=2><b>CAUTION: If the value is blank, latest code will be built. Specify github tag name to build from a tag.</b></font> - + false @@ -44,25 +43,24 @@ - - 0 - 0 + false project false - + + - - + + 2 - https://github.com/project-sunbird/sunbird-learning-platform.git + https://github.com/project-sunbird/sunbird-learning-platform @@ -76,7 +74,7 @@ true false - + 0 false diff --git a/deploy/jenkins/jobs/Build/jobs/KnowledgePlatform/jobs/LPFuntionalTest/config.xml b/deploy/jenkins/jobs/Build/jobs/KnowledgePlatform/jobs/LPFuntionalTest/config.xml new file mode 100644 index 0000000000..8338d7a5cd --- /dev/null +++ b/deploy/jenkins/jobs/Build/jobs/KnowledgePlatform/jobs/LPFuntionalTest/config.xml @@ -0,0 +1,109 @@ + + + + + + hudson.model.ParametersDefinitionProperty + com.sonyericsson.rebuild.RebuildSettings + + + + + false + + + + -1 + 10 + -1 + 1 + + + + + + + github_release_tag + <font color=red size=2><b>CAUTION: If the value is blank, latest code will be built. Specify github tag name to build from a tag.</b></font> + + false + + + kp_service_url + + http://11.2.4.22:8080/learning-service + false + + + kp_content_creator_password + + password + false + + + kp_content_reviewer_password + + password + false + + + kp_search_base_url + + http://11.2.6.6/search + false + + + kp_dial_base_url + + https://qa.ekstep.in/api + false + + + kp_dial_auth_key + + eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI2MzExMTYwNTMzOGY0Zjc5YTgwZTM3YjcyZjVjMmUwZiJ9.azmj_AHmndeJz0h6yIkOJz1XjeZR6Gzd-OrZzR66I0A + false + + + kp_cs_uri + + http://11.2.6.6/content + false + + + + + + + + + + 2 + + + https://github.com/project-sunbird/sunbird-functional-tests.git + + + + + ${github_release_tag} + + + false + + + + true + false + + 0 + false + + + + kp_service_test/Jenkinsfile + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Build/jobs/KnowledgePlatform/jobs/LP_Decoupling_Test/config.xml b/deploy/jenkins/jobs/Build/jobs/KnowledgePlatform/jobs/LP_Decoupling_Test/config.xml new file mode 100644 index 0000000000..288e7b0505 --- /dev/null +++ b/deploy/jenkins/jobs/Build/jobs/KnowledgePlatform/jobs/LP_Decoupling_Test/config.xml @@ -0,0 +1,77 @@ + + + + + + hudson.model.ParametersDefinitionProperty + com.sonyericsson.rebuild.RebuildSettings + + + + + false + + + + -1 + 10 + -1 + 1 + + + + + + + github_release_tag + <font color=red size=2><b>CAUTION: If the value is blank, latest code will be built. Specify github tag name to build from a tag.</b></font> + + false + + + profile_id + Select the profile_id + + + platform-services + learning-services + + + + + + + + + + + + 2 + + + https://github.com/project-sunbird/sunbird-learning-platform.git + + + + + ${github_release_tag} + + + false + + + + true + false + + 0 + false + + + + pipelines/build/learning/Jenkinsfile + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Build/jobs/KnowledgePlatform/jobs/Neo4j/config.xml b/deploy/jenkins/jobs/Build/jobs/KnowledgePlatform/jobs/Neo4j/config.xml index 4dfbddd06a..e8f69cfc3e 100644 --- a/deploy/jenkins/jobs/Build/jobs/KnowledgePlatform/jobs/Neo4j/config.xml +++ b/deploy/jenkins/jobs/Build/jobs/KnowledgePlatform/jobs/Neo4j/config.xml @@ -1,5 +1,4 @@ - - + @@ -8,13 +7,13 @@ - + false -1 - -1 + 10 -1 1 @@ -29,31 +28,25 @@ github_release_tag <font color=red size=2><b>CAUTION: If the value is blank, latest code will be built. Specify github tag name to build from a tag.</b></font> - + false - - 0 - 0 + false project false - + + - - - H/15 * * * * - false - - + - - + + 2 @@ -71,7 +64,7 @@ true false - + 0 false diff --git a/deploy/jenkins/jobs/Build/jobs/KnowledgePlatform/jobs/SyncTool/config.xml b/deploy/jenkins/jobs/Build/jobs/KnowledgePlatform/jobs/SyncTool/config.xml index 09e72999b8..0f8cf822dc 100644 --- a/deploy/jenkins/jobs/Build/jobs/KnowledgePlatform/jobs/SyncTool/config.xml +++ b/deploy/jenkins/jobs/Build/jobs/KnowledgePlatform/jobs/SyncTool/config.xml @@ -1,5 +1,4 @@ - - + @@ -8,13 +7,13 @@ - + false -1 - -1 + 10 -1 1 @@ -29,31 +28,25 @@ github_release_tag <font color=red size=2><b>CAUTION: If the value is blank, latest code will be built. Specify github tag name to build from a tag.</b></font> - + false - - 0 - 0 + false project false - + + - - - H/15 * * * * - false - - + - - + + 2 @@ -71,7 +64,7 @@ true false - + 0 false diff --git a/deploy/jenkins/jobs/Build/jobs/KnowledgePlatform/jobs/Yarn/config.xml b/deploy/jenkins/jobs/Build/jobs/KnowledgePlatform/jobs/Yarn/config.xml index b29e9d14e0..ff889ff726 100644 --- a/deploy/jenkins/jobs/Build/jobs/KnowledgePlatform/jobs/Yarn/config.xml +++ b/deploy/jenkins/jobs/Build/jobs/KnowledgePlatform/jobs/Yarn/config.xml @@ -1,5 +1,4 @@ - - + @@ -8,13 +7,13 @@ - + false -1 - -1 + 10 -1 1 @@ -29,41 +28,29 @@ github_release_tag <font color=red size=2><b>CAUTION: If the value is blank, latest code will be built. Specify github tag name to build from a tag.</b></font> - + false - - 0 - 0 + false project false - + + - - - - KnowledgePlatform - - SUCCESS - 0 - BLUE - true - - - + - - + + 2 - https://github.com/project-sunbird/sunbird-learning-platform.git + https://github.com/project-sunbird/sunbird-learning-platform @@ -77,7 +64,7 @@ true false - + 0 false diff --git a/deploy/jenkins/jobs/Build/jobs/Plugins/jobs/CollectionEditor/config.xml b/deploy/jenkins/jobs/Build/jobs/Plugins/jobs/CollectionEditor/config.xml index 2851393b4a..9349be3575 100644 --- a/deploy/jenkins/jobs/Build/jobs/Plugins/jobs/CollectionEditor/config.xml +++ b/deploy/jenkins/jobs/Build/jobs/Plugins/jobs/CollectionEditor/config.xml @@ -1,15 +1,14 @@ - - + - + false -1 - -1 + 10 -1 - -1 + 1 @@ -22,30 +21,31 @@ github_release_tag <font color=red size=2><b>CAUTION: If the value is blank, latest code will be built. Specify github tag name to build from a tag.</b></font> - + false - + 0 0 false project false - + + - - + + 2 - https://github.com/project-sunbird/sunbird-collection-editor + https://github.com/project-sunbird/sunbird-collection-editor.git @@ -59,7 +59,7 @@ true false - + 0 false diff --git a/deploy/jenkins/jobs/Build/jobs/Plugins/jobs/ContentEditor/config.xml b/deploy/jenkins/jobs/Build/jobs/Plugins/jobs/ContentEditor/config.xml index 64757a95ea..e59dc31c4b 100644 --- a/deploy/jenkins/jobs/Build/jobs/Plugins/jobs/ContentEditor/config.xml +++ b/deploy/jenkins/jobs/Build/jobs/Plugins/jobs/ContentEditor/config.xml @@ -1,15 +1,14 @@ - - + - + false -1 - -1 + 10 -1 - -1 + 1 @@ -22,26 +21,27 @@ github_release_tag <font color=red size=2><b>CAUTION: If the value is blank, latest code will be built. Specify github tag name to build from a tag.</b></font> - + false - + 0 0 false project false - + + - - + + 2 @@ -59,7 +59,7 @@ true false - + 0 false diff --git a/deploy/jenkins/jobs/Build/jobs/Plugins/jobs/ContentPlayer/config.xml b/deploy/jenkins/jobs/Build/jobs/Plugins/jobs/ContentPlayer/config.xml index 2c05092c21..2719e4d279 100644 --- a/deploy/jenkins/jobs/Build/jobs/Plugins/jobs/ContentPlayer/config.xml +++ b/deploy/jenkins/jobs/Build/jobs/Plugins/jobs/ContentPlayer/config.xml @@ -1,15 +1,14 @@ - - + - + false -1 - -1 + 10 -1 - -1 + 1 @@ -22,26 +21,25 @@ github_release_tag <font color=red size=2><b>CAUTION: If the value is blank, latest code will be built. Specify github tag name to build from a tag.</b></font> - + false - - 0 - 0 + false project false - + + - - + + 2 @@ -59,7 +57,7 @@ true false - + 0 false diff --git a/deploy/jenkins/jobs/Build/jobs/Plugins/jobs/ContentPlugins/config.xml b/deploy/jenkins/jobs/Build/jobs/Plugins/jobs/ContentPlugins/config.xml index 2c87891f43..b53b66fe22 100644 --- a/deploy/jenkins/jobs/Build/jobs/Plugins/jobs/ContentPlugins/config.xml +++ b/deploy/jenkins/jobs/Build/jobs/Plugins/jobs/ContentPlugins/config.xml @@ -1,15 +1,14 @@ - - + - + false -1 - -1 + 10 -1 - -1 + 1 @@ -22,26 +21,27 @@ github_release_tag <font color=red size=2><b>CAUTION: If the value is blank, latest code will be built. Specify github tag name to build from a tag.</b></font> - + false - + 0 0 false project false - + + - - + + 2 @@ -59,7 +59,7 @@ true false - + 0 false diff --git a/deploy/jenkins/jobs/Build/jobs/Plugins/jobs/GenericEditor/config.xml b/deploy/jenkins/jobs/Build/jobs/Plugins/jobs/GenericEditor/config.xml index 8e12940dcf..c1a37d63e2 100644 --- a/deploy/jenkins/jobs/Build/jobs/Plugins/jobs/GenericEditor/config.xml +++ b/deploy/jenkins/jobs/Build/jobs/Plugins/jobs/GenericEditor/config.xml @@ -1,15 +1,14 @@ - - + - + false -1 - -1 + 10 -1 - -1 + 1 @@ -22,26 +21,27 @@ github_release_tag <font color=red size=2><b>CAUTION: If the value is blank, latest code will be built. Specify github tag name to build from a tag.</b></font> - + false - + 0 0 false project false - + + - - + + 2 @@ -59,7 +59,7 @@ false false - + 0 false diff --git a/deploy/jenkins/jobs/Deploy/config.xml b/deploy/jenkins/jobs/Deploy/config.xml index 68477b8ac7..e794546f97 100644 --- a/deploy/jenkins/jobs/Deploy/config.xml +++ b/deploy/jenkins/jobs/Deploy/config.xml @@ -1,13 +1,8 @@ - + - - - - - - + diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/config.xml index ca27afff70..92618cba96 100644 --- a/deploy/jenkins/jobs/Deploy/jobs/dev/config.xml +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/config.xml @@ -1,12 +1,12 @@ - + - + - - + + diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/APIManager/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/APIManager/config.xml index 04ef70b573..bf725fd9e6 100644 --- a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/APIManager/config.xml +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/APIManager/config.xml @@ -1,5 +1,4 @@ - - + @@ -8,15 +7,15 @@ - + false -1 - -1 + 10 -1 - 5 + 2 @@ -35,76 +34,78 @@ image_tag <font color=red size=2><b>CAUTION: If the value is blank, image tag will be taken from the latest metadata.json.</b></font> - + false - + private_branch - + choice-parameter-2544395024638227 1 +return """<b>This parameter is not used</b>""" false - - + + false APIManager + Deploy/dev/Core/APIManager - + ET_FORMATTED_HTML true - + branch_or_tag - + choice-parameter-2620434998790477 1 +return """<b>This parameter is not used</b>""" false - - + + false APIManager + Deploy/dev/Core/APIManager - + ET_FORMATTED_HTML true - + 0 0 false project false - - 1 + + - + ArtifactUpload/dev/Core/APIManager SUCCESS @@ -116,8 +117,8 @@ return """<b>This parameter is not used</b>"&quo - - + + 2 @@ -135,7 +136,7 @@ return """<b>This parameter is not used</b>"&quo true false - + 0 false diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/AdminUtils/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/AdminUtils/config.xml index c9eb877678..298ff2b71d 100644 --- a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/AdminUtils/config.xml +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/AdminUtils/config.xml @@ -14,9 +14,9 @@ -1 - -1 + 10 -1 - 5 + 2 diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/Assessment/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/Assessment/config.xml index 1353dd4e76..bd554ea42e 100644 --- a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/Assessment/config.xml +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/Assessment/config.xml @@ -14,9 +14,9 @@ -1 - -1 + 10 -1 - 5 + 2 @@ -58,7 +58,7 @@ return """<b>This parameter is not used</b>"&quo Assessment - Deploy/dev/Core_disabled/Assessment + Deploy/dev/Core/Assessment ET_FORMATTED_HTML @@ -85,7 +85,7 @@ return """<b>This parameter is not used</b>"&quo Assessment - Deploy/dev/Core_disabled/Assessment + Deploy/dev/Core/Assessment ET_FORMATTED_HTML @@ -127,7 +127,7 @@ return """<b>This parameter is not used</b>"&quo - ${branch_or_tag} + release-2.7.0 false diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/Badger/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/Badger/config.xml index 139322e5f8..5bdde924e3 100644 --- a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/Badger/config.xml +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/Badger/config.xml @@ -14,9 +14,9 @@ -1 - -1 + 10 -1 - 5 + 2 @@ -116,7 +116,7 @@ return """<b>This parameter is not used</b>"&quo - ${branch_or_tag} + release-2.2.0_RC11 false diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/Bootstrap/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/Bootstrap/config.xml index 54d79c38fe..76712ca41f 100644 --- a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/Bootstrap/config.xml +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/Bootstrap/config.xml @@ -7,9 +7,9 @@ -1 - -1 + 10 -1 - 5 + 2 diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/CF-QUML_Migration_Script/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/CF-QUML_Migration_Script/config.xml new file mode 100644 index 0000000000..e166158a8c --- /dev/null +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/CF-QUML_Migration_Script/config.xml @@ -0,0 +1,94 @@ + + + Migration from QUML version 0.5 to QUML version 1.0 + false + + + + -1 + 10 + -1 + 2 + + + + + false + false + + + + + kp_search_service_base_path + kp_search_service_base_path http://11.2.6.6/search + http://11.2.6.6/search + false + + + kp_learning_service_base_path + kp_learning_service_base_path http://11.2.4.22:8080/learning-service + http://11.2.4.22:8080/learning-service + false + + + kp_assessment_service_base_path + kp_assessment_service_base_path: http://11.2.6.6/assessment + http://11.2.6.6/assessment + false + + + kp_content_service_base_path + kp_content_service_base_path http://11.2.6.6/content + http://11.2.6.6/content + false + + + github_release_tag + <font color="red"><b>CAUTION: If the value is blank, latest code will be built. Specify github tag name to build from a tag</b></font> + + false + + + + + 0 + 0 + + false + project + false + + + + + + + 2 + + + https://github.com/Sunbird-Ed/SunbirdEd-portal.git + + + + + quml-mogration-2.10 + + + false + + + + true + false + + 0 + false + + + + Jenkinsfile + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/CassandraStateValidated/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/CassandraStateValidated/config.xml new file mode 100644 index 0000000000..dcdd0db0d3 --- /dev/null +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/CassandraStateValidated/config.xml @@ -0,0 +1,214 @@ + + + + + false + + + + -1 + 10 + -1 + 2 + + + + + false + false + + + + + absolute_job_path + <font color=dimgray size=2><b>Do not change this value! The metadata.json will be copied from this job.</b></font> + ArtifactUpload/dev/Core/CassandraStateValidated + false + + + artifact_source + <font color=dimgray size=2><b> +ArtifactRepo - Download the artifact from azure blob, JenkinsJob - Use the atrifact from Jenkins job.</b></font> + choice-parameter-9600649228560 + 1 + + false + + + + false + + + CassandraStateValidated + + + PT_SINGLE_SELECT + false + 1 + + + build_number + + choice-parameter-9600651313765 + 1 + + false + + + + false + + + CassandraStateValidated + + artifact_source + ET_FORMATTED_HTML + true + + + artifact_version + + choice-parameter-9600653373369 + 1 + + false + + + + false + + + CassandraStateValidated + + artifact_source + ET_FORMATTED_HTML + true + + + private_branch + + choice-parameter-2544395024638227 + 1 + + false + + + + false + + + CassandraStateValidated + + + ET_FORMATTED_HTML + true + + + branch_or_tag + + choice-parameter-2620434998790477 + 1 + + false + + + + false + + + CassandraStateValidated + + + ET_FORMATTED_HTML + true + + + + + 0 + 0 + + false + project + false + + + + + + + ArtifactUpload/dev/Core/CassandraStateValidated + + SUCCESS + 0 + BLUE + true + + + + + + + + 2 + + + https://github.com/project-sunbird/sunbird-devops.git + + + + + ${branch_or_tag} + + + false + + + + true + false + + 0 + false + + + + pipelines/deploy/cassandra-deploy/Jenkinsfile.stateValidated + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/CassandraTrigger/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/CassandraTrigger/config.xml index 9fb0436c4b..82b8b8a6b3 100644 --- a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/CassandraTrigger/config.xml +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/CassandraTrigger/config.xml @@ -7,9 +7,9 @@ -1 - -1 + 10 -1 - 5 + 2 diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/Cert/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/Cert/config.xml index 5713bdacb9..cf95094689 100644 --- a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/Cert/config.xml +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/Cert/config.xml @@ -14,9 +14,9 @@ -1 - -1 + 10 -1 - 5 + 2 diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/CertRegistryService/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/CertRegistryService/config.xml index 44e278d0d3..ee1bfcb085 100644 --- a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/CertRegistryService/config.xml +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/CertRegistryService/config.xml @@ -14,9 +14,9 @@ -1 - -1 + 10 -1 - 5 + 2 diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/Config/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/Config/config.xml new file mode 100644 index 0000000000..40c3e9754b --- /dev/null +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/Config/config.xml @@ -0,0 +1,137 @@ + + + + + + hudson.model.ParametersDefinitionProperty + com.sonyericsson.rebuild.RebuildSettings + + + + + false + + + + -1 + 10 + -1 + 2 + + + + + false + false + + + + + absolute_job_path + <font color=dimgray size=2><b>Do not change this value! The metadata.json will be copied from this job.</b></font> + ArtifactUpload/dev/Core/Config + false + + + image_tag + <font color=red size=2><b>CAUTION: If the value is blank, image tag will be taken from the latest metadata.json.</b></font> + + false + + + private_branch + + choice-parameter-2544395024638227 + 1 + + false + + + + false + + + Config + + + ET_FORMATTED_HTML + true + + + branch_or_tag + + choice-parameter-2620434998790477 + 1 + + false + + + + false + + + Config + + + ET_FORMATTED_HTML + true + + + + + 0 + 0 + + false + project + false + + + + + + + + + 2 + + + https://github.com/project-sunbird/sunbird-devops.git + + + + + ${branch_or_tag} + + + false + + + + true + false + + 0 + false + + + + pipelines/deploy/config-service/Jenkinsfile + false + + + false + diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/Content/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/Content/config.xml index c7253c9519..821fb2fbf0 100644 --- a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/Content/config.xml +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/Content/config.xml @@ -1,5 +1,4 @@ - - + @@ -8,15 +7,15 @@ - + false -1 - -1 + 10 -1 - 5 + 2 @@ -35,77 +34,78 @@ image_tag <font color=red size=2><b>CAUTION: If the value is blank, image tag will be taken from the latest metadata.json.</b></font> - + false - + private_branch - + choice-parameter-2544395024638227 1 +return """<b>This parameter is not used</b>""" false - - + + false Content Deploy/dev/Core/Content - + ET_FORMATTED_HTML true - + branch_or_tag - + choice-parameter-2620434998790477 1 +return """<b>This parameter is not used</b>""" false - - + + false Content Deploy/dev/Core/Content - + ET_FORMATTED_HTML true - + 0 0 false project false - + + - + ArtifactUpload/dev/Core/Content SUCCESS @@ -117,8 +117,8 @@ return """<b>This parameter is not used</b>"&quo - - + + 2 @@ -127,7 +127,7 @@ return """<b>This parameter is not used</b>"&quo - ${branch_or_tag} + sc-1928 false @@ -136,7 +136,7 @@ return """<b>This parameter is not used</b>"&quo true false - + 1 false diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/EncService/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/EncService/config.xml index 46fec0d7d2..307fc4c505 100644 --- a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/EncService/config.xml +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/EncService/config.xml @@ -14,9 +14,9 @@ -1 - -1 + 10 -1 - 5 + 2 diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/KafkaSetup/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/KafkaSetup/config.xml index f531557703..bd98aec0fa 100644 --- a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/KafkaSetup/config.xml +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/KafkaSetup/config.xml @@ -1,5 +1,4 @@ - - + @@ -8,15 +7,15 @@ - + false -1 - -1 + 10 -1 - 5 + 2 @@ -26,71 +25,74 @@ - + private_branch - + choice-parameter-188157054642539 1 +return """<b>This parameter is not used</b>""" false - - + + false KafkaSetup + Deploy/dev/Core/KafkaSetup - + ET_FORMATTED_HTML true - + branch_or_tag - + choice-parameter-188157057910170 1 +return """<b>This parameter is not used</b>""" false - - + + false KafkaSetup + Deploy/dev/Core/KafkaSetup - + ET_UNORDERED_LIST true - + 0 0 false project false - + + - - + + 2 @@ -99,7 +101,7 @@ return """<b>This parameter is not used</b>"&quo - ${branch_or_tag} + release-3.4.0 false @@ -108,7 +110,7 @@ return """<b>This parameter is not used</b>"&quo true false - + 1 false diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/KeycloakCustom/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/KeycloakCustom/config.xml new file mode 100644 index 0000000000..0038bd043c --- /dev/null +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/KeycloakCustom/config.xml @@ -0,0 +1,115 @@ + + + + + false + + + + -1 + 10 + -1 + 2 + + + + + false + false + + + + + private_branch + + choice-parameter-196487835595646 + 1 + + false + + + + false + + + KeycloakAddClients + + + ET_FORMATTED_HTML + true + + + branch_or_tag + + choice-parameter-196487838166797 + 1 + + false + + + + false + + + KeycloakAddClients + + + ET_FORMATTED_HTML + true + + + + + 0 + 0 + + false + project + false + + + + + + 2 + + + https://github.com/project-sunbird/sunbird-devops.git + + + + + ${branch_or_tag} + + + false + + + + true + false + + 1 + false + + + + pipelines/deploy/keycloak/Jenkinsfile.custom + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/KeycloakMigration/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/KeycloakMigration/config.xml new file mode 100644 index 0000000000..0cdecbe4fc --- /dev/null +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/KeycloakMigration/config.xml @@ -0,0 +1,173 @@ + + + + + false + + + + -1 + 10 + -1 + 2 + + + + + false + false + + + + + absolute_job_path + <font color=dimgray size=2><b>Do not change this value! The metadata.json will be copied from this job.</b></font> + ArtifactUpload/dev/Core/Keycloak + false + + + artifact_source + <font color=dimgray size=2><b> +ArtifactRepo - Download the artifact from azure blob, JenkinsJob - Use the atrifact from Jenkins job.</b></font> + choice-parameter-9600649228560 + 1 + + false + + + + false + + + KeycloakMigration + Deploy/dev/Core/KeycloakMigration + + + PT_SINGLE_SELECT + false + 1 + + + build_number + + choice-parameter-9600651313765 + 1 + + false + + + + false + + + KeycloakMigration + Deploy/dev/Core/KeycloakMigration + + artifact_source + ET_FORMATTED_HTML + true + + + artifact_version + + choice-parameter-9600653373369 + 1 + + false + + + + false + + + KeycloakMigration + Deploy/dev/Core/KeycloakMigration + + artifact_source + ET_FORMATTED_HTML + true + + + private_branch + + choice-parameter-2544395024638227 + 1 + + false + + + + false + + + KeycloakMigration + Deploy/dev/Core/KeycloakMigration + + + ET_FORMATTED_HTML + true + + + + + 0 + 0 + + false + project + false + + + + + + + + + 2 + + + https://github.com/project-sunbird/sunbird-devops.git + + + + + release-2.7.0 + + + false + + + + pipelines/deploy/keycloak-migration/Jenkinsfile + true + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/KeycloakRealm/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/KeycloakRealm/config.xml index 78de0730d0..7eb30d0c18 100644 --- a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/KeycloakRealm/config.xml +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/KeycloakRealm/config.xml @@ -1,5 +1,4 @@ - - + @@ -8,92 +7,95 @@ - + false -1 - -1 + 10 -1 - 5 + 2 - + false false - + private_branch - + choice-parameter-186662917593857 1 +return """<b>This parameter is not used</b>""" false - - + + false KeycloakRealm + Deploy/dev/Core/KeycloakRealm - + ET_FORMATTED_HTML true - + branch_or_tag - + choice-parameter-186662921061407 1 +return """<b>This parameter is not used</b>""" false - - + + false KeycloakRealm + Deploy/dev/Core/KeycloakRealm - + ET_FORMATTED_HTML true - + 0 0 false project false - + + - - + + 2 @@ -111,7 +113,7 @@ return """<b>This parameter is not used</b>"&quo true false - + 1 false diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/KnowledgeMW/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/KnowledgeMW/config.xml index c355d4b944..46e23f702d 100644 --- a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/KnowledgeMW/config.xml +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/KnowledgeMW/config.xml @@ -14,9 +14,9 @@ -1 - -1 + 10 -1 - 5 + 2 @@ -127,7 +127,7 @@ return """<b>This parameter is not used</b>"&quo - ${branch_or_tag} + release-2.9.0 false diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/Learner/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/Learner/config.xml index db227c4737..406390f303 100644 --- a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/Learner/config.xml +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/Learner/config.xml @@ -1,5 +1,4 @@ - - + @@ -8,15 +7,15 @@ - + false -1 - -1 + 10 -1 - 5 + 2 @@ -35,77 +34,78 @@ image_tag <font color=red size=2><b>CAUTION: If the value is blank, image tag will be taken from the latest metadata.json.</b></font> - + false - + private_branch - + choice-parameter-2544395024638227 1 +return """<b>This parameter is not used</b>""" false - - + + false Learner Deploy/dev/Core/Learner - + ET_FORMATTED_HTML true - + branch_or_tag - + choice-parameter-2620434998790477 1 +return """<b>This parameter is not used</b>""" false - - + + false Learner Deploy/dev/Core/Learner - + ET_FORMATTED_HTML true - + 0 0 false project false - + + - + ArtifactUpload/dev/Core/Learner SUCCESS @@ -117,8 +117,8 @@ return """<b>This parameter is not used</b>"&quo - - + + 2 @@ -127,7 +127,7 @@ return """<b>This parameter is not used</b>"&quo - ${branch_or_tag} + release-3.2.0 false @@ -136,7 +136,7 @@ return """<b>This parameter is not used</b>"&quo true false - + 1 false diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/Lms/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/Lms/config.xml index 580fb9c892..c63aa7263c 100644 --- a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/Lms/config.xml +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/Lms/config.xml @@ -1,5 +1,4 @@ - - + @@ -8,15 +7,15 @@ - + false -1 - -1 + 10 -1 - 5 + 2 @@ -35,77 +34,78 @@ image_tag <font color=red size=2><b>CAUTION: If the value is blank, image tag will be taken from the latest metadata.json.</b></font> - + false - + private_branch - + choice-parameter-2544395024638227 1 +return """<b>This parameter is not used</b>""" false - - + + false Lms Deploy/dev/Core/Lms - + ET_FORMATTED_HTML true - + branch_or_tag - + choice-parameter-2620434998790477 1 +return """<b>This parameter is not used</b>""" false - - + + false Lms Deploy/dev/Core/Lms - + ET_FORMATTED_HTML true - + 0 0 false project false - + + - + ArtifactUpload/dev/Core/Lms SUCCESS @@ -117,8 +117,8 @@ return """<b>This parameter is not used</b>"&quo - - + + 2 @@ -127,7 +127,7 @@ return """<b>This parameter is not used</b>"&quo - ${branch_or_tag} + summary-aggregate false @@ -136,7 +136,7 @@ return """<b>This parameter is not used</b>"&quo true false - + 1 false diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/Logging/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/Logging/config.xml index 70c06dbdc4..0bf64894bd 100644 --- a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/Logging/config.xml +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/Logging/config.xml @@ -6,10 +6,10 @@ - 10 - -1 + -1 + 10 -1 - 5 + 2 diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/Logstash/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/Logstash/config.xml index 40ece3d118..8a028a7772 100644 --- a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/Logstash/config.xml +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/Logstash/config.xml @@ -7,9 +7,9 @@ -1 - -1 + 10 -1 - 5 + 2 diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/Monitoring/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/Monitoring/config.xml index 5d8bcbb802..dcab0240de 100644 --- a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/Monitoring/config.xml +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/Monitoring/config.xml @@ -1,15 +1,14 @@ - - + - + false -1 - -1 + 10 -1 - 5 + 2 @@ -19,56 +18,56 @@ - + private_branch - + choice-parameter-186775018293883 1 +return """<b>This parameter is not used</b>""" false - - + + false Monitoring Deploy/dev/Core/Monitoring - + ET_FORMATTED_HTML true - + branch_or_tag - + choice-parameter-186775024902722 1 +return """<b>This parameter is not used</b>""" false - - + + false Monitoring Deploy/dev/Core/Monitoring - + ET_FORMATTED_HTML true @@ -92,18 +91,19 @@ return """<b>This parameter is not used</b>"&quo - + 0 0 false project false - + + - - + + 2 @@ -112,7 +112,7 @@ return """<b>This parameter is not used</b>"&quo - ${branch_or_tag} + sunbird-monitoring-release-3.5.0 false @@ -121,7 +121,7 @@ return """<b>This parameter is not used</b>"&quo true false - + 1 false diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/Notification/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/Notification/config.xml index ccf3d0f4a6..6594417008 100644 --- a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/Notification/config.xml +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/Notification/config.xml @@ -14,9 +14,9 @@ -1 - -1 + 10 -1 - 5 + 2 diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/Oauth/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/Oauth/config.xml index a90507de47..6bbe79142a 100644 --- a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/Oauth/config.xml +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/Oauth/config.xml @@ -6,10 +6,10 @@ - 10 - -1 + -1 + 10 -1 - 5 + 2 diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/OnboardAPIs/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/OnboardAPIs/config.xml index 7e9662ce0e..a122d804d2 100644 --- a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/OnboardAPIs/config.xml +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/OnboardAPIs/config.xml @@ -14,9 +14,9 @@ -1 - -1 + 10 -1 - 5 + 2 @@ -96,12 +96,12 @@ return """<b>This parameter is not used</b>"&quo 2 - https://github.com/project-sunbird/sunbird-devops + https://github.com/project-sunbird/sunbird-devops.git - ${branch_or_tag} + release-2.7.0 false diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/OnboardConsumers/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/OnboardConsumers/config.xml index d1a4d4cfc1..44efa4f3e0 100644 --- a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/OnboardConsumers/config.xml +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/OnboardConsumers/config.xml @@ -7,9 +7,9 @@ -1 - -1 + 10 -1 - 5 + 2 @@ -94,7 +94,7 @@ return """<b>This parameter is not used</b>"&quo - ${branch_or_tag} + release-2.7.0 false diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/Player/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/Player/config.xml index 04b4bc73bd..6b5fd45cb7 100644 --- a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/Player/config.xml +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/Player/config.xml @@ -1,5 +1,4 @@ - - + @@ -8,15 +7,15 @@ - + false -1 - -1 + 10 -1 - 5 + 2 @@ -35,75 +34,78 @@ image_tag <font color=red size=2><b>CAUTION: If the value is blank, image tag will be taken from the latest metadata.json.</b></font> - + false - + private_branch - + choice-parameter-2544395024638227 1 +return """<b>This parameter is not used</b>""" false - - + + false Player + Deploy/dev/Core/Player - + ET_FORMATTED_HTML true - + branch_or_tag - + choice-parameter-2620434998790477 1 +return """<b>This parameter is not used</b>""" false - - + + false Player + Deploy/dev/Core/Player - + ET_FORMATTED_HTML true - + 0 0 false project false - + + - + Deploy/dev/Core/PlayerCDN SUCCESS @@ -115,8 +117,8 @@ return """<b>This parameter is not used</b>"&quo - - + + 2 @@ -134,7 +136,7 @@ return """<b>This parameter is not used</b>"&quo true false - + 1 false diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/PlayerCDN/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/PlayerCDN/config.xml index c7d437a52b..1a32fe8014 100644 --- a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/PlayerCDN/config.xml +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/PlayerCDN/config.xml @@ -1,5 +1,5 @@ - + @@ -14,9 +14,9 @@ -1 - -1 + 10 -1 - 5 + 2 @@ -38,13 +38,13 @@ false - + private_branch choice-parameter-2544395024638227 1 false - + false @@ -64,13 +64,13 @@ return """<b>This parameter is not used</b>"&quo ET_FORMATTED_HTML true - + branch_or_tag choice-parameter-2620434998790477 1 false - + false @@ -99,7 +99,7 @@ return """<b>This parameter is not used</b>"&quo - + 0 0 @@ -107,6 +107,7 @@ return """<b>This parameter is not used</b>"&quo project false + 1 @@ -123,8 +124,8 @@ return """<b>This parameter is not used</b>"&quo - - + + 2 @@ -152,5 +153,5 @@ return """<b>This parameter is not used</b>"&quo false - false + true \ No newline at end of file diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/Print/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/Print/config.xml index d6239bef9a..a59ba36bee 100644 --- a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/Print/config.xml +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/Print/config.xml @@ -14,9 +14,9 @@ -1 - -1 + 10 -1 - 5 + 2 @@ -127,7 +127,7 @@ return """<b>This parameter is not used</b>"&quo - ${branch_or_tag} + release-2.7.0 false diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/Proxy/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/Proxy/config.xml index b41cfe595c..6867343613 100644 --- a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/Proxy/config.xml +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/Proxy/config.xml @@ -1,15 +1,14 @@ - - + - + false -1 - -1 + 10 -1 - 5 + 2 @@ -28,75 +27,78 @@ image_tag <font color=red size=2><b>CAUTION: If the value is blank, image tag will be taken from the latest metadata.json.</b></font> - + false - + private_branch - + choice-parameter-2544395024638227 1 +return """<b>This parameter is not used</b>""" false - - + + false Proxy + Deploy/dev/Core/Proxy - + ET_FORMATTED_HTML true - + branch_or_tag - + choice-parameter-2620434998790477 1 +return """<b>This parameter is not used</b>""" false - - + + false Proxy + Deploy/dev/Core/Proxy - + ET_FORMATTED_HTML true - + 0 0 false project false - + + - + ArtifactUpload/dev/Core/Proxy SUCCESS @@ -108,8 +110,8 @@ return """<b>This parameter is not used</b>"&quo - - + + 2 @@ -127,7 +129,7 @@ return """<b>This parameter is not used</b>"&quo true false - + 1 false diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/ReloadContainerServices/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/ReloadContainerServices/config.xml index 3e98e52376..915daeeb8d 100644 --- a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/ReloadContainerServices/config.xml +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/ReloadContainerServices/config.xml @@ -7,9 +7,9 @@ -1 - -1 + 10 -1 - -1 + 2 diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/Telemetry/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/Telemetry/config.xml index d41ac682b3..122d8aded6 100644 --- a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/Telemetry/config.xml +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/Telemetry/config.xml @@ -14,9 +14,9 @@ -1 - -1 + 10 -1 - 5 + 2 diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/TelemetryLogstash/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/TelemetryLogstash/config.xml index 3f59f70e35..ef548d986a 100644 --- a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/TelemetryLogstash/config.xml +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/TelemetryLogstash/config.xml @@ -7,9 +7,9 @@ -1 - -1 + 10 -1 - 5 + 2 diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/UserOrg/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/UserOrg/config.xml index 557e5f4597..c0cd9f5f4c 100644 --- a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/UserOrg/config.xml +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/UserOrg/config.xml @@ -14,9 +14,9 @@ -1 - -1 + 10 -1 - 5 + 2 diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/YarnOld/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/YarnOld/config.xml new file mode 100644 index 0000000000..e14279a743 --- /dev/null +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/YarnOld/config.xml @@ -0,0 +1,234 @@ + + + + + + hudson.model.ParametersDefinitionProperty + com.sonyericsson.rebuild.RebuildSettings + + + + + false + + + + -1 + 10 + -1 + 2 + + + + + false + false + + + + + absolute_job_path + <font color=dimgray size=2><b>Do not change this value! The metadata.json will be copied from this job.</b></font> + ArtifactUpload/dev/Core/Yarn + false + + + artifact_source + <font color=dimgray size=2><b> +ArtifactRepo - Download the artifact from azure blob, JenkinsJob - Use the atrifact from Jenkins job.</b></font> + choice-parameter-9061667106947 + 1 + + false + + + + false + + + Yarn + + + PT_SINGLE_SELECT + false + 1 + + + build_number + + choice-parameter-9061670571657 + 1 + + false + + + + false + + + Yarn + + artifact_source + ET_FORMATTED_HTML + true + + + artifact_version + + choice-parameter-9061673103864 + 1 + + false + + + + false + + + Yarn + + artifact_source + ET_FORMATTED_HTML + true + + + private_branch + + choice-parameter-2544395024638227 + 1 + + false + + + + false + + + Yarn + + + ET_FORMATTED_HTML + true + + + branch_or_tag + + choice-parameter-2620434998790477 + 1 + + false + + + + false + + + Yarn + + + ET_FORMATTED_HTML + true + + + job_names_to_deploy + <font color=green size=2><b>Choose the samza app names to deploy and this will kill the selected samza app and deploy them. Multi selection is available.</b></font> + choice-parameter-8026182213525059 + 1 + + false + + + + false + + + Yarn + + + PT_MULTI_SELECT + false + 1 + + + + + 0 + 0 + + false + project + false + + + + + + + + + 2 + + + https://github.com/project-sunbird/sunbird-devops.git + + + + + ${branch_or_tag} + + + false + + + + true + false + + 1 + false + + + + pipelines/deploy/yarn/Jenkinsfile + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/offlineInstaller/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/offlineInstaller/config.xml new file mode 100644 index 0000000000..bd1b7a0684 --- /dev/null +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/offlineInstaller/config.xml @@ -0,0 +1,138 @@ + + + + + false + + + + -1 + 10 + -1 + 2 + + + + + false + false + + + + + private_branch + + choice-parameter-2544395024638227 + 1 + + false + + + + false + + + offlineInstaller + Deploy/dev/Core/offlineInstaller + + + ET_FORMATTED_HTML + true + + + branch_or_tag + + choice-parameter-2620434998790477 + 1 + + false + + + + false + + + offlineInstaller + Deploy/dev/Core/offlineInstaller + + + ET_FORMATTED_HTML + true + + + sunbirded_installer_branch_or_tag + <font color=dimgray size=2><b>Provide the branch or tag of sunbirded offline installer repo [ <u>https://github.com/Sunbird-Ed/sunbird-desktop-app.git</u> ] for the build job.</b></font> + release-2.6.0 + false + + + offline_installer_type + <font color=dimgray size=2><b>Choose the type of installer you wanted to build</b></font> + + + linux64bit + windows64bit + windows32bit + + + + + + + 0 + 0 + + false + project + false + + 1 + + + + + + + + 2 + + + https://github.com/project-sunbird/sunbird-devops.git + + + + + test + + + false + + + + true + false + + 1 + false + + + + pipelines/offlineinstaller/Jenkinsfile + false + + + true + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/offlinewindowstest32/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/offlinewindowstest32/config.xml new file mode 100644 index 0000000000..5d2d3a1825 --- /dev/null +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/offlinewindowstest32/config.xml @@ -0,0 +1,135 @@ + + + + + false + + + + -1 + 10 + -1 + 2 + + + + + false + false + + + + + private_branch + + choice-parameter-2544395024638227 + 1 + + false + + + + false + + + offlinewindowstest32 + + + ET_FORMATTED_HTML + true + + + branch_or_tag + + choice-parameter-2620434998790477 + 1 + + false + + + + false + + + offlinewindowstest32 + + + ET_FORMATTED_HTML + true + + + sunbirded_installer_branch_or_tag + <font color=dimgray size=2><b>Provide the branch or tag of sunbirded offline installer repo [ <u>https://github.com/Sunbird-Ed/sunbird-desktop-app.git</u> ] for the build job.</b></font> + release-2.1 + false + + + offline_installer_type + <font color=dimgray size=2><b>Choose the type of installer you wanted to build</b></font> + + + windows32bit + windows64bit + linux64bit + + + + + + + 0 + 0 + + false + project + false + + + + + + + + + 2 + + + https://github.com/project-sunbird/sunbird-devops.git + + + + + ${branch_or_tag} + + + false + + + + true + false + + 1 + false + + + + pipelines/offlineinstaller/Jenkinsfile + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/offlinewindowstest64/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/offlinewindowstest64/config.xml new file mode 100644 index 0000000000..137949d93b --- /dev/null +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/offlinewindowstest64/config.xml @@ -0,0 +1,135 @@ + + + + + false + + + + -1 + 10 + -1 + 2 + + + + + false + false + + + + + private_branch + + choice-parameter-2544395024638227 + 1 + + false + + + + false + + + offlinewindowstest64 + + + ET_FORMATTED_HTML + true + + + branch_or_tag + + choice-parameter-2620434998790477 + 1 + + false + + + + false + + + offlinewindowstest64 + + + ET_FORMATTED_HTML + true + + + sunbirded_installer_branch_or_tag + <font color=dimgray size=2><b>Provide the branch or tag of sunbirded offline installer repo [ <u>https://github.com/Sunbird-Ed/sunbird-desktop-app.git</u> ] for the build job.</b></font> + release-2.1 + false + + + offline_installer_type + <font color=dimgray size=2><b>Choose the type of installer you wanted to build</b></font> + + + windows64bit + windows32bit + linux64bit + + + + + + + 0 + 0 + + false + project + false + + + + + + + + + 2 + + + https://github.com/project-sunbird/sunbird-devops.git + + + + + ${branch_or_tag} + + + false + + + + true + false + + 1 + false + + + + pipelines/offlineinstaller/Jenkinsfile + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/user-Keycloak/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/user-Keycloak/config.xml new file mode 100644 index 0000000000..1292b42c03 --- /dev/null +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Core/jobs/user-Keycloak/config.xml @@ -0,0 +1,214 @@ + + + + + false + + + + -1 + 10 + -1 + 2 + + + + + false + false + + + + + absolute_job_path + <font color=dimgray size=2><b>Do not change this value! The metadata.json will be copied from this job.</b></font> + ArtifactUpload/dev/Core/Keycloak + false + + + artifact_source + <font color=dimgray size=2><b> +ArtifactRepo - Download the artifact from azure blob, JenkinsJob - Use the atrifact from Jenkins job.</b></font> + choice-parameter-9600649228560 + 1 + + false + + + + false + + + user-Keycloak + Deploy/dev/Core/user-Keycloak + + + PT_SINGLE_SELECT + false + 1 + + + build_number + + choice-parameter-9600651313765 + 1 + + false + + + + false + + + user-Keycloak + Deploy/dev/Core/user-Keycloak + + artifact_source + ET_FORMATTED_HTML + true + + + artifact_version + + choice-parameter-9600653373369 + 1 + + false + + + + false + + + user-Keycloak + Deploy/dev/Core/user-Keycloak + + artifact_source + ET_FORMATTED_HTML + true + + + private_branch + + choice-parameter-2544395024638227 + 1 + + false + + + + false + + + user-Keycloak + Deploy/dev/Core/user-Keycloak + + + ET_FORMATTED_HTML + true + + + branch_or_tag + + choice-parameter-2620434998790477 + 1 + + false + + + + false + + + user-Keycloak + Deploy/dev/Core/user-Keycloak + + + ET_FORMATTED_HTML + true + + + sunbird_auth_branch_or_tag + <font color=dimgray size=2><b>Provide the branch or tag of sunbird auth repo.</b></font> + release-1.15_RC9 + false + + + + + 0 + 0 + + false + project + false + + + + + + + + + 2 + + + https://github.com/project-sunbird/sunbird-devops.git + + + + + ${branch_or_tag} + + + false + + + + true + false + + 1 + false + + + + pipelines/deploy/keycloak/Jenkinsfile.user + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/config.xml index ca27afff70..6a4f8d07e7 100644 --- a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/config.xml +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/config.xml @@ -1,12 +1,12 @@ - + - + - - + + @@ -17,6 +17,55 @@ false + + + Deployment View + false + false + + Lightbox + false + false + false + + false + + + false + 3 + false + + + + dahs + false + false + + + + + + + + + + + + + + + + false + false + false + false + 50% + 50% + + + + + diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/AdhocScripts/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/AdhocScripts/config.xml new file mode 100644 index 0000000000..90b5124781 --- /dev/null +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/AdhocScripts/config.xml @@ -0,0 +1,227 @@ + + + + + hudson.model.ParametersDefinitionProperty + com.sonyericsson.rebuild.RebuildSettings + + + + + false + + + + -1 + 10 + -1 + 2 + + + + + false + false + + + + + absolute_job_path + <font color=dimgray size=2><b>Do not change this value! The metadata.json will be copied from this job.</b></font> + ArtifactUpload/dev/DataPipeline/AdhocScripts + false + + + artifact_source + <font color=dimgray size=2><b> +ArtifactRepo - Download the artifact from azure blob, JenkinsJob - Use the atrifact from Jenkins job.</b></font> + choice-parameter-9061667106947 + 1 + + false + + + + AdhocScripts + Deploy/dev/DataPipeline/AdhocScripts + + + PT_SINGLE_SELECT + false + 1 + + + build_number + + choice-parameter-9061670571657 + 1 + + false + + + + AdhocScripts + Deploy/dev/DataPipeline/AdhocScripts + + artifact_source + ET_FORMATTED_HTML + true + + + artifact_version + + choice-parameter-9061673103864 + 1 + + false + + + + AdhocScripts + Deploy/dev/DataPipeline/AdhocScripts + + artifact_source + ET_FORMATTED_HTML + true + + + private_branch + + choice-parameter-2544395024638227 + 1 + + false + + + + false + + + AdhocScripts + Deploy/dev/DataPipeline/AdhocScripts + + + ET_FORMATTED_HTML + true + + + branch_or_tag + + choice-parameter-2620434998790477 + 1 + + false + + + + false + + + AdhocScripts + Deploy/dev/DataPipeline/AdhocScripts + + + ET_FORMATTED_HTML + true + + + + + 0 + 0 + + false + project + false + + + + + + + + ArtifactUpload/dev/DataPipeline/AdhocScripts + + SUCCESS + 0 + BLUE + true + + + + + + + + 2 + + + https://github.com/project-sunbird/sunbird-data-pipeline.git + githubHarsha + + + + + release-2.9.0 + + + false + + + + true + false + + 0 + false + + + + pipelines/deploy/datascience/Jenkinsfile + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/AnalyticsAPI/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/AnalyticsAPI/config.xml index dfe786f734..2a39d1b1f1 100644 --- a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/AnalyticsAPI/config.xml +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/AnalyticsAPI/config.xml @@ -1,5 +1,4 @@ - - + @@ -8,15 +7,15 @@ - + false -1 - -1 + 10 -1 - 5 + 2 @@ -32,158 +31,169 @@ ArtifactUpload/dev/DataPipeline/Analytics false - + artifact_source <font color=dimgray size=2><b> ArtifactRepo - Download the artifact from azure blob, JenkinsJob - Use the atrifact from Jenkins job.</b></font> choice-parameter-9061667106947 - 1 + 2 false - - + + AnalyticsAPI Deploy/dev/DataPipeline/AnalyticsAPI - + PT_SINGLE_SELECT false 1 - + build_number - + choice-parameter-9061670571657 1 false - - + + AnalyticsAPI Deploy/dev/DataPipeline/AnalyticsAPI - + + + artifact_source + JenkinsJob + + artifact_source ET_FORMATTED_HTML true - + artifact_version - + choice-parameter-9061673103864 1 false - - + + AnalyticsAPI Deploy/dev/DataPipeline/AnalyticsAPI - + + + artifact_source + JenkinsJob + + artifact_source ET_FORMATTED_HTML true - + private_branch - + choice-parameter-2544395024638227 1 +return """<b>This parameter is not used</b>""" false - - + + false AnalyticsAPI Deploy/dev/DataPipeline/AnalyticsAPI - + ET_FORMATTED_HTML true - + branch_or_tag - + choice-parameter-2620434998790477 1 +return """<b>This parameter is not used</b>""" false - - + + false AnalyticsAPI Deploy/dev/DataPipeline/AnalyticsAPI - + ET_FORMATTED_HTML true - + 0 0 false project false - + + - - + + 2 @@ -192,7 +202,7 @@ return """<b>This parameter is not used</b>"&quo - ${branch_or_tag} + release-2.7.0 false @@ -201,7 +211,7 @@ return """<b>This parameter is not used</b>"&quo true false - + 0 false @@ -211,5 +221,5 @@ return """<b>This parameter is not used</b>"&quo false - false + true \ No newline at end of file diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/AnalyticsCore/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/AnalyticsCore/config.xml new file mode 100644 index 0000000000..aaf1954e32 --- /dev/null +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/AnalyticsCore/config.xml @@ -0,0 +1,239 @@ + + + + + hudson.model.ParametersDefinitionProperty + com.sonyericsson.rebuild.RebuildSettings + + + + + false + + + + -1 + 10 + -1 + 2 + + + + + false + false + + + + + absolute_job_path + <font color=dimgray size=2><b>Do not change this value! The metadata.json will be copied from this job.</b></font> + ArtifactUpload/dev/DataPipeline/AnalyticsCore + false + + + artifact_source + <font color=dimgray size=2><b> +ArtifactRepo - Download the artifact from azure blob, JenkinsJob - Use the atrifact from Jenkins job.</b></font> + choice-parameter-9061667106947 + 1 + + false + + + + AnalyticsCore + Deploy/dev/DataPipeline/AnalyticsCore + + + PT_SINGLE_SELECT + false + 1 + + + build_number + + choice-parameter-9061670571657 + 1 + + false + + + + AnalyticsCore + Deploy/dev/DataPipeline/AnalyticsCore + + artifact_source + ET_FORMATTED_HTML + true + + + artifact_version + + choice-parameter-9061673103864 + 1 + + false + + + + AnalyticsCore + Deploy/dev/DataPipeline/AnalyticsCore + + artifact_source + ET_FORMATTED_HTML + true + + + private_branch + + choice-parameter-2544395024638227 + 1 + + false + + + + false + + + AnalyticsCore + Deploy/dev/DataPipeline/AnalyticsCore + + + ET_FORMATTED_HTML + true + + + branch_or_tag + + choice-parameter-2620434998790477 + 1 + + false + + + + false + + + AnalyticsCore + Deploy/dev/DataPipeline/AnalyticsCore + + + ET_FORMATTED_HTML + true + + + module + +<font color=dimgray size=2><b>It will deploy only lpa_core_artifacts(analytics-core & analytics-framework) jar.</b></font> + framework + false + + + remote + + spark + false + + + + + 0 + 0 + + false + project + false + + + + + + + + ArtifactUpload/dev/DataPipeline/AnalyticsCore + + SUCCESS + 0 + BLUE + true + + + + + + + + 2 + + + https://github.com/project-sunbird/sunbird-data-pipeline.git + + + + + ${branch_or_tag} + + + false + + + + true + false + + 0 + false + + + + pipelines/deploy/data-products/Jenkinsfile + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/AnalyticsFetchLogs/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/AnalyticsFetchLogs/config.xml index a8ca2905d1..f230bc0a3b 100644 --- a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/AnalyticsFetchLogs/config.xml +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/AnalyticsFetchLogs/config.xml @@ -1,5 +1,4 @@ - - + @@ -8,15 +7,15 @@ - + false -1 - -1 + 10 -1 - 5 + 2 @@ -48,73 +47,74 @@ - + private_branch - + choice-parameter-2544395024638227 1 +return """<b>This parameter is not used</b>""" false - - + + false AnalyticsFetchLogs Deploy/dev/DataPipeline/AnalyticsFetchLogs - + ET_FORMATTED_HTML true - + branch_or_tag - + choice-parameter-2620434998790477 1 +return """<b>This parameter is not used</b>""" false - - + + false AnalyticsFetchLogs Deploy/dev/DataPipeline/AnalyticsFetchLogs - + ET_FORMATTED_HTML true - + 0 0 false project false - + + - - + + 2 @@ -132,7 +132,7 @@ return """<b>This parameter is not used</b>"&quo true false - + 1 false diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/AnalyticsGeoLocationDBSetup/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/AnalyticsGeoLocationDBSetup/config.xml index 23e99c74f0..06c5844794 100644 --- a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/AnalyticsGeoLocationDBSetup/config.xml +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/AnalyticsGeoLocationDBSetup/config.xml @@ -14,9 +14,9 @@ -1 - -1 + 10 -1 - 5 + 2 diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/AnalyticsPopulatePSQLConsumerChannelMapping/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/AnalyticsPopulatePSQLConsumerChannelMapping/config.xml index 1f15972991..9b5f1d1ae9 100644 --- a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/AnalyticsPopulatePSQLConsumerChannelMapping/config.xml +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/AnalyticsPopulatePSQLConsumerChannelMapping/config.xml @@ -1,5 +1,4 @@ - - + @@ -8,15 +7,15 @@ - + false -1 - -1 + 10 -1 - 5 + 2 @@ -54,77 +53,78 @@ analytics-team false - + private_branch - + choice-parameter-2544395024638227 1 +return """<b>This parameter is not used</b>""" false - - + + false AnalyticsPopulatePSQLConsumerChannelMapping Deploy/dev/DataPipeline/AnalyticsPopulatePSQLConsumerChannelMapping - + ET_FORMATTED_HTML true - + branch_or_tag - + choice-parameter-2620434998790477 1 +return """<b>This parameter is not used</b>""" false - - + + false AnalyticsPopulatePSQLConsumerChannelMapping Deploy/dev/DataPipeline/AnalyticsPopulatePSQLConsumerChannelMapping - + ET_FORMATTED_HTML true - + 0 0 false project false - + + - - + + 2 - https://github.com/project-sunbird/sunbird-data-pipeline.git + https://github.com/sowmya-dixit/sunbird-data-pipeline.git @@ -138,7 +138,7 @@ return """<b>This parameter is not used</b>"&quo true false - + 0 false diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/AnalyticsReplayJobs/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/AnalyticsReplayJobs/config.xml index cf23738d91..c67809a5f3 100644 --- a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/AnalyticsReplayJobs/config.xml +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/AnalyticsReplayJobs/config.xml @@ -1,5 +1,4 @@ - - + @@ -8,15 +7,15 @@ - + false -1 - -1 + 10 -1 - 5 + 2 @@ -45,9 +44,10 @@ - job_id - <font color=dimgray size=2><b>Specify the job id.</b></font> - + batch_identifier + <font color=dimgray size=2><b>Specify The BatchId to Generate report for specific batch</b></font> +<font color=dimgray size=2><b>NOTE: Only Applicable if you are running course-metrics and assessment metrics job</b></font> + false @@ -68,73 +68,91 @@ 30 false - + private_branch - + choice-parameter-2544395024638227 1 +return """<b>This parameter is not used</b>""" false - - + + false AnalyticsReplayJobs Deploy/dev/DataPipeline/AnalyticsReplayJobs - + ET_FORMATTED_HTML true - + branch_or_tag - + choice-parameter-2620434998790477 1 +return """<b>This parameter is not used</b>""" false - - + + false AnalyticsReplayJobs Deploy/dev/DataPipeline/AnalyticsReplayJobs - + ET_FORMATTED_HTML true + + keyword + Optional - Enter a keyword to generate a report for the "program-collection-summary-report" + + false + + + job_id + <font color=dimgray size=2><b>Specify the job id.</b></font> + + + progress-exhaust + userinfo-exhaust + response-exhaust + + + - + 0 0 false project false - + + - - + + 2 @@ -152,7 +170,7 @@ return """<b>This parameter is not used</b>"&quo true false - + 0 false diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/AnalyticsService/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/AnalyticsService/config.xml new file mode 100644 index 0000000000..f1b3a45ba2 --- /dev/null +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/AnalyticsService/config.xml @@ -0,0 +1,225 @@ + + + + + hudson.model.ParametersDefinitionProperty + com.sonyericsson.rebuild.RebuildSettings + + + + + false + + + + -1 + 10 + -1 + 2 + + + + + false + false + + + + + absolute_job_path + <font color=dimgray size=2><b>Do not change this value! The metadata.json will be copied from this job.</b></font> + ArtifactUpload/dev/DataPipeline/AnalyticsService + false + + + artifact_source + <font color=dimgray size=2><b> +ArtifactRepo - Download the artifact from azure blob, JenkinsJob - Use the atrifact from Jenkins job.</b></font> + choice-parameter-9061667106947 + 2 + + false + + + + AnalyticsService + Deploy/dev/DataPipeline/AnalyticsService + + + PT_SINGLE_SELECT + false + 1 + + + build_number + + choice-parameter-9061670571657 + 1 + + false + + + + AnalyticsService + Deploy/dev/DataPipeline/AnalyticsService + + + artifact_source + JenkinsJob + + + artifact_source + ET_FORMATTED_HTML + true + + + artifact_version + + choice-parameter-9061673103864 + 1 + + false + + + + AnalyticsService + Deploy/dev/DataPipeline/AnalyticsService + + + artifact_source + JenkinsJob + + + artifact_source + ET_FORMATTED_HTML + true + + + private_branch + + choice-parameter-2544395024638227 + 1 + + false + + + + false + + + AnalyticsService + Deploy/dev/DataPipeline/AnalyticsService + + + ET_FORMATTED_HTML + true + + + branch_or_tag + + choice-parameter-2620434998790477 + 1 + + false + + + + false + + + AnalyticsService + Deploy/dev/DataPipeline/AnalyticsService + + + ET_FORMATTED_HTML + true + + + + + 0 + 0 + + false + project + false + + + + + + + + + + 2 + + + https://github.com/project-sunbird/sunbird-data-pipeline.git + + + + + release-3.2.0 + + + false + + + + true + false + + 0 + false + + + + pipelines/deploy/analytics-api/Jenkinsfile + false + + + true + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/AnalyticsStartJobManager/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/AnalyticsStartJobManager/config.xml index 99fa738f03..d59080aeb4 100644 --- a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/AnalyticsStartJobManager/config.xml +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/AnalyticsStartJobManager/config.xml @@ -14,9 +14,9 @@ -1 - -1 + 10 -1 - 5 + 2 @@ -102,12 +102,12 @@ return """<b>This parameter is not used</b>"&quo 2 - https://github.com/project-sunbird/sunbird-data-pipeline.git + https://github.com/manjudr/sunbird-data-pipeline.git - ${branch_or_tag} + release-2.8.0 false diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/AnalyticsSubmitJobs/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/AnalyticsSubmitJobs/config.xml index e3639ec0fe..99d97a99a4 100644 --- a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/AnalyticsSubmitJobs/config.xml +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/AnalyticsSubmitJobs/config.xml @@ -14,9 +14,9 @@ -1 - -1 + 10 -1 - 5 + 2 @@ -102,12 +102,12 @@ return """<b>This parameter is not used</b>"&quo 2 - https://github.com/project-sunbird/sunbird-data-pipeline.git + https://github.com/manjudr/sunbird-data-pipeline.git - ${branch_or_tag} + dataproducts-ansible-changes false diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/ApiModule/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/ApiModule/config.xml index 940c48fa63..392e4f9837 100644 --- a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/ApiModule/config.xml +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/ApiModule/config.xml @@ -14,9 +14,9 @@ -1 - -1 + 10 -1 - 5 + 2 @@ -150,12 +150,12 @@ return """<b>This parameter is not used</b>"&quo 2 - https://github.com/project-sunbird/sunbird-data-pipeline.git + https://github.com/manjudr/sunbird-data-pipeline.git - ${branch_or_tag} + proxy-api false diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/CassandraDbUpdate/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/CassandraDbUpdate/config.xml index b1efd0f52e..312081ee3e 100644 --- a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/CassandraDbUpdate/config.xml +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/CassandraDbUpdate/config.xml @@ -1,5 +1,4 @@ - - + @@ -8,15 +7,15 @@ - + false -1 - -1 + 10 -1 - 5 + 2 @@ -26,71 +25,74 @@ - + private_branch - + choice-parameter-188134496458577 1 +return """<b>This parameter is not used</b>""" false - - + + false CassandraDbUpdate + Deploy/dev/DataPipeline/CassandraDbUpdate - + ET_FORMATTED_HTML true - + branch_or_tag - + choice-parameter-188134511232202 1 +return """<b>This parameter is not used</b>""" false - - + + false CassandraDbUpdate + Deploy/dev/DataPipeline/CassandraDbUpdate - + ET_FORMATTED_HTML true - + 0 0 false project false - + + - - + + 2 @@ -108,7 +110,7 @@ return """<b>This parameter is not used</b>"&quo true false - + 1 false diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/CoreDataProducts/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/CoreDataProducts/config.xml new file mode 100644 index 0000000000..f459c48329 --- /dev/null +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/CoreDataProducts/config.xml @@ -0,0 +1,238 @@ + + + + + hudson.model.ParametersDefinitionProperty + com.sonyericsson.rebuild.RebuildSettings + + + + + false + + + + -1 + 10 + -1 + 2 + + + + + false + false + + + + + absolute_job_path + <font color=dimgray size=2><b>Do not change this value! The metadata.json will be copied from this job.</b></font> + ArtifactUpload/dev/DataPipeline/CoreDataProducts + false + + + artifact_source + <font color=dimgray size=2><b> +ArtifactRepo - Download the artifact from azure blob, JenkinsJob - Use the atrifact from Jenkins job.</b></font> + choice-parameter-9061667106947 + 1 + + false + + + + CoreDataProducts + Deploy/dev/DataPipeline/CoreDataProducts + + + PT_SINGLE_SELECT + false + 1 + + + build_number + + choice-parameter-9061670571657 + 1 + + false + + + + CoreDataProducts + Deploy/dev/DataPipeline/CoreDataProducts + + artifact_source + ET_FORMATTED_HTML + true + + + artifact_version + + choice-parameter-9061673103864 + 1 + + false + + + + CoreDataProducts + Deploy/dev/DataPipeline/CoreDataProducts + + artifact_source + ET_FORMATTED_HTML + true + + + private_branch + + choice-parameter-2544395024638227 + 1 + + false + + + + false + + + CoreDataProducts + Deploy/dev/DataPipeline/CoreDataProducts + + + ET_FORMATTED_HTML + true + + + branch_or_tag + + choice-parameter-2620434998790477 + 1 + + false + + + + false + + + CoreDataProducts + Deploy/dev/DataPipeline/CoreDataProducts + + + ET_FORMATTED_HTML + true + + + module + <font color=dimgray size=2><b>It will deploy only lpa_core_dp_artifacts(batch-models & job-manager) jar.</b></font> + dataproducts,default-jobs + false + + + remote + + spark + false + + + + + 0 + 0 + + false + project + false + + + + + + + + ArtifactUpload/dev/DataPipeline/CoreDataProducts + + SUCCESS + 0 + BLUE + true + + + + + + + + 2 + + + https://github.com/project-sunbird/sunbird-data-pipeline.git + + + + + ${branch_or_tag} + + + false + + + + true + false + + 0 + false + + + + pipelines/deploy/data-products/Jenkinsfile + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/DataProducts/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/DataProducts/config.xml index 7826dc016a..8f09be5bc6 100644 --- a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/DataProducts/config.xml +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/DataProducts/config.xml @@ -1,5 +1,4 @@ - - + @@ -8,15 +7,15 @@ - + false -1 - -1 + 10 -1 - 5 + 2 @@ -32,51 +31,51 @@ ArtifactUpload/dev/DataPipeline/Analytics false - + artifact_source <font color=dimgray size=2><b> ArtifactRepo - Download the artifact from azure blob, JenkinsJob - Use the atrifact from Jenkins job.</b></font> choice-parameter-9061667106947 1 false - - + + DataProducts Deploy/dev/DataPipeline/DataProducts - + PT_SINGLE_SELECT false 1 - + build_number - + choice-parameter-9061670571657 1 false - - + + @@ -87,23 +86,23 @@ return "<b>Not Applicable</b>" ET_FORMATTED_HTML true - + artifact_version - + choice-parameter-9061673103864 1 false - - + + @@ -114,75 +113,76 @@ return "<b>Not Applicable</b>" ET_FORMATTED_HTML true - + private_branch - + choice-parameter-2544395024638227 1 +return """<b>This parameter is not used</b>""" false - - + + false DataProducts Deploy/dev/DataPipeline/DataProducts - + ET_FORMATTED_HTML true - + branch_or_tag - + choice-parameter-2620434998790477 1 +return """<b>This parameter is not used</b>""" false - - + + false DataProducts Deploy/dev/DataPipeline/DataProducts - + ET_FORMATTED_HTML true - + 0 0 false project false - + + - - ArtifactUpload/dev/DataPipeline/Analytics + + ArtifactUpload/dev/DataPipeline/AnalyticsCore SUCCESS 0 @@ -193,8 +193,8 @@ return """<b>This parameter is not used</b>"&quo - - + + 2 @@ -212,7 +212,7 @@ return """<b>This parameter is not used</b>"&quo true false - + 0 false diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/DataReplayJob/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/DataReplayJob/config.xml new file mode 100644 index 0000000000..2121bb596b --- /dev/null +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/DataReplayJob/config.xml @@ -0,0 +1,153 @@ + + + + + + hudson.model.ParametersDefinitionProperty + com.sonyericsson.rebuild.RebuildSettings + + + + + false + + + + -1 + 10 + -1 + 2 + + + + + false + false + + + + + container + <font color=dimgray size=2><b>Specify the container for data replay.</b></font> + + false + + + prefix + <font color=dimgray size=2><b>Specify the prefix for data replay.</b></font> + + false + + + start_date + <font color=dimgray size=2><b>Specify the start date. The default value is just a placeholder which can be changed as per need.</b></font> + 2017-05-01 + false + + + end_date + <font color=dimgray size=2><b>Specify the end date. The default value is just a placeholder which can be changed as per need.</b></font> + 2017-07-11 + false + + + delete_backups + <font color=dimgray size=2><b>Boolean field indicating whether to delete backups or not</b></font> + false + + + private_branch + + choice-parameter-2544395024638227 + 1 + + false + + + + false + + + DataReplayJob + Deploy/dev/DataPipeline/DataReplayJob + + + ET_FORMATTED_HTML + true + + + branch_or_tag + + choice-parameter-2620434998790477 + 1 + + false + + + + false + + + DataReplayJob + Deploy/dev/DataPipeline/DataReplayJob + + + ET_FORMATTED_HTML + true + + + + + 0 + 0 + + false + project + false + + + + + + 2 + + + https://github.com/sowmya-dixit/sunbird-data-pipeline.git + + + + + release-2.8.0 + + + false + + + + true + false + + 0 + false + + + + pipelines/deploy/data-replay/Jenkinsfile.replay + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/DataReplayScript/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/DataReplayScript/config.xml new file mode 100644 index 0000000000..55e382d7aa --- /dev/null +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/DataReplayScript/config.xml @@ -0,0 +1,227 @@ + + + + + + hudson.model.ParametersDefinitionProperty + com.sonyericsson.rebuild.RebuildSettings + + + + + false + + + + -1 + 10 + -1 + 2 + + + + + false + false + + + + + absolute_job_path + <font color=dimgray size=2><b>Do not change this value! The metadata.json will be copied from this job.</b></font> + ArtifactUpload/dev/DataPipeline/DataReplay + false + + + artifact_source + <font color=dimgray size=2><b> +ArtifactRepo - Download the artifact from azure blob, JenkinsJob - Use the atrifact from Jenkins job.</b></font> + choice-parameter-9061667106947 + 1 + + false + + + + false + + + DataReplayScript + Deploy/dev/DataPipeline/DataReplayScript + + + PT_SINGLE_SELECT + false + 1 + + + build_number + + choice-parameter-9061670571657 + 1 + + false + + + + false + + + DataReplayScript + Deploy/dev/DataPipeline/DataReplayScript + + artifact_source + ET_FORMATTED_HTML + true + + + artifact_version + + choice-parameter-9061673103864 + 1 + + false + + + + false + + + DataReplayScript + Deploy/dev/DataPipeline/DataReplayScript + + artifact_source + ET_FORMATTED_HTML + true + + + private_branch + + choice-parameter-2544395024638227 + 1 + + false + + + + false + + + DataReplayScript + Deploy/dev/DataPipeline/DataReplayScript + + + ET_FORMATTED_HTML + true + + + branch_or_tag + + choice-parameter-2620434998790477 + 1 + + false + + + + false + + + DataReplayScript + Deploy/dev/DataPipeline/DataReplayScript + + + ET_FORMATTED_HTML + true + + + + + 0 + 0 + + false + project + false + + + + + + + ArtifactUpload/dev/DataPipeline/DataReplay + + SUCCESS + 0 + BLUE + true + + + + + + + + 2 + + + https://github.com/project-sunbird/sunbird-data-pipeline.git + githubHarsha + + + + + release-2.8.0 + + + false + + + + true + false + + 0 + false + + + + pipelines/deploy/data-replay/Jenkinsfile + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/DataproductsConfigUpdate/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/DataproductsConfigUpdate/config.xml index 6e006a10c1..3d602c216f 100644 --- a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/DataproductsConfigUpdate/config.xml +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/DataproductsConfigUpdate/config.xml @@ -1,5 +1,4 @@ - - + @@ -8,15 +7,15 @@ - + false -1 - -1 + 10 -1 - 5 + 2 @@ -32,88 +31,95 @@ Please provide the tag name. Provide the comma separated value if you want to give more than 1 tags.[ Ex: clean-cronjobs,cronjobs,update-config ] </b></font> - + false - + private_branch - + choice-parameter-2544395024638227 1 +return """<b>This parameter is not used</b>""" false - - + + false DataproductsConfigUpdate Deploy/dev/DataPipeline/DataproductsConfigUpdate - + ET_FORMATTED_HTML true - + branch_or_tag - + choice-parameter-2620434998790477 1 +return """<b>This parameter is not used</b>""" false - - + + false DataproductsConfigUpdate Deploy/dev/DataPipeline/DataproductsConfigUpdate - + ET_FORMATTED_HTML true + + remote + + spark + false + - + 0 0 false project false - + + - - + + 2 - https://github.com/project-sunbird/sunbird-data-pipeline.git + https://github.com/sowmya-dixit/sunbird-data-pipeline.git - ${branch_or_tag} + release-2.10.1 false @@ -122,7 +128,7 @@ return """<b>This parameter is not used</b>"&quo true false - + 1 false diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/DruidIngestion/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/DruidIngestion/config.xml index 30f4f7c78f..530f33936c 100644 --- a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/DruidIngestion/config.xml +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/DruidIngestion/config.xml @@ -1,5 +1,4 @@ - - + @@ -8,15 +7,15 @@ - + false -1 - -1 + 10 -1 - 5 + 2 @@ -39,74 +38,77 @@ To stop task: [stop-task] - + private_branch - + choice-parameter-193684482193674 1 +return """<b>This parameter is not used</b>""" false - - + + false DruidIngestion + Deploy/dev/DataPipeline/DruidIngestion - + ET_FORMATTED_HTML true - + branch_or_tag - + choice-parameter-193684493817846 1 +return """<b>This parameter is not used</b>""" false - - + + false DruidIngestion + Deploy/dev/DataPipeline/DruidIngestion - + ET_FORMATTED_HTML true - + 0 0 false project false - + + - - + + 2 @@ -124,7 +126,7 @@ return """<b>This parameter is not used</b>"&quo true false - + 0 false diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/DruidSummaryMonthlyRollup/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/DruidSummaryMonthlyRollup/config.xml new file mode 100644 index 0000000000..cba7924d7c --- /dev/null +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/DruidSummaryMonthlyRollup/config.xml @@ -0,0 +1,74 @@ + + + + + hudson.model.ParametersDefinitionProperty + com.sonyericsson.rebuild.RebuildSettings + + + + + false + + + + -1 + 10 + -1 + 2 + + + + + false + false + + + 0 + 0 + + false + project + false + + + + + + + H 22 1 * * + + + + + + + 2 + + + https://github.com/project-sunbird/sunbird-data-pipeline.git + + + + + release-3.3.0 + + + false + + + + true + false + + 0 + false + + + + pipelines/deploy/druid-summary-monthly-ingestion/Jenkinsfile + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/Druid_Health_Check/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/Druid_Health_Check/config.xml new file mode 100644 index 0000000000..27e6b355db --- /dev/null +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/Druid_Health_Check/config.xml @@ -0,0 +1,70 @@ + + + + + + hudson.model.ParametersDefinitionProperty + com.sonyericsson.rebuild.RebuildSettings + + + + + false + + + + -1 + 10 + -1 + 2 + + + + + false + false + + + 0 + 0 + + false + project + false + + + + + + + + + 2 + + + https://github.com/RevathiKotla/sunbird-data-pipeline.git + + + + + release-2.8.0 + + + false + + + + true + false + + 0 + false + + + + pipelines/ops/druid/Jenkinsfile.druidsegmentalert + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/Druid_ingestion_health_check/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/Druid_ingestion_health_check/config.xml new file mode 100644 index 0000000000..f56940d479 --- /dev/null +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/Druid_ingestion_health_check/config.xml @@ -0,0 +1,70 @@ + + + + + + hudson.model.ParametersDefinitionProperty + com.sonyericsson.rebuild.RebuildSettings + + + + + false + + + + -1 + 10 + -1 + 2 + + + + + false + false + + + 0 + 0 + + false + project + false + + + + + + + + + 2 + + + https://github.com/project-sunbird/sunbird-data-pipeline.git + + + + + release-2.8.0 + + + false + + + + true + false + + 0 + false + + + + pipelines/ops/druid/Jenkinsfile.druidingestionalert + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/Druid_segment_health_check/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/Druid_segment_health_check/config.xml new file mode 100644 index 0000000000..5315e4d563 --- /dev/null +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/Druid_segment_health_check/config.xml @@ -0,0 +1,74 @@ + + + + + + hudson.model.ParametersDefinitionProperty + com.sonyericsson.rebuild.RebuildSettings + + + + + false + + + + -1 + 10 + -1 + 2 + + + + + false + false + + + 0 + 0 + + false + project + false + + + + + + H/15 * * * * + + + + + + + 2 + + + https://github.com/project-sunbird/sunbird-data-pipeline.git + + + + + release-2.8.0 + + + false + + + + true + false + + 0 + false + + + + pipelines/ops/druid/Jenkinsfile.druidsegmentalert + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/ETLDruidContentIndexer/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/ETLDruidContentIndexer/config.xml index d6bcdef93c..6d9f4e68ae 100644 --- a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/ETLDruidContentIndexer/config.xml +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/ETLDruidContentIndexer/config.xml @@ -1,5 +1,4 @@ - - + @@ -8,15 +7,15 @@ - + false -1 - -1 + 10 -1 - 5 + 2 @@ -32,107 +31,111 @@ Deploy/dev/DataPipeline/ETLJobs false - + artifact_source <font color=dimgray size=2><b> ArtifactRepo - Download the artifact from azure blob, JenkinsJob - Use the atrifact from Jenkins job.</b></font> choice-parameter-9061667106947 1 false - - + + ETLDruidContentIndexer + Deploy/dev/DataPipeline/ETLDruidContentIndexer - + PT_SINGLE_SELECT false 1 - + build_number - + choice-parameter-9061670571657 1 false - - + + ETLDruidContentIndexer + Deploy/dev/DataPipeline/ETLDruidContentIndexer artifact_source ET_FORMATTED_HTML true - + artifact_version - + choice-parameter-9061673103864 1 false - - + + ETLDruidContentIndexer + Deploy/dev/DataPipeline/ETLDruidContentIndexer artifact_source ET_FORMATTED_HTML true - + private_branch - + choice-parameter-2544395024638227 1 +return """<b>This parameter is not used</b>""" false - - + + false ETLDruidContentIndexer + Deploy/dev/DataPipeline/ETLDruidContentIndexer - + ET_FORMATTED_HTML true @@ -146,36 +149,37 @@ Default Druid content indexer job will run as cron.</b></font> - + branch_or_tag - + choice-parameter-2620434998790477 1 +return """<b>This parameter is not used</b>""" false - - + + false ETLDruidContentIndexer + Deploy/dev/DataPipeline/ETLDruidContentIndexer - + ET_FORMATTED_HTML true invoke_type <font color=dimgray size=2><b> -If you select the "execute script from the invoke_type drop down then choose which script you want to execute."</b></font> +If you select the "execute script from the invoke_type drop down then choose which script you want to execute."</b></font> execute-script @@ -184,15 +188,16 @@ If you select the "execute script from the invoke_type drop down then choos - + 0 0 false project false - + + @@ -201,8 +206,8 @@ If you select the "execute script from the invoke_type drop down then choos - - + + 2 @@ -211,7 +216,7 @@ If you select the "execute script from the invoke_type drop down then choos - ${branch_or_tag} + release-3.4.0 false @@ -220,7 +225,7 @@ If you select the "execute script from the invoke_type drop down then choos true false - + 0 false diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/ETLJobs/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/ETLJobs/config.xml index f559a8b300..3951b1ca18 100644 --- a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/ETLJobs/config.xml +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/ETLJobs/config.xml @@ -1,5 +1,4 @@ - - + @@ -8,15 +7,15 @@ - + false -1 - -1 + 10 -1 - 5 + 2 @@ -46,7 +45,7 @@ Please select the action deploy or execute script.</b></font> script_to_run <font color=dimgray size=2><b> -If you select the "execute script from the invoke_type drop down then choose which script you want to execute."</b></font> +If you select the "execute script from the invoke_type drop down then choose which script you want to execute."</b></font> USER_CACHE_INDEXER @@ -56,151 +55,157 @@ If you select the "execute script from the invoke_type drop down then choos - + artifact_source <font color=dimgray size=2><b> ArtifactRepo - Download the artifact from azure blob, JenkinsJob - Use the atrifact from Jenkins job.</b></font> choice-parameter-9061667106947 1 false - - + + ETLJobs + Deploy/dev/DataPipeline/ETLJobs - + PT_SINGLE_SELECT false 1 - + build_number - + choice-parameter-9061670571657 1 false - - + + ETLJobs + Deploy/dev/DataPipeline/ETLJobs artifact_source ET_FORMATTED_HTML true - + artifact_version - + choice-parameter-9061673103864 1 false - - + + ETLJobs + Deploy/dev/DataPipeline/ETLJobs artifact_source ET_FORMATTED_HTML true - + private_branch - + choice-parameter-2544395024638227 1 +return """<b>This parameter is not used</b>""" false - - + + false ETLJobs + Deploy/dev/DataPipeline/ETLJobs - + ET_FORMATTED_HTML true - + branch_or_tag - + choice-parameter-2620434998790477 1 +return """<b>This parameter is not used</b>""" false - - + + false ETLJobs + Deploy/dev/DataPipeline/ETLJobs - + ET_FORMATTED_HTML true - + 0 0 false project false - + + - + ArtifactUpload/dev/DataPipeline/ETLJobs SUCCESS @@ -212,8 +217,8 @@ return """<b>This parameter is not used</b>"&quo - - + + 2 @@ -231,7 +236,7 @@ return """<b>This parameter is not used</b>"&quo true false - + 0 false diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/ETLUserCacheIndexer/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/ETLUserCacheIndexer/config.xml index 553749d1f5..169267af78 100644 --- a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/ETLUserCacheIndexer/config.xml +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/ETLUserCacheIndexer/config.xml @@ -1,5 +1,4 @@ - - + @@ -8,15 +7,15 @@ - + false -1 - -1 + 10 -1 - 5 + 2 @@ -32,107 +31,111 @@ Deploy/dev/DataPipeline/ETLJobs false - + artifact_source <font color=dimgray size=2><b> ArtifactRepo - Download the artifact from azure blob, JenkinsJob - Use the atrifact from Jenkins job.</b></font> choice-parameter-9061667106947 1 false - - + + ETLUserCacheIndexer + Deploy/dev/DataPipeline/ETLUserCacheIndexer - + PT_SINGLE_SELECT false 1 - + build_number - + choice-parameter-9061670571657 1 false - - + + ETLUserCacheIndexer + Deploy/dev/DataPipeline/ETLUserCacheIndexer artifact_source ET_FORMATTED_HTML true - + artifact_version - + choice-parameter-9061673103864 1 false - - + + ETLUserCacheIndexer + Deploy/dev/DataPipeline/ETLUserCacheIndexer artifact_source ET_FORMATTED_HTML true - + private_branch - + choice-parameter-2544395024638227 1 +return """<b>This parameter is not used</b>""" false - - + + false ETLUserCacheIndexer + Deploy/dev/DataPipeline/ETLUserCacheIndexer - + ET_FORMATTED_HTML true @@ -146,29 +149,30 @@ user cache indexer script will run.</b></font> - + branch_or_tag - + choice-parameter-2620434998790477 1 +return """<b>This parameter is not used</b>""" false - - + + false ETLUserCacheIndexer + Deploy/dev/DataPipeline/ETLUserCacheIndexer - + ET_FORMATTED_HTML true @@ -182,17 +186,39 @@ Please select the action deploy or execute script.</b></font> + + date + <font color=dimgray size=2><b> + Mention the Date in (YYYY-MM-DD) formate to load all the user data from this specific date of cassandra to redis</b></font> + "null" + false + + + user_id + <font color=dimgray size=2><b> + Mention the user id to populate the data in the redis</b></font> + "null" + false + + + populate_anonymous_user + <font color=dimgray size=2><b> + Mention the true/false to migrate the existing redis user data</b></font> + "false" + false + - + 0 0 false project false - + + @@ -201,8 +227,8 @@ Please select the action deploy or execute script.</b></font> - - + + 2 @@ -220,7 +246,7 @@ Please select the action deploy or execute script.</b></font> true false - + 0 false diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/EdDataProducts/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/EdDataProducts/config.xml new file mode 100644 index 0000000000..800cf6995e --- /dev/null +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/EdDataProducts/config.xml @@ -0,0 +1,238 @@ + + + + + hudson.model.ParametersDefinitionProperty + com.sonyericsson.rebuild.RebuildSettings + + + + + false + + + + -1 + 10 + -1 + 2 + + + + + false + false + + + + + absolute_job_path + <font color=dimgray size=2><b>Do not change this value! The metadata.json will be copied from this job.</b></font> + ArtifactUpload/dev/DataPipeline/EdDataProducts + false + + + artifact_source + <font color=dimgray size=2><b> +ArtifactRepo - Download the artifact from azure blob, JenkinsJob - Use the atrifact from Jenkins job.</b></font> + choice-parameter-9061667106947 + 1 + + false + + + + EdDataProducts + Deploy/dev/DataPipeline/EdDataProducts + + + PT_SINGLE_SELECT + false + 1 + + + build_number + + choice-parameter-9061670571657 + 1 + + false + + + + EdDataProducts + Deploy/dev/DataPipeline/EdDataProducts + + artifact_source + ET_FORMATTED_HTML + true + + + artifact_version + + choice-parameter-9061673103864 + 1 + + false + + + + EdDataProducts + Deploy/dev/DataPipeline/EdDataProducts + + artifact_source + ET_FORMATTED_HTML + true + + + private_branch + + choice-parameter-2544395024638227 + 1 + + false + + + + false + + + EdDataProducts + Deploy/dev/DataPipeline/EdDataProducts + + + ET_FORMATTED_HTML + true + + + branch_or_tag + + choice-parameter-2620434998790477 + 1 + + false + + + + false + + + EdDataProducts + Deploy/dev/DataPipeline/EdDataProducts + + + ET_FORMATTED_HTML + true + + + module + <font color=dimgray size=2><b>It will deploy only lpa_core_dp_artifacts(batch-models & job-manager) jar.</b></font> + ed-dataproducts + false + + + remote + + spark + false + + + + + 0 + 0 + + false + project + false + + + + + + + + ArtifactUpload/dev/DataPipeline/EdDataProducts + + SUCCESS + 0 + BLUE + true + + + + + + + + 2 + + + https://github.com/project-sunbird/sunbird-data-pipeline.git + + + + + ${branch_or_tag} + + + false + + + + true + false + + 0 + false + + + + pipelines/deploy/ed-dataproducts/Jenkinsfile + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/FlinkPipelineJobs/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/FlinkPipelineJobs/config.xml new file mode 100644 index 0000000000..37878bceb0 --- /dev/null +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/FlinkPipelineJobs/config.xml @@ -0,0 +1,172 @@ + + + + + hudson.model.ParametersDefinitionProperty + com.sonyericsson.rebuild.RebuildSettings + + + + + false + + + + -1 + 10 + -1 + 2 + + + + + false + false + + + + + private_branch + + choice-parameter-2544395024638227 + 1 + + false + + + + false + + + FlinkPipelineJobs + Deploy/dev/DataPipeline/FlinkPipelineJobs + + + ET_FORMATTED_HTML + true + + + branch_or_tag + + choice-parameter-2620434998790477 + 1 + + false + + + + false + + + FlinkPipelineJobs + Deploy/dev/DataPipeline/FlinkPipelineJobs + + + ET_FORMATTED_HTML + true + + + image_tag + <font color=red size=2><b>CAUTION: If the value is blank, image tag will be taken from the latest metadata.json.</b></font> + + false + + + absolute_job_path + <font color=dimgray size=2><b>Do not change this value! The metadata.json will be copied from this job.</b></font> + ArtifactUpload/dev/DataPipeline/FlinkPipelineJobs + false + + + job_names_to_deploy + <font color=green size=2><b>Choose the job names to deploy. Multi-selection is available.</b></font> + choice-parameter-1273072434092073 + 1 + + false + + + + FlinkPipelineJobs + Deploy/dev/DataPipeline/FlinkPipelineJobs + + + PT_MULTI_SELECT + false + 1 + + + + + 0 + 0 + + false + project + false + + + + + + + + + + 2 + + + https://github.com/kaali09/sunbird-data-pipeline.git + + + + + release-3.4.0 + + + false + + + + true + false + + 0 + false + + + + kubernetes/pipelines/deploy/Jenkinsfile + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/GraphitePrometheusExporter/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/GraphitePrometheusExporter/config.xml new file mode 100644 index 0000000000..bfe7fe3b67 --- /dev/null +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/GraphitePrometheusExporter/config.xml @@ -0,0 +1,127 @@ + + + + + hudson.model.ParametersDefinitionProperty + com.sonyericsson.rebuild.RebuildSettings + + + + + false + + + + -1 + 10 + -1 + 2 + + + + + false + false + + + + + private_branch + + choice-parameter-2544395024638227 + 1 + + false + + + + false + + + GraphitePrometheusExporter + Deploy/dev/DataPipeline/GraphitePrometheusExporter + + + ET_FORMATTED_HTML + true + + + branch_or_tag + + choice-parameter-2620434998790477 + 1 + + false + + + + false + + + GraphitePrometheusExporter + Deploy/dev/DataPipeline/GraphitePrometheusExporter + + + ET_FORMATTED_HTML + true + + + + + 0 + 0 + + false + project + false + + + + + + + + + + 2 + + + https://github.com/project-sunbird/sunbird-data-pipeline.git + + + + + release-3.3.0 + + + false + + + + true + false + + 0 + false + + + + pipelines/provision/graphite-exporter/Jenkinsfile + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/InfraMonitoring/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/InfraMonitoring/config.xml new file mode 100644 index 0000000000..9571821018 --- /dev/null +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/InfraMonitoring/config.xml @@ -0,0 +1,129 @@ + + + + + false + + + + -1 + 10 + -1 + 2 + + + + + false + false + + + + + private_branch + + choice-parameter-188158799721702 + 1 + + false + + + + false + + + Monitoring + + + ET_FORMATTED_HTML + true + + + branch_or_tag + + choice-parameter-188158802464010 + 1 + + false + + + + false + + + Monitoring + + + ET_FORMATTED_HTML + true + + + + + 0 + 0 + + false + project + false + + + + + + + + + FAILURE + 2 + RED + true + + + + + + + + 2 + + + https://github.com/project-sunbird/sunbird-devops.git + + + + + ${branch_or_tag} + + + false + + + + true + false + + 1 + false + + + + pipelines/deploy/monitor/DataPipeline/Jenkinsfile + false + + + false + diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/InternalKong/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/InternalKong/config.xml new file mode 100644 index 0000000000..371779b6f3 --- /dev/null +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/InternalKong/config.xml @@ -0,0 +1,180 @@ + + + + + + hudson.model.ParametersDefinitionProperty + com.sonyericsson.rebuild.RebuildSettings + + + + + false + + + + -1 + 10 + -1 + 2 + + + + + false + false + + + + + absolute_job_path + <font color=dimgray size=2><b>Do not change this value! The metadata.json will be copied from this job.</b></font> + ArtifactUpload/dev/Core/APIManager + false + + + artifact_source + <font color=dimgray size=2><b> +ArtifactRepo - Download the artifact from azure blob, JenkinsJob - Use the atrifact from Jenkins job.</b></font> + choice-parameter-9061667106947 + 1 + + false + + + + false + + + InternalKong + Deploy/dev/DataPipeline/InternalKong + + + PT_SINGLE_SELECT + false + 1 + + + image_tag + <font color=red size=2><b>CAUTION: If the value is blank, image tag will be taken from the latest metadata.json.</b></font> + + false + + + option + + + + onboard-apis + onboard-consumers + deploy-internal-kong + provision-kong-db + bootstrap-swarm + + + + + private_branch + + choice-parameter-2544395024638227 + 1 + + false + + + + false + + + InternalKong + Deploy/dev/DataPipeline/InternalKong + + + ET_FORMATTED_HTML + true + + + branch_or_tag + + choice-parameter-2620434998790477 + 1 + + false + + + + false + + + InternalKong + Deploy/dev/DataPipeline/InternalKong + + + ET_FORMATTED_HTML + true + + + + + 0 + 0 + + false + project + false + + + + + + + + + 2 + + + https://github.com/ekstep/sunbird-devops.git + githubPassword + + + + + release-2.10.0 + + + false + + + + true + false + + 0 + false + + + + pipelines/internal-kong/Jenkinsfile + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/KafkaIndexer/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/KafkaIndexer/config.xml index 906b7afeb9..e599b6964b 100644 --- a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/KafkaIndexer/config.xml +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/KafkaIndexer/config.xml @@ -1,5 +1,4 @@ - - + @@ -8,15 +7,15 @@ - + false -1 - -1 + 10 -1 - 5 + 2 @@ -26,82 +25,83 @@ - + private_branch - + choice-parameter-188153004575082 1 +return """<b>This parameter is not used</b>""" false - - + + false KafkaIndexer Deploy/dev/DataPipeline/KafkaIndexer - + ET_FORMATTED_HTML true - + branch_or_tag - + choice-parameter-188153015326365 1 +return """<b>This parameter is not used</b>""" false - - + + false KafkaIndexer Deploy/dev/DataPipeline/KafkaIndexer - + ET_FORMATTED_HTML true - + 0 0 false project false - + + - - + + 2 - https://github.com/project-sunbird/sunbird-data-pipeline.git + https://github.com/manjudr/sunbird-data-pipeline.git - ${branch_or_tag} + flink-logstash-setup false @@ -110,7 +110,7 @@ return """<b>This parameter is not used</b>"&quo true false - + 1 false diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/KafkaSetup/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/KafkaSetup/config.xml index 6a96ea641a..aa1b537b89 100644 --- a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/KafkaSetup/config.xml +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/KafkaSetup/config.xml @@ -1,5 +1,4 @@ - - + @@ -8,15 +7,15 @@ - + false -1 - -1 + 10 -1 - 5 + 2 @@ -26,73 +25,74 @@ - + private_branch - + choice-parameter-188157054642539 1 +return """<b>This parameter is not used</b>""" false - - + + false KafkaSetup Deploy/dev/DataPipeline/KafkaSetup - + ET_FORMATTED_HTML true - + branch_or_tag - + choice-parameter-188157057910170 1 +return """<b>This parameter is not used</b>""" false - - + + false KafkaSetup Deploy/dev/DataPipeline/KafkaSetup - + ET_UNORDERED_LIST true - + 0 0 false project false - + + - - + + 2 @@ -101,7 +101,7 @@ return """<b>This parameter is not used</b>"&quo - ${branch_or_tag} + release-3.4.0 false @@ -110,7 +110,7 @@ return """<b>This parameter is not used</b>"&quo true false - + 1 false diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/Logging/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/Logging/config.xml new file mode 100644 index 0000000000..490a9ba608 --- /dev/null +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/Logging/config.xml @@ -0,0 +1,145 @@ + + + + + hudson.model.ParametersDefinitionProperty + com.sonyericsson.rebuild.RebuildSettings + + + + + false + + + + -1 + 10 + -1 + 2 + + + + + false + false + + + + + private_branch + + choice-parameter-2544395024638227 + 1 + + false + + + + false + + + Logging + Deploy/dev/DataPipeline/Logging + + + ET_FORMATTED_HTML + true + + + branch_or_tag + + choice-parameter-2620434998790477 + 1 + + false + + + + false + + + Logging + Deploy/dev/DataPipeline/Logging + + + ET_FORMATTED_HTML + true + + + chartname + + + + fluentd-elasticsearch + + + + + role_name + + + + logging + + + + + + + 0 + 0 + + false + project + false + + + + + + + + + + 2 + + + https://github.com/kaali09/sunbird-devops.git + + + + + release-3.2.0 + + + false + + + + true + false + + 0 + false + + + + kubernetes/pipelines/logging/Jenkinsfile + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/MLWorkbench/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/MLWorkbench/config.xml new file mode 100644 index 0000000000..4772e037c5 --- /dev/null +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/MLWorkbench/config.xml @@ -0,0 +1,97 @@ + + + + + + hudson.model.ParametersDefinitionProperty + com.sonyericsson.rebuild.RebuildSettings + + + + + false + + + + -1 + 10 + -1 + 2 + + + + + false + false + + + + + absolute_job_path + <font color=black size=2><b>Do not change this value! The metadata.json will be copied from this job.</b></font> + ArtifactUpload/dev/DataPipeline/ml-workbench + false + + + image_tag + <font color=red size=2><b>CAUTION: If the value is blank, latest built image will be deployed.</b></font> + + false + + + + + 0 + 0 + + false + project + false + + + + + + + ArtifactUpload/dev/DataPipeline/ml-workbench + + SUCCESS + 0 + BLUE + true + + + + + + + + 2 + + + https://github.com/project-sunbird/sunbird-devops.git + + + + + ${branch_or_tag} + + + false + + + + true + false + + 0 + false + + + + pipelines/deploy/ml-workbench/Jenkinsfile + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/Monitoring/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/Monitoring/config.xml index dcfdb361be..2f345e87ea 100644 --- a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/Monitoring/config.xml +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/Monitoring/config.xml @@ -1,112 +1,122 @@ - - - - + + + + + hudson.model.ParametersDefinitionProperty + com.sonyericsson.rebuild.RebuildSettings + + + + false -1 - -1 + 10 -1 - 5 + 2 - + false false - + private_branch - - choice-parameter-188158799721702 + + choice-parameter-2544395024638227 1 +return """<b>This parameter is not used</b>""" false - - + + false Monitoring + Deploy/dev/DataPipeline/Monitoring - + ET_FORMATTED_HTML true - + branch_or_tag - - choice-parameter-188158802464010 + + choice-parameter-2620434998790477 1 +return """<b>This parameter is not used</b>""" false - - + + false Monitoring + Deploy/dev/DataPipeline/Monitoring - + ET_FORMATTED_HTML true + + tag + + + false + + + kubeconfigpath + + /var/lib/jenkins/secrets/dp-k8s.yml + false + - + 0 0 false project false - + + - - - - - - FAILURE - 2 - RED - true - - - + - - + + 2 - https://github.com/project-sunbird/sunbird-devops.git + https://github.com/kaali09/sunbird-data-pipeline.git - ${branch_or_tag} + release-3.5.0 false @@ -115,15 +125,15 @@ return """<b>This parameter is not used</b>"&quo true false - - 1 + + 0 false - pipelines/deploy/monitor/DataPipeline/Jenkinsfile + kubernetes/pipelines/monitoring/Jenkinsfile false false - + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/PipelineFlinkSummaryDenormStart/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/PipelineFlinkSummaryDenormStart/config.xml new file mode 100644 index 0000000000..95b4d9536f --- /dev/null +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/PipelineFlinkSummaryDenormStart/config.xml @@ -0,0 +1,139 @@ + + + + + hudson.model.ParametersDefinitionProperty + com.sonyericsson.rebuild.RebuildSettings + + + + + false + + + + -1 + 10 + -1 + 2 + + + + + false + false + + + + + private_branch + + choice-parameter-2544395024638227 + 1 + + false + + + + false + + + SummaryDenormStart + Deploy/dev/DataPipeline/SummaryDenormStart + + + ET_FORMATTED_HTML + true + + + branch_or_tag + + choice-parameter-2620434998790477 + 1 + + false + + + + false + + + SummaryDenormStart + Deploy/dev/DataPipeline/SummaryDenormStart + + + ET_FORMATTED_HTML + true + + + job_names + + summary-denormalization + false + + + action + + scaleup_taskmanager,scaleup_jobmanager + false + + + + + 0 + 0 + + false + project + false + + + + + + + + + + 2 + + + https://github.com/kaali09/sunbird-data-pipeline.git + + + + + release-3.3.0 + + + false + + + + true + false + + 0 + false + + + + kubernetes/pipelines/deploy/Jenkinsfile.startstop + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/PipelineFlinkSummaryDenormStop/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/PipelineFlinkSummaryDenormStop/config.xml new file mode 100644 index 0000000000..6af02c0417 --- /dev/null +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/PipelineFlinkSummaryDenormStop/config.xml @@ -0,0 +1,139 @@ + + + + + hudson.model.ParametersDefinitionProperty + com.sonyericsson.rebuild.RebuildSettings + + + + + false + + + + -1 + 10 + -1 + 2 + + + + + false + false + + + + + private_branch + + choice-parameter-2544395024638227 + 1 + + false + + + + false + + + SummaryDenormStop + Deploy/dev/DataPipeline/SummaryDenormStop + + + ET_FORMATTED_HTML + true + + + branch_or_tag + + choice-parameter-2620434998790477 + 1 + + false + + + + false + + + SummaryDenormStop + Deploy/dev/DataPipeline/SummaryDenormStop + + + ET_FORMATTED_HTML + true + + + job_names + + summary-denormalization + false + + + action + + scaledown_taskmanager,scaledown_jobmanager + false + + + + + 0 + 0 + + false + project + false + + + + + + + + + + 2 + + + https://github.com/kaali09/sunbird-data-pipeline.git + + + + + release-3.3.0 + + + false + + + + true + false + + 0 + false + + + + kubernetes/pipelines/deploy/Jenkinsfile.startstop + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/RunReportJob/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/RunReportJob/config.xml new file mode 100644 index 0000000000..547afa2198 --- /dev/null +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/RunReportJob/config.xml @@ -0,0 +1,130 @@ + + + + + hudson.model.ParametersDefinitionProperty + com.sonyericsson.rebuild.RebuildSettings + + + + + false + + + + -1 + 10 + -1 + 2 + + + + + false + false + + + + + report_id + <font color=dimgray size=2><b>Specify the job id.</b></font> + + false + + + private_branch + + choice-parameter-2544395024638227 + 1 + + false + + + + false + + + RunReportJob + Deploy/dev/DataPipeline/RunReportJob + + + ET_FORMATTED_HTML + true + + + branch_or_tag + + choice-parameter-2620434998790477 + 1 + + false + + + + false + + + RunReportJob + Deploy/dev/DataPipeline/RunReportJob + + + ET_FORMATTED_HTML + true + + + + + 0 + 0 + + false + project + false + + + + + + + 2 + + + https://github.com/RevathiKotla/sunbird-data-pipeline.git + + + + + release-3.2.0 + + + false + + + + true + false + + 0 + false + + + + pipelines/deploy/druid-run-report-job/Jenkinsfile + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/SamzaTelemetrySchemas/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/SamzaTelemetrySchemas/config.xml index fa3c7e2385..6256fb7ba0 100644 --- a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/SamzaTelemetrySchemas/config.xml +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/SamzaTelemetrySchemas/config.xml @@ -1,26 +1,25 @@ - - + - + hudson.model.ParametersDefinitionProperty com.sonyericsson.rebuild.RebuildSettings - + false -1 - -1 + 10 -1 - 5 + 2 - + false false @@ -32,71 +31,74 @@ ${branch_or_tag} false - + private_branch - + choice-parameter-2544395024638227 1 +return """<b>This parameter is not used</b>""" false - - + + false SamzaTelemetrySchemas + Deploy/dev/DataPipeline/SamzaTelemetrySchemas - + ET_FORMATTED_HTML true - + branch_or_tag - + choice-parameter-2620434998790477 1 +return """<b>This parameter is not used</b>""" false - - + + false SamzaTelemetrySchemas + Deploy/dev/DataPipeline/SamzaTelemetrySchemas - + ET_FORMATTED_HTML true - + 0 0 false project false - + + - - + + 2 @@ -105,7 +107,7 @@ return """<b>This parameter is not used</b>"&quo - ${branch_or_tag} + release-2.9.1 false @@ -114,7 +116,7 @@ return """<b>This parameter is not used</b>"&quo true false - + 0 false @@ -125,4 +127,4 @@ return """<b>This parameter is not used</b>"&quo false - + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/SecorFlink/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/SecorFlink/config.xml new file mode 100644 index 0000000000..619c3cac5d --- /dev/null +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/SecorFlink/config.xml @@ -0,0 +1,226 @@ + + + + + hudson.model.ParametersDefinitionProperty + com.sonyericsson.rebuild.RebuildSettings + + + + + false + + + + -1 + 10 + -1 + 2 + + + + + false + false + + + + + absolute_job_path + <font color=dimgray size=2><b>Do not change this value! The metadata.json will be copied from this job.</b></font> + ArtifactUpload/dev/DataPipeline/Secor + false + + + artifact_source + <font color=dimgray size=2><b> +ArtifactRepo - Download the artifact from azure blob, JenkinsJob - Use the atrifact from Jenkins job.</b></font> + choice-parameter-9061667106947 + 1 + + false + + + + SecorFlink + Deploy/dev/DataPipeline/SecorFlink + + + PT_SINGLE_SELECT + false + 1 + + + build_number + + choice-parameter-9061670571657 + 1 + + false + + + + SecorFlink + Deploy/dev/DataPipeline/SecorFlink + + artifact_source + ET_FORMATTED_HTML + true + + + artifact_version + + choice-parameter-9061673103864 + 1 + + false + + + + SecorFlink + Deploy/dev/DataPipeline/SecorFlink + + artifact_source + ET_FORMATTED_HTML + true + + + private_branch + + choice-parameter-2544395024638227 + 1 + + false + + + + false + + + SecorFlink + Deploy/dev/DataPipeline/SecorFlink + + + ET_FORMATTED_HTML + true + + + branch_or_tag + + choice-parameter-2620434998790477 + 1 + + false + + + + false + + + SecorFlink + Deploy/dev/DataPipeline/SecorFlink + + + ET_FORMATTED_HTML + true + + + + + 0 + 0 + + false + project + false + + + + + + + + ArtifactUpload/dev/DataPipeline/Secor + + SUCCESS + 0 + BLUE + true + + + + + + + + 2 + + + https://github.com/maheshkumargangula/sunbird-data-pipeline.git + + + + + release-3.1.0 + + + false + + + + true + false + + 1 + false + + + + pipelines/deploy/secor/Jenkinsfile.flink + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/SubmitReportJob/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/SubmitReportJob/config.xml new file mode 100644 index 0000000000..182356ec8e --- /dev/null +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/SubmitReportJob/config.xml @@ -0,0 +1,154 @@ + + + + + hudson.model.ParametersDefinitionProperty + com.sonyericsson.rebuild.RebuildSettings + + + + + false + + + + -1 + 10 + -1 + 2 + + + + + false + false + + + + + report_id + + + false + + + report_schedule + + + false + + + report_config + <font color=dimgray size=2><b>Specify the report config json.</b></font> + + false + + + report_filepath + + + false + + + report_description + + + false + + + private_branch + + choice-parameter-2544395024638227 + 1 + + false + + + + false + + + SubmitReportJob + Deploy/dev/DataPipeline/SubmitReportJob + + + ET_FORMATTED_HTML + true + + + branch_or_tag + + choice-parameter-2620434998790477 + 1 + + false + + + + false + + + SubmitReportJob + Deploy/dev/DataPipeline/SubmitReportJob + + + ET_FORMATTED_HTML + true + + + + + 0 + 0 + + false + project + false + + + + + + + 2 + + + https://github.com/project-sunbird/sunbird-data-pipeline.git + + + + + release-2.10.0 + + + false + + + + true + false + + 0 + false + + + + pipelines/deploy/druid-report-run-job/Jenkinsfile + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/Yarn/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/Yarn/config.xml index 7a1bcd77f9..1001dab76c 100644 --- a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/Yarn/config.xml +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/DataPipeline/jobs/Yarn/config.xml @@ -1,5 +1,5 @@ - + @@ -14,9 +14,9 @@ -1 - -1 + 10 -1 - 5 + 2 @@ -32,21 +32,21 @@ ArtifactUpload/dev/DataPipeline/DataPipeline false - + artifact_source <font color=dimgray size=2><b> ArtifactRepo - Download the artifact from azure blob, JenkinsJob - Use the atrifact from Jenkins job.</b></font> choice-parameter-9061667106947 - 1 + 2 false - + false @@ -59,13 +59,13 @@ ArtifactRepo - Download the artifact from azure blob, JenkinsJob - Use the atrif false 1 - + build_number choice-parameter-9061670571657 1 false - + false Yarn Deploy/dev/DataPipeline/Yarn - + + + artifact_source + JenkinsJob + + artifact_source ET_FORMATTED_HTML true - + artifact_version choice-parameter-9061673103864 1 false - + false Yarn Deploy/dev/DataPipeline/Yarn - + + + artifact_source + JenkinsJob + + artifact_source ET_FORMATTED_HTML true - + private_branch choice-parameter-2544395024638227 1 false - + false @@ -140,13 +150,13 @@ return """<b>This parameter is not used</b>"&quo ET_FORMATTED_HTML true - + branch_or_tag choice-parameter-2620434998790477 1 false - + false @@ -167,13 +177,13 @@ return """<b>This parameter is not used</b>"&quo ET_FORMATTED_HTML true - + job_names_to_deploy <font color=green size=2><b>Choose the samza app names to deploy and this will kill the selected samza app and deploy them. Multi selection is available.</b></font> choice-parameter-8026182213525059 - 1 + 14 false - + false @@ -205,7 +215,7 @@ return """<b>This parameter is not used</b>"&quo - + 0 0 @@ -213,13 +223,14 @@ return """<b>This parameter is not used</b>"&quo project false + 1 - - + + 2 @@ -228,7 +239,7 @@ return """<b>This parameter is not used</b>"&quo - ${branch_or_tag} + release-2.10.0 false @@ -247,5 +258,5 @@ return """<b>This parameter is not used</b>"&quo false - false + true \ No newline at end of file diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/KnowledgePlatform/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/KnowledgePlatform/config.xml index 68477b8ac7..92618cba96 100644 --- a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/KnowledgePlatform/config.xml +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/KnowledgePlatform/config.xml @@ -1,12 +1,12 @@ - + - + - - + + diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/KnowledgePlatform/jobs/AssetSizeMigration/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/KnowledgePlatform/jobs/AssetSizeMigration/config.xml index 5dbac72126..d6752cc7af 100644 --- a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/KnowledgePlatform/jobs/AssetSizeMigration/config.xml +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/KnowledgePlatform/jobs/AssetSizeMigration/config.xml @@ -14,9 +14,9 @@ -1 - -1 + 10 -1 - 5 + 2 diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/KnowledgePlatform/jobs/CassandraDbUpdate/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/KnowledgePlatform/jobs/CassandraDbUpdate/config.xml index 651ff3f5d5..0700be4aa4 100644 --- a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/KnowledgePlatform/jobs/CassandraDbUpdate/config.xml +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/KnowledgePlatform/jobs/CassandraDbUpdate/config.xml @@ -1,5 +1,4 @@ - - + @@ -8,15 +7,15 @@ - + false -1 - -1 + 10 -1 - 5 + 2 @@ -26,74 +25,77 @@ - + private_branch - + choice-parameter-188160224505093 1 +return """<b>This parameter is not used</b>""" false - - + + false CassandraDbUpdate + Deploy/dev/KnowledgePlatform/CassandraDbUpdate - + ET_FORMATTED_HTML true - + branch_or_tag - + choice-parameter-188160228215280 1 +return """<b>This parameter is not used</b>""" false - - + + false CassandraDbUpdate + Deploy/dev/KnowledgePlatform/CassandraDbUpdate - + ET_FORMATTED_HTML true - + 0 0 false project false - + + - - + + 2 @@ -102,7 +104,7 @@ return """<b>This parameter is not used</b>"&quo - ${branch_or_tag} + release-3.4.0 false @@ -111,7 +113,7 @@ return """<b>This parameter is not used</b>"&quo true false - + 1 false diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/KnowledgePlatform/jobs/CassandraTrigger/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/KnowledgePlatform/jobs/CassandraTrigger/config.xml index d4d9795999..25ea50fffa 100644 --- a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/KnowledgePlatform/jobs/CassandraTrigger/config.xml +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/KnowledgePlatform/jobs/CassandraTrigger/config.xml @@ -14,9 +14,9 @@ -1 - -1 + 10 -1 - 5 + 2 diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/KnowledgePlatform/jobs/ContentTool/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/KnowledgePlatform/jobs/ContentTool/config.xml index 71cb4c9b3b..21acd2aedf 100644 --- a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/KnowledgePlatform/jobs/ContentTool/config.xml +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/KnowledgePlatform/jobs/ContentTool/config.xml @@ -14,9 +14,9 @@ -1 - -1 + 10 -1 - 5 + 2 diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/KnowledgePlatform/jobs/Dial/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/KnowledgePlatform/jobs/Dial/config.xml new file mode 100644 index 0000000000..e4c0e725ca --- /dev/null +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/KnowledgePlatform/jobs/Dial/config.xml @@ -0,0 +1,226 @@ + + + + + hudson.model.ParametersDefinitionProperty + com.sonyericsson.rebuild.RebuildSettings + + + + + false + + + + -1 + 10 + -1 + 2 + + + + + false + false + + + + + absolute_job_path + <font color=dimgray size=2><b>Do not change this value! The metadata.json will be copied from this job.</b></font> + ArtifactUpload/dev/KnowledgePlatform/Dial + false + + + artifact_source + <font color=dimgray size=2><b> +ArtifactRepo - Download the artifact from azure blob, JenkinsJob - Use the atrifact from Jenkins job.</b></font> + choice-parameter-14760318274338 + 1 + + false + + + + Dial + Deploy/dev/KnowledgePlatform/Dial + + + PT_SINGLE_SELECT + false + 1 + + + build_number + + choice-parameter-14760320375443 + 1 + + false + + + + Dial + Deploy/dev/KnowledgePlatform/Dial + + artifact_source + ET_FORMATTED_HTML + true + + + artifact_version + + choice-parameter-14760322347747 + 1 + + false + + + + Dial + Deploy/dev/KnowledgePlatform/Dial + + artifact_source + ET_FORMATTED_HTML + true + + + private_branch + + choice-parameter-2544395024638227 + 1 + + false + + + + false + + + Dial + Deploy/dev/KnowledgePlatform/Dial + + + ET_FORMATTED_HTML + true + + + branch_or_tag + + choice-parameter-2620434998790477 + 1 + + false + + + + false + + + Dial + Deploy/dev/KnowledgePlatform/Dial + + + ET_FORMATTED_HTML + true + + + + + 0 + 0 + + false + project + false + + + + + + + + ArtifactUpload/dev/KnowledgePlatform/Dial + + SUCCESS + 0 + BLUE + true + + + + + + + + 2 + + + https://github.com/project-sunbird/sunbird-learning-platform.git + + + + + release-3.4.0 + + + false + + + + true + false + + 0 + false + + + + pipelines/deploy/dial/Jenkinsfile + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/KnowledgePlatform/jobs/ESMapping/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/KnowledgePlatform/jobs/ESMapping/config.xml index 415af374cf..31ab3671b8 100644 --- a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/KnowledgePlatform/jobs/ESMapping/config.xml +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/KnowledgePlatform/jobs/ESMapping/config.xml @@ -7,9 +7,9 @@ -1 - -1 + 10 -1 - 5 + 2 diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/KnowledgePlatform/jobs/FileSyncTool/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/KnowledgePlatform/jobs/FileSyncTool/config.xml index 1a51b321ad..282b3a268a 100644 --- a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/KnowledgePlatform/jobs/FileSyncTool/config.xml +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/KnowledgePlatform/jobs/FileSyncTool/config.xml @@ -14,9 +14,9 @@ -1 - -1 + 10 -1 - 5 + 2 diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/KnowledgePlatform/jobs/FlinkJobs/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/KnowledgePlatform/jobs/FlinkJobs/config.xml new file mode 100644 index 0000000000..2ade746534 --- /dev/null +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/KnowledgePlatform/jobs/FlinkJobs/config.xml @@ -0,0 +1,167 @@ + + + + + hudson.model.ParametersDefinitionProperty + com.sonyericsson.rebuild.RebuildSettings + + + + + false + + + + -1 + 10 + -1 + 2 + + + + + false + false + + + + + private_branch + + choice-parameter-2544395024638227 + 1 + + false + + + + false + + + FlinkJobs + Deploy/dev/KnowledgePlatform/FlinkJobs + + + ET_FORMATTED_HTML + true + + + branch_or_tag + + choice-parameter-2620434998790477 + 1 + + false + + + + false + + + FlinkJobs + Deploy/dev/KnowledgePlatform/FlinkJobs + + + ET_FORMATTED_HTML + true + + + image_tag + <font color=red size=2><b>CAUTION: If the value is blank, image tag will be taken from the latest metadata.json.</b></font> + + false + + + absolute_job_path + <font color=dimgray size=2><b>Do not change this value! The metadata.json will be copied from this job.</b></font> + ArtifactUpload/dev/KnowledgePlatform/FlinkJobs + false + + + job_names_to_deploy + <font color=green size=2><b>Choose the job names to deploy. Multi-selection is available.</b></font> + choice-parameter-1273072434092073 + 1 + + true + + + + FlinkJobs + Deploy/dev/KnowledgePlatform/FlinkJobs + + + PT_MULTI_SELECT + false + 1 + + + + + 0 + 0 + + false + project + false + + + + + + + + + + 2 + + + https://github.com/project-sunbird/sunbird-learning-platform.git + + + + + flink-fix + + + false + + + + true + false + + 0 + false + + + + kubernetes/pipelines/deploy/Jenkinsfile + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/KnowledgePlatform/jobs/InsertQRCode/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/KnowledgePlatform/jobs/InsertQRCode/config.xml new file mode 100644 index 0000000000..e8e72223a5 --- /dev/null +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/KnowledgePlatform/jobs/InsertQRCode/config.xml @@ -0,0 +1,140 @@ + + + + + hudson.model.ParametersDefinitionProperty + com.sonyericsson.rebuild.RebuildSettings + + + + + false + + + + -1 + 10 + -1 + 2 + + + + + false + false + + + + + private_branch + + choice-parameter-2544395024638227 + 1 + + false + + + + false + + + InsertQRCode + Deploy/dev/KnowledgePlatform/InsertQRCode + + + ET_FORMATTED_HTML + true + + + branch_or_tag + + choice-parameter-2620434998790477 + 1 + + false + + + + false + + + InsertQRCode + Deploy/dev/KnowledgePlatform/InsertQRCode + + + ET_FORMATTED_HTML + true + + + channel_name + Provide the channel name + + false + + + date + Provide the current date in below format. +2019-10-17T10:00:00.000 + + false + + + + + 0 + 0 + + false + project + false + + + + + + + + + + 2 + + + https://github.com/project-sunbird/sunbird-learning-platform.git + + + + + release-3.3.0 + + + false + + + + true + false + + 0 + false + + + + pipelines/deploy/dial/Jenkinsfile.insert + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/KnowledgePlatform/jobs/KafkaSetup/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/KnowledgePlatform/jobs/KafkaSetup/config.xml index 979e769aa0..6aba98d056 100644 --- a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/KnowledgePlatform/jobs/KafkaSetup/config.xml +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/KnowledgePlatform/jobs/KafkaSetup/config.xml @@ -1,5 +1,4 @@ - - + @@ -8,15 +7,15 @@ - + false -1 - -1 + 10 -1 - 5 + 2 @@ -26,74 +25,77 @@ - + private_branch - + choice-parameter-188161640748171 1 +return """<b>This parameter is not used</b>""" false - - + + false KafkaSetup + Deploy/dev/KnowledgePlatform/KafkaSetup - + ET_FORMATTED_HTML true - + branch_or_tag - + choice-parameter-188161652021198 1 +return """<b>This parameter is not used</b>""" false - - + + false KafkaSetup + Deploy/dev/KnowledgePlatform/KafkaSetup - + ET_FORMATTED_HTML true - + 0 0 false project false - + + - - + + 2 @@ -102,7 +104,7 @@ return """<b>This parameter is not used</b>"&quo - ${branch_or_tag} + release-3.4.0 false @@ -111,7 +113,7 @@ return """<b>This parameter is not used</b>"&quo true false - + 0 false diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/KnowledgePlatform/jobs/Learning/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/KnowledgePlatform/jobs/Learning/config.xml index a5af84b20f..a7e85c5622 100644 --- a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/KnowledgePlatform/jobs/Learning/config.xml +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/KnowledgePlatform/jobs/Learning/config.xml @@ -1,22 +1,21 @@ - - + - + hudson.model.ParametersDefinitionProperty com.sonyericsson.rebuild.RebuildSettings - + false -1 - -1 + 10 -1 - 5 + 2 @@ -32,51 +31,51 @@ ArtifactUpload/dev/KnowledgePlatform/KnowledgePlatform false - + artifact_source <font color=dimgray size=2><b> ArtifactRepo - Download the artifact from azure blob, JenkinsJob - Use the atrifact from Jenkins job.</b></font> choice-parameter-12566219493457 1 false - - + + Learning Deploy/dev/KnowledgePlatform/Learning - + PT_SINGLE_SELECT false 1 - + build_number - + choice-parameter-12566221440336 1 false - - + + @@ -87,23 +86,23 @@ return "<b>Not Applicable</b>" ET_FORMATTED_HTML true - + artifact_version - + choice-parameter-12566223395914 1 false - - + + @@ -114,74 +113,75 @@ return "<b>Not Applicable</b>" ET_FORMATTED_HTML true - + private_branch - + choice-parameter-2544395024638227 1 +return """<b>This parameter is not used</b>""" false - - + + false Learning Deploy/dev/KnowledgePlatform/Learning - + ET_FORMATTED_HTML true - + branch_or_tag - + choice-parameter-2620434998790477 1 +return """<b>This parameter is not used</b>""" false - - + + false Learning Deploy/dev/KnowledgePlatform/Learning - + ET_FORMATTED_HTML true - + 0 0 false project false - + + - + ArtifactUpload/dev/KnowledgePlatform/KnowledgePlatform SUCCESS @@ -193,8 +193,8 @@ return """<b>This parameter is not used</b>"&quo - - + + 2 @@ -203,7 +203,7 @@ return """<b>This parameter is not used</b>"&quo - ${branch_or_tag} + release-3.5.0 false @@ -212,7 +212,7 @@ return """<b>This parameter is not used</b>"&quo true false - + 0 false diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/KnowledgePlatform/jobs/Monitoring/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/KnowledgePlatform/jobs/Monitoring/config.xml index a12d3f0783..cc7259165a 100644 --- a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/KnowledgePlatform/jobs/Monitoring/config.xml +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/KnowledgePlatform/jobs/Monitoring/config.xml @@ -7,9 +7,9 @@ -1 - -1 + 10 -1 - 5 + 2 diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/KnowledgePlatform/jobs/Neo4j/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/KnowledgePlatform/jobs/Neo4j/config.xml index d631a65b70..672697c8a6 100644 --- a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/KnowledgePlatform/jobs/Neo4j/config.xml +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/KnowledgePlatform/jobs/Neo4j/config.xml @@ -1,5 +1,4 @@ - - + @@ -8,19 +7,19 @@ - + false -1 - -1 + 10 -1 - 5 + 2 - + false false @@ -32,153 +31,159 @@ ArtifactUpload/dev/KnowledgePlatform/Neo4j false - + artifact_source <font color=dimgray size=2><b> ArtifactRepo - Download the artifact from azure blob, JenkinsJob - Use the atrifact from Jenkins job.</b></font> choice-parameter-13436883643465 1 false - - + + Neo4j + Deploy/dev/KnowledgePlatform/Neo4j - + PT_SINGLE_SELECT false 1 - + build_number - + choice-parameter-13436885688258 1 false - - + + Neo4j + Deploy/dev/KnowledgePlatform/Neo4j artifact_source ET_FORMATTED_HTML true - + artifact_version - + choice-parameter-13436888536349 1 false - - + + Neo4j + Deploy/dev/KnowledgePlatform/Neo4j artifact_source ET_FORMATTED_HTML true - + private_branch - + choice-parameter-2544395024638227 1 +return """<b>This parameter is not used</b>""" false - - + + false Neo4j + Deploy/dev/KnowledgePlatform/Neo4j - + ET_FORMATTED_HTML true - + branch_or_tag - + choice-parameter-2620434998790477 1 +return """<b>This parameter is not used</b>""" false - - + + false Neo4j + Deploy/dev/KnowledgePlatform/Neo4j - + ET_FORMATTED_HTML true - + 0 0 false project false - + + - - + + 2 @@ -196,7 +201,7 @@ return """<b>This parameter is not used</b>"&quo true false - + 0 false diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/KnowledgePlatform/jobs/Neo4jDefinitionUpdate/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/KnowledgePlatform/jobs/Neo4jDefinitionUpdate/config.xml index b2b030f664..85bb8d7f51 100644 --- a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/KnowledgePlatform/jobs/Neo4jDefinitionUpdate/config.xml +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/KnowledgePlatform/jobs/Neo4jDefinitionUpdate/config.xml @@ -1,5 +1,4 @@ - - + @@ -8,15 +7,15 @@ - + false -1 - -1 + 10 -1 - 5 + 2 @@ -26,76 +25,77 @@ - + private_branch - + choice-parameter-188174424977419 1 +return """<b>This parameter is not used</b>""" false - - + + false Neo4jDefinitionUpdate Deploy/dev/KnowledgePlatform/Neo4jDefinitionUpdate - + ET_FORMATTED_HTML true - + branch_or_tag - + choice-parameter-188174429374717 1 +return """<b>This parameter is not used</b>""" false - - + + false Neo4jDefinitionUpdate Deploy/dev/KnowledgePlatform/Neo4jDefinitionUpdate - + ET_FORMATTED_HTML true - + 0 0 false project false - + + - - + + 2 @@ -104,7 +104,7 @@ return """<b>This parameter is not used</b>"&quo - ${branch_or_tag} + release-3.4.0 false @@ -113,7 +113,7 @@ return """<b>This parameter is not used</b>"&quo true false - + 0 false diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/KnowledgePlatform/jobs/Neo4jElasticSearchSyncTool/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/KnowledgePlatform/jobs/Neo4jElasticSearchSyncTool/config.xml index be8578de2e..186b913653 100644 --- a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/KnowledgePlatform/jobs/Neo4jElasticSearchSyncTool/config.xml +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/KnowledgePlatform/jobs/Neo4jElasticSearchSyncTool/config.xml @@ -1,5 +1,4 @@ - - + @@ -8,15 +7,15 @@ - + false -1 - -1 + 10 -1 - 5 + 2 @@ -32,80 +31,83 @@ ArtifactUpload/dev/KnowledgePlatform/SyncTool false - + artifact_source <font color=dimgray size=2><b> ArtifactRepo - Download the artifact from azure blob, JenkinsJob - Use the atrifact from Jenkins job.</b></font> choice-parameter-14175006770414 1 false - - + + Neo4jElasticSearchSyncTool + Deploy/dev/KnowledgePlatform/Neo4jElasticSearchSyncTool - + PT_SINGLE_SELECT false 1 - + build_number - + choice-parameter-14175008677110 1 false - - + + Neo4jElasticSearchSyncTool + Deploy/dev/KnowledgePlatform/Neo4jElasticSearchSyncTool artifact_source ET_FORMATTED_HTML true - + artifact_version - + choice-parameter-14175010584707 1 false - - + + Neo4jElasticSearchSyncTool + Deploy/dev/KnowledgePlatform/Neo4jElasticSearchSyncTool artifact_source ET_FORMATTED_HTML @@ -126,6 +128,10 @@ return "<b>Not Applicable</b>" syncbatch migratequestionextproperties migrate-dialcodeRequired + syncecml + migratecoursetype + syncdialcodes + sync-collection-rel-cache @@ -142,74 +148,77 @@ return "<b>Not Applicable</b>" --ids false - + private_branch - + choice-parameter-2544395024638227 1 +return """<b>This parameter is not used</b>""" false - - + + false Neo4jElasticSearchSyncTool + Deploy/dev/KnowledgePlatform/Neo4jElasticSearchSyncTool - + ET_FORMATTED_HTML true - + branch_or_tag - + choice-parameter-2620434998790477 1 +return """<b>This parameter is not used</b>""" false - - + + false Neo4jElasticSearchSyncTool + Deploy/dev/KnowledgePlatform/Neo4jElasticSearchSyncTool - + ET_FORMATTED_HTML true - + 0 0 false project false - + + - - + + 2 @@ -218,7 +227,7 @@ return """<b>This parameter is not used</b>"&quo - ${branch_or_tag} + release-3.4.0 false @@ -227,7 +236,7 @@ return """<b>This parameter is not used</b>"&quo true false - + 0 false diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/KnowledgePlatform/jobs/Search/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/KnowledgePlatform/jobs/Search/config.xml index 434510f8e9..67cabd05f8 100644 --- a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/KnowledgePlatform/jobs/Search/config.xml +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/KnowledgePlatform/jobs/Search/config.xml @@ -14,9 +14,9 @@ -1 - -1 + 10 -1 - 5 + 2 @@ -203,7 +203,7 @@ return """<b>This parameter is not used</b>"&quo - ${branch_or_tag} + release-2.9.0 false diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/KnowledgePlatform/jobs/StartNeo4jCluster/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/KnowledgePlatform/jobs/StartNeo4jCluster/config.xml index 5e3b9a0338..b76e3665b0 100644 --- a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/KnowledgePlatform/jobs/StartNeo4jCluster/config.xml +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/KnowledgePlatform/jobs/StartNeo4jCluster/config.xml @@ -1,5 +1,4 @@ - - + @@ -8,92 +7,95 @@ - + false -1 - -1 + 10 -1 - 5 + 2 - + false false - + private_branch - + choice-parameter-188176807343905 1 +return """<b>This parameter is not used</b>""" false - - + + false StartNeo4jCluster + Deploy/dev/KnowledgePlatform/StartNeo4jCluster - + ET_FORMATTED_HTML true - + branch_or_tag - + choice-parameter-188176809967474 1 +return """<b>This parameter is not used</b>""" false - - + + false StartNeo4jCluster + Deploy/dev/KnowledgePlatform/StartNeo4jCluster - + ET_FORMATTED_HTML true - + 0 0 false project false - + + - - + + 2 @@ -111,7 +113,7 @@ return """<b>This parameter is not used</b>"&quo true false - + 0 false diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/KnowledgePlatform/jobs/StopNeo4jCluster/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/KnowledgePlatform/jobs/StopNeo4jCluster/config.xml index 7bb9a7a064..721b7333cb 100644 --- a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/KnowledgePlatform/jobs/StopNeo4jCluster/config.xml +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/KnowledgePlatform/jobs/StopNeo4jCluster/config.xml @@ -14,9 +14,9 @@ -1 - -1 + 10 -1 - 5 + 2 diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/KnowledgePlatform/jobs/SyncQRCode/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/KnowledgePlatform/jobs/SyncQRCode/config.xml new file mode 100644 index 0000000000..bda4633dee --- /dev/null +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/KnowledgePlatform/jobs/SyncQRCode/config.xml @@ -0,0 +1,127 @@ + + + + + hudson.model.ParametersDefinitionProperty + com.sonyericsson.rebuild.RebuildSettings + + + + + false + + + + -1 + 10 + -1 + 2 + + + + + false + false + + + + + private_branch + + choice-parameter-2544395024638227 + 1 + + false + + + + false + + + SyncQRCode + Deploy/dev/KnowledgePlatform/SyncQRCode + + + ET_FORMATTED_HTML + true + + + branch_or_tag + + choice-parameter-2620434998790477 + 1 + + false + + + + false + + + SyncQRCode + Deploy/dev/KnowledgePlatform/SyncQRCode + + + ET_FORMATTED_HTML + true + + + + + 0 + 0 + + false + project + false + + + + + + + + + + 2 + + + https://github.com/project-sunbird/sunbird-learning-platform.git + + + + + release-3.3.0 + + + false + + + + true + false + + 0 + false + + + + pipelines/deploy/dial/Jenkinsfile.sync + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/KnowledgePlatform/jobs/ValidateLearning/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/KnowledgePlatform/jobs/ValidateLearning/config.xml index 70cf30e776..4384eb1ce2 100644 --- a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/KnowledgePlatform/jobs/ValidateLearning/config.xml +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/KnowledgePlatform/jobs/ValidateLearning/config.xml @@ -14,9 +14,9 @@ -1 - -1 + 10 -1 - 5 + 2 diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/KnowledgePlatform/jobs/Yarn/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/KnowledgePlatform/jobs/Yarn/config.xml index af5b7e4c3c..b6d9320d43 100644 --- a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/KnowledgePlatform/jobs/Yarn/config.xml +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/KnowledgePlatform/jobs/Yarn/config.xml @@ -1,5 +1,4 @@ - - + @@ -8,15 +7,15 @@ - + false -1 - -1 + 10 -1 - 5 + 2 @@ -32,51 +31,51 @@ ArtifactUpload/dev/KnowledgePlatform/Yarn false - + artifact_source <font color=dimgray size=2><b> ArtifactRepo - Download the artifact from azure blob, JenkinsJob - Use the atrifact from Jenkins job.</b></font> choice-parameter-2874232768088857 1 false - - + + Yarn Deploy/dev/KnowledgePlatform/Yarn - + PT_SINGLE_SELECT false 1 - + build_number - + choice-parameter-2874449088885218 1 false - - + + @@ -87,23 +86,23 @@ return "<b>Not Applicable</b>" ET_FORMATTED_HTML true - + artifact_version - + choice-parameter-2877900313772031 1 false - - + + @@ -114,74 +113,75 @@ return "<b>Not Applicable</b>" ET_FORMATTED_HTML true - + private_branch - + choice-parameter-2544395024638227 1 +return """<b>This parameter is not used</b>""" false - - + + false Yarn Deploy/dev/KnowledgePlatform/Yarn - + ET_FORMATTED_HTML true - + branch_or_tag - + choice-parameter-2620434998790477 1 +return """<b>This parameter is not used</b>""" false - - + + false Yarn Deploy/dev/KnowledgePlatform/Yarn - + ET_FORMATTED_HTML true - + 0 0 false project false - + + - + ArtifactUpload/dev/KnowledgePlatform/Yarn SUCCESS @@ -193,8 +193,8 @@ return """<b>This parameter is not used</b>"&quo - - + + 2 @@ -203,7 +203,7 @@ return """<b>This parameter is not used</b>"&quo - ${branch_or_tag} + release-3.4.0 false @@ -212,7 +212,7 @@ return """<b>This parameter is not used</b>"&quo true false - + 0 false diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/config.xml new file mode 100644 index 0000000000..4506aeec7c --- /dev/null +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/config.xml @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + All + false + false + + + + + + + + false + + + + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/APIManager/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/APIManager/config.xml new file mode 100644 index 0000000000..fe91de3687 --- /dev/null +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/APIManager/config.xml @@ -0,0 +1,159 @@ + + + + + hudson.model.ParametersDefinitionProperty + com.sonyericsson.rebuild.RebuildSettings + + + + + false + + + + -1 + 10 + -1 + 2 + + + + + false + false + + + + + absolute_job_path + <font color=dimgray size=2><b>Do not change this value! The metadata.json will be copied from this job.</b></font> + ArtifactUpload/dev/Core/APIManager + false + + + image_tag + <font color=red size=2><b>CAUTION: If the value is blank, image tag will be taken from the latest metadata.json.</b></font> + + false + + + private_branch + + choice-parameter-2544395024638227 + 1 + + false + + + + false + + + APIManager + Deploy/dev/Kubernetes/APIManager + + + ET_FORMATTED_HTML + true + + + branch_or_tag + + choice-parameter-2620434998790477 + 1 + + false + + + + false + + + APIManager + Deploy/dev/Kubernetes/APIManager + + + ET_FORMATTED_HTML + true + + + role_name + + + + sunbird-deploy + + + + + + + 0 + 0 + + false + project + false + + + + + + + + Deploy/dev/Core/APIManager + + SUCCESS + 0 + BLUE + true + + + + + + + + 2 + + + https://github.com/project-sunbird/sunbird-devops.git + + + + + ${branch_or_tag} + + + false + + + + true + false + + 0 + false + + + + kubernetes/pipelines/deploy_core/Jenkinsfile + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/APIManagerEcho/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/APIManagerEcho/config.xml new file mode 100644 index 0000000000..560e0cbce4 --- /dev/null +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/APIManagerEcho/config.xml @@ -0,0 +1,159 @@ + + + + + hudson.model.ParametersDefinitionProperty + com.sonyericsson.rebuild.RebuildSettings + + + + + false + + + + -1 + 10 + -1 + 2 + + + + + false + false + + + + + absolute_job_path + <font color=dimgray size=2><b>Do not change this value! The metadata.json will be copied from this job.</b></font> + ArtifactUpload/dev/Core/APIManagerEcho + false + + + image_tag + <font color=red size=2><b>CAUTION: If the value is blank, image tag will be taken from the latest metadata.json.</b></font> + + false + + + private_branch + + choice-parameter-2544395024638227 + 1 + + false + + + + false + + + APIManagerEcho + Deploy/dev/Kubernetes/APIManagerEcho + + + ET_FORMATTED_HTML + true + + + branch_or_tag + + choice-parameter-2620434998790477 + 1 + + false + + + + false + + + APIManagerEcho + Deploy/dev/Kubernetes/APIManagerEcho + + + ET_FORMATTED_HTML + true + + + role_name + + + + helm-deploy + + + + + + + 0 + 0 + + false + project + false + + + + + + + + ArtifactUpload/dev/Core/APIManagerEcho + + SUCCESS + 0 + BLUE + true + + + + + + + + 2 + + + https://github.com/project-sunbird/sunbird-devops.git + + + + + ${branch_or_tag} + + + false + + + + true + false + + 0 + false + + + + kubernetes/pipelines/deploy_core/Jenkinsfile + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/AdminUtils/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/AdminUtils/config.xml new file mode 100644 index 0000000000..ebaedb2e34 --- /dev/null +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/AdminUtils/config.xml @@ -0,0 +1,159 @@ + + + + + hudson.model.ParametersDefinitionProperty + com.sonyericsson.rebuild.RebuildSettings + + + + + false + + + + -1 + 10 + -1 + 2 + + + + + false + false + + + + + absolute_job_path + <font color=dimgray size=2><b>Do not change this value! The metadata.json will be copied from this job.</b></font> + ArtifactUpload/dev/Core/AdminUtils + false + + + image_tag + <font color=red size=2><b>CAUTION: If the value is blank, image tag will be taken from the latest metadata.json.</b></font> + + false + + + private_branch + + choice-parameter-2544395024638227 + 1 + + false + + + + false + + + AdminUtils + Deploy/dev/Kubernetes/AdminUtils + + + ET_FORMATTED_HTML + true + + + branch_or_tag + + choice-parameter-2620434998790477 + 1 + + false + + + + false + + + AdminUtils + Deploy/dev/Kubernetes/AdminUtils + + + ET_FORMATTED_HTML + true + + + role_name + + + + helm-deploy + + + + + + + 0 + 0 + + false + project + false + + + + + + + + Deploy/dev/Core/AdminUtils + + SUCCESS + 0 + BLUE + true + + + + + + + + 2 + + + https://github.com/project-sunbird/sunbird-devops.git + + + + + ${branch_or_tag} + + + false + + + + true + false + + 0 + false + + + + kubernetes/pipelines/deploy_core/Jenkinsfile + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/Analytics/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/Analytics/config.xml new file mode 100644 index 0000000000..48270103c3 --- /dev/null +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/Analytics/config.xml @@ -0,0 +1,159 @@ + + + + + hudson.model.ParametersDefinitionProperty + com.sonyericsson.rebuild.RebuildSettings + + + + + false + + + + -1 + 10 + -1 + 2 + + + + + false + false + + + + + absolute_job_path + <font color=dimgray size=2><b>Do not change this value! The metadata.json will be copied from this job.</b></font> + ArtifactUpload/dev/Core/Analytics + false + + + image_tag + <font color=red size=2><b>CAUTION: If the value is blank, image tag will be taken from the latest metadata.json.</b></font> + + false + + + private_branch + + choice-parameter-2544395024638227 + 1 + + false + + + + false + + + Analytics + Deploy/dev/Kubernetes/Analytics + + + ET_FORMATTED_HTML + true + + + branch_or_tag + + choice-parameter-2620434998790477 + 1 + + false + + + + false + + + Analytics + Deploy/dev/Kubernetes/Analytics + + + ET_FORMATTED_HTML + true + + + role_name + + + + sunbird-deploy + + + + + + + 0 + 0 + + false + project + false + + + + + + + + ArtifactUpload/dev/Core/Analytics + + SUCCESS + 0 + BLUE + true + + + + + + + + 2 + + + https://github.com/project-sunbird/sunbird-devops.git + + + + + ${branch_or_tag} + + + false + + + + true + false + + 0 + false + + + + kubernetes/pipelines/deploy_core/Jenkinsfile + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/ApplicationElasticSearch/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/ApplicationElasticSearch/config.xml new file mode 100644 index 0000000000..766a8ce2f0 --- /dev/null +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/ApplicationElasticSearch/config.xml @@ -0,0 +1,117 @@ + + + + false + + + + -1 + 10 + -1 + 2 + + + + + false + false + + + + + private_branch + + choice-parameter-186487879604743 + 1 + + false + + + + false + + + ApplicationElasticSearch + Deploy/dev/Kubernetes/ApplicationElasticSearch + + + ET_FORMATTED_HTML + true + + + branch_or_tag + + choice-parameter-186487885338467 + 1 + + false + + + + false + + + ApplicationElasticSearch + Deploy/dev/Kubernetes/ApplicationElasticSearch + + + ET_FORMATTED_HTML + true + + + + + 0 + 0 + + false + project + false + + + + + + + 2 + + + https://github.com/project-sunbird/sunbird-devops.git + + + + + ${branch_or_tag} + + + false + + + + true + false + + 1 + false + + + + pipelines/deploy/application-elasticsearch/Jenkinsfile + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/Assessment/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/Assessment/config.xml new file mode 100644 index 0000000000..f0ecf32f7d --- /dev/null +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/Assessment/config.xml @@ -0,0 +1,159 @@ + + + + + hudson.model.ParametersDefinitionProperty + com.sonyericsson.rebuild.RebuildSettings + + + + + false + + + + -1 + 10 + -1 + 2 + + + + + false + false + + + + + absolute_job_path + <font color=dimgray size=2><b>Do not change this value! The metadata.json will be copied from this job.</b></font> + ArtifactUpload/dev/Core/Assessment + false + + + image_tag + <font color=red size=2><b>CAUTION: If the value is blank, image tag will be taken from the latest metadata.json.</b></font> + + false + + + private_branch + + choice-parameter-2544395024638227 + 1 + + false + + + + false + + + Assessment + Deploy/dev/Kubernetes/Assessment + + + ET_FORMATTED_HTML + true + + + branch_or_tag + + choice-parameter-2620434998790477 + 1 + + false + + + + false + + + Assessment + Deploy/dev/Kubernetes/Assessment + + + ET_FORMATTED_HTML + true + + + role_name + + + + sunbird-deploy + + + + + + + 0 + 0 + + false + project + false + + + + + + + + ArtifactUpload/dev/Core/Assessment + + SUCCESS + 0 + BLUE + true + + + + + + + + 2 + + + https://github.com/project-sunbird/sunbird-devops.git + + + + + ${branch_or_tag} + + + false + + + + true + false + + 0 + false + + + + kubernetes/pipelines/deploy_core/Jenkinsfile + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/Badger/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/Badger/config.xml new file mode 100644 index 0000000000..5a49dbdceb --- /dev/null +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/Badger/config.xml @@ -0,0 +1,156 @@ + + + + + hudson.model.ParametersDefinitionProperty + com.sonyericsson.rebuild.RebuildSettings + + + + + false + + + + -1 + 10 + -1 + 2 + + + + + false + false + + + + + absolute_job_path + <font color=dimgray size=2><b>Do not change this value! The metadata.json will be copied from this job.</b></font> + ArtifactUpload/dev/Core/Badger + false + + + image_tag + <font color=red size=2><b>CAUTION: If the value is blank, image tag will be taken from the latest metadata.json.</b></font> + + false + + + private_branch + + choice-parameter-2544395024638227 + 1 + + false + + + + false + + + Badger + Deploy/dev/Kubernetes/Badger + + + ET_FORMATTED_HTML + true + + + branch_or_tag + + choice-parameter-2620434998790477 + 1 + + false + + + + false + + + Badger + Deploy/dev/Kubernetes/Badger + + + ET_FORMATTED_HTML + true + + + role_name + + deploy-badger + false + + + + + 0 + 0 + + false + project + false + + + + + + + + ArtifactUpload/dev/Core/Badger + + SUCCESS + 0 + BLUE + true + + + + + + + + 2 + + + https://github.com/project-sunbird/sunbird-devops.git + + + + + ${branch_or_tag} + + + false + + + + true + false + + 0 + false + + + + kubernetes/pipelines/deploy_core/Jenkinsfile + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/BootstrapCluster/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/BootstrapCluster/config.xml new file mode 100644 index 0000000000..df5bc0fe50 --- /dev/null +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/BootstrapCluster/config.xml @@ -0,0 +1,127 @@ + + + + + + hudson.model.ParametersDefinitionProperty + com.sonyericsson.rebuild.RebuildSettings + + + + + false + + + + -1 + 10 + -1 + 2 + + + + + false + false + + + + + private_branch + + choice-parameter-2544395024638227 + 1 + + false + + + + false + + + BootstrapCluster + Deploy/dev/Kubernetes/BootstrapCluster + + + ET_FORMATTED_HTML + true + + + branch_or_tag + + choice-parameter-2620434998790477 + 1 + + false + + + + false + + + BootstrapCluster + Deploy/dev/Kubernetes/BootstrapCluster + + + ET_FORMATTED_HTML + true + + + + + 0 + 0 + + false + project + false + + + + + + + + + 2 + + + https://github.com/project-sunbird/sunbird-devops.git + + + + + release-2.8.0 + + + false + + + + true + false + + 0 + false + + + + kubernetes/pipelines/bootstrap_core/Jenkinsfile + false + + + true + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/BootstrapMinimal/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/BootstrapMinimal/config.xml new file mode 100644 index 0000000000..86084333e4 --- /dev/null +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/BootstrapMinimal/config.xml @@ -0,0 +1,57 @@ + + + + + + hudson.model.ParametersDefinitionProperty + com.sonyericsson.rebuild.RebuildSettings + + + + + false + + + + -1 + 10 + -1 + 2 + + + + + + + + + + 2 + + + https://github.com/project-sunbird/sunbird-devops.git + + + + + release-3.4.0 + + + false + + + + true + false + + 0 + false + + + + kubernetes/pipelines/bootstrap_minimal/Jenkinsfile + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/Cassandra/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/Cassandra/config.xml new file mode 100644 index 0000000000..8445a39d0e --- /dev/null +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/Cassandra/config.xml @@ -0,0 +1,219 @@ + + + + false + + + + -1 + 10 + -1 + 2 + + + + + false + false + + + + + absolute_job_path + <font color=dimgray size=2><b>Do not change this value! The metadata.json will be copied from this job.</b></font> + ArtifactUpload/dev/Core/Cassandra + false + + + artifact_source + <font color=dimgray size=2><b> +ArtifactRepo - Download the artifact from azure blob, JenkinsJob - Use the atrifact from Jenkins job.</b></font> + choice-parameter-9600649228560 + 1 + + false + + + + Cassandra + Deploy/dev/Kubernetes/Cassandra + + + PT_SINGLE_SELECT + false + 1 + + + build_number + + choice-parameter-9600651313765 + 1 + + false + + + + Cassandra + Deploy/dev/Kubernetes/Cassandra + + artifact_source + ET_FORMATTED_HTML + true + + + artifact_version + + choice-parameter-9600653373369 + 1 + + false + + + + Cassandra + Deploy/dev/Kubernetes/Cassandra + + artifact_source + ET_FORMATTED_HTML + true + + + private_branch + + choice-parameter-2544395024638227 + 1 + + false + + + + false + + + Cassandra + Deploy/dev/Kubernetes/Cassandra + + + ET_FORMATTED_HTML + true + + + branch_or_tag + + choice-parameter-2620434998790477 + 1 + + false + + + + false + + + Cassandra + Deploy/dev/Kubernetes/Cassandra + + + ET_FORMATTED_HTML + true + + + + + 0 + 0 + + false + project + false + + + + + + + + ArtifactUpload/dev/Core/Cassandra + + SUCCESS + 0 + BLUE + true + + + + + + + + 2 + + + https://github.com/project-sunbird/sunbird-devops.git + + + + + release-3.3.0 + + + false + + + + true + false + + 0 + false + + + + pipelines/deploy/cassandra-deploy/Jenkinsfile + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/CassandraDBUpdate/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/CassandraDBUpdate/config.xml new file mode 100644 index 0000000000..cacaa806fc --- /dev/null +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/CassandraDBUpdate/config.xml @@ -0,0 +1,129 @@ + + + + false + + + + -1 + 10 + -1 + 2 + + + + + false + false + + + + + branch_or_tag + + choice-parameter-9675060449018219 + 1 + + false + + + + false + + + CassandraDBUpdate + Deploy/dev/Core/CassandraDBUpdate + + + ET_FORMATTED_HTML + true + + + private_branch + + choice-parameter-9675060450520341 + 1 + + false + + + + false + + + CassandraDBUpdate + Deploy/dev/Core/CassandraDBUpdate + + + ET_FORMATTED_HTML + true + + + cql_file_name + <font color=dimgray size=2><b>enter the cql file name from templates folder <br> + templates frolder from the ansible role : <br> + sunbird-devops/ansible/roles/cassandra-db-update/templates <br> + </b></font> + alter_externalId_table.cql + false + + + + + 0 + 0 + + false + project + false + + + + + + + + + + 2 + + + https://github.com/project-sunbird/sunbird-devops.git + + + + + release-3.3.0 + + + false + + + + true + false + + 0 + false + + + + pipelines/cassandra_db_update/Jenkinsfile + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/CassandraDecrypt/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/CassandraDecrypt/config.xml new file mode 100644 index 0000000000..f091b47fb3 --- /dev/null +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/CassandraDecrypt/config.xml @@ -0,0 +1,229 @@ + + + + false + + + + -1 + 10 + -1 + 2 + + + + + false + false + + + + + absolute_job_path + <font color=dimgray size=2><b>Do not change this value! The metadata.json will be copied from this job.</b></font> + ArtifactUpload/dev/Core/CassandraDecrypt + false + + + artifact_source + <font color=dimgray size=2><b> +ArtifactRepo - Download the artifact from azure blob, JenkinsJob - Use the atrifact from Jenkins job.</b></font> + choice-parameter-9600649228560 + 1 + + false + + + + CassandraDecrypt + Deploy/dev/Core/CassandraDecrypt + + + PT_SINGLE_SELECT + false + 1 + + + build_number + + choice-parameter-9600651313765 + 1 + + false + + + + CassandraDecrypt + Deploy/dev/Core/CassandraDecrypt + + artifact_source + ET_FORMATTED_HTML + true + + + artifact_version + + choice-parameter-9600653373369 + 1 + + false + + + + CassandraDecrypt + Deploy/dev/Core/CassandraDecrypt + + artifact_source + ET_FORMATTED_HTML + true + + + private_branch + + choice-parameter-2544395024638227 + 1 + + false + + + + false + + + CassandraDecrypt + Deploy/dev/Core/CassandraDecrypt + + + ET_FORMATTED_HTML + true + + + branch_or_tag + + choice-parameter-2620434998790477 + 1 + + false + + + + false + + + CassandraDecrypt + Deploy/dev/Core/CassandraDecrypt + + + ET_FORMATTED_HTML + true + + + cassandra_jar_name + + + + groups-service-util-1.0-SNAPSHOT-jar-with-dependencies.jar + user-declaration-util-1.0-SNAPSHOT-jar-with-dependencies.jar + + + + + + + 0 + 0 + + false + project + false + + + + + + + + ArtifactUpload/dev/Core/CassandraDecrypt + + SUCCESS + 0 + BLUE + true + + + + + + + + 2 + + + https://github.com/project-sunbird/sunbird-devops.git + + + + + ${branch_or_tag} + + + false + + + + true + false + + 0 + false + + + + pipelines/deploy/cassandra-deploy/Jenkinsfile.decrypt + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/Cert/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/Cert/config.xml new file mode 100644 index 0000000000..e2fa6869fb --- /dev/null +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/Cert/config.xml @@ -0,0 +1,159 @@ + + + + + hudson.model.ParametersDefinitionProperty + com.sonyericsson.rebuild.RebuildSettings + + + + + false + + + + -1 + 10 + -1 + 2 + + + + + false + false + + + + + absolute_job_path + <font color=dimgray size=2><b>Do not change this value! The metadata.json will be copied from this job.</b></font> + ArtifactUpload/dev/Core/Cert + false + + + image_tag + <font color=red size=2><b>CAUTION: If the value is blank, image tag will be taken from the latest metadata.json.</b></font> + + false + + + private_branch + + choice-parameter-2544395024638227 + 1 + + false + + + + false + + + Cert + Deploy/dev/Kubernetes/Cert + + + ET_FORMATTED_HTML + true + + + branch_or_tag + + choice-parameter-2620434998790477 + 1 + + false + + + + false + + + Cert + Deploy/dev/Kubernetes/Cert + + + ET_FORMATTED_HTML + true + + + role_name + + + + sunbird-deploy + + + + + + + 0 + 0 + + false + project + false + + + + + + + + ArtifactUpload/dev/Core/Cert + + SUCCESS + 0 + BLUE + true + + + + + + + + 2 + + + https://github.com/project-sunbird/sunbird-devops.git + + + + + ${branch_or_tag} + + + false + + + + true + false + + 0 + false + + + + kubernetes/pipelines/deploy_core/Jenkinsfile + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/CertRegistry/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/CertRegistry/config.xml new file mode 100644 index 0000000000..d88da2db63 --- /dev/null +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/CertRegistry/config.xml @@ -0,0 +1,159 @@ + + + + + hudson.model.ParametersDefinitionProperty + com.sonyericsson.rebuild.RebuildSettings + + + + + false + + + + -1 + 10 + -1 + 2 + + + + + false + false + + + + + absolute_job_path + <font color=dimgray size=2><b>Do not change this value! The metadata.json will be copied from this job.</b></font> + ArtifactUpload/dev/Core/CertRegistryService + false + + + image_tag + <font color=red size=2><b>CAUTION: If the value is blank, image tag will be taken from the latest metadata.json.</b></font> + + false + + + private_branch + + choice-parameter-2544395024638227 + 1 + + false + + + + false + + + CertRegistry + Deploy/dev/Kubernetes/CertRegistry + + + ET_FORMATTED_HTML + true + + + branch_or_tag + + choice-parameter-2620434998790477 + 1 + + false + + + + false + + + CertRegistry + Deploy/dev/Kubernetes/CertRegistry + + + ET_FORMATTED_HTML + true + + + role_name + + + + sunbird-deploy + + + + + + + 0 + 0 + + false + project + false + + + + + + + + ArtifactUpload/dev/Core/CertRegistryService + + SUCCESS + 0 + BLUE + true + + + + + + + + 2 + + + https://github.com/project-sunbird/sunbird-devops.git + + + + + ${branch_or_tag} + + + false + + + + true + false + + 0 + false + + + + kubernetes/pipelines/deploy_core/Jenkinsfile + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/Content/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/Content/config.xml new file mode 100644 index 0000000000..8aa755cdc5 --- /dev/null +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/Content/config.xml @@ -0,0 +1,159 @@ + + + + + hudson.model.ParametersDefinitionProperty + com.sonyericsson.rebuild.RebuildSettings + + + + + false + + + + -1 + 10 + -1 + 2 + + + + + false + false + + + + + absolute_job_path + <font color=dimgray size=2><b>Do not change this value! The metadata.json will be copied from this job.</b></font> + ArtifactUpload/dev/Core/Content + false + + + image_tag + <font color=red size=2><b>CAUTION: If the value is blank, image tag will be taken from the latest metadata.json.</b></font> + + false + + + private_branch + + choice-parameter-2544395024638227 + 1 + + false + + + + false + + + Content + Deploy/dev/Kubernetes/Content + + + ET_FORMATTED_HTML + true + + + branch_or_tag + + choice-parameter-2620434998790477 + 1 + + false + + + + false + + + Content + Deploy/dev/Kubernetes/Content + + + ET_FORMATTED_HTML + true + + + role_name + + + + sunbird-deploy + + + + + + + 0 + 0 + + false + project + false + + + + + + + + ArtifactUpload/dev/Core/Content + + SUCCESS + 0 + BLUE + true + + + + + + + + 2 + + + https://github.com/project-sunbird/sunbird-devops.git + + + + + ${branch_or_tag} + + + false + + + + true + false + + 0 + false + + + + kubernetes/pipelines/deploy_core/Jenkinsfile + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/Enc/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/Enc/config.xml new file mode 100644 index 0000000000..7c79c007c1 --- /dev/null +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/Enc/config.xml @@ -0,0 +1,159 @@ + + + + + hudson.model.ParametersDefinitionProperty + com.sonyericsson.rebuild.RebuildSettings + + + + + false + + + + -1 + 10 + -1 + 2 + + + + + false + false + + + + + absolute_job_path + <font color=dimgray size=2><b>Do not change this value! The metadata.json will be copied from this job.</b></font> + ArtifactUpload/dev/Core/EncService + false + + + image_tag + <font color=red size=2><b>CAUTION: If the value is blank, image tag will be taken from the latest metadata.json.</b></font> + + false + + + private_branch + + choice-parameter-2544395024638227 + 1 + + false + + + + false + + + Enc + Deploy/dev/Kubernetes/Enc + + + ET_FORMATTED_HTML + true + + + branch_or_tag + + choice-parameter-2620434998790477 + 1 + + false + + + + false + + + Enc + Deploy/dev/Kubernetes/Enc + + + ET_FORMATTED_HTML + true + + + role_name + + + + sunbird-deploy + + + + + + + 0 + 0 + + false + project + false + + + + + + + + ArtifactUpload/dev/Core/EncService + + SUCCESS + 0 + BLUE + true + + + + + + + + 2 + + + https://github.com/project-sunbird/sunbird-devops.git + + + + + ${branch_or_tag} + + + false + + + + true + false + + 0 + false + + + + kubernetes/pipelines/deploy_core/Jenkinsfile + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/FuntionalTestCases/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/FuntionalTestCases/config.xml new file mode 100644 index 0000000000..3db5484d42 --- /dev/null +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/FuntionalTestCases/config.xml @@ -0,0 +1,69 @@ + + + + + + + + + + + + false + + + + -1 + 10 + -1 + 2 + + + + false + false + + + 0 + 0 + + false + project + false + + + + + + + H 23 * * * + + + + + + + 2 + + + https://github.com/project-sunbird/sunbird-devops.git + + + + + release-2.10.0 + + + release-3.0.0 + + + false + + + + Jenkinsfile + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/Groups/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/Groups/config.xml new file mode 100644 index 0000000000..619cd6c345 --- /dev/null +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/Groups/config.xml @@ -0,0 +1,159 @@ + + + + + hudson.model.ParametersDefinitionProperty + com.sonyericsson.rebuild.RebuildSettings + + + + + false + + + + -1 + 10 + -1 + 2 + + + + + false + false + + + + + absolute_job_path + <font color=dimgray size=2><b>Do not change this value! The metadata.json will be copied from this job.</b></font> + ArtifactUpload/dev/Core/Groups + false + + + image_tag + <font color=red size=2><b>CAUTION: If the value is blank, image tag will be taken from the latest metadata.json.</b></font> + + false + + + private_branch + + choice-parameter-2544395024638227 + 1 + + false + + + + false + + + Groups + Deploy/dev/Kubernetes/Groups + + + ET_FORMATTED_HTML + true + + + branch_or_tag + + choice-parameter-2620434998790477 + 1 + + false + + + + false + + + Groups + Deploy/dev/Kubernetes/Groups + + + ET_FORMATTED_HTML + true + + + role_name + + + + sunbird-deploy + + + + + + + 0 + 0 + + false + project + false + + + + + + + + ArtifactUpload/dev/Core/Groups + + SUCCESS + 0 + BLUE + true + + + + + + + + 2 + + + https://github.com/project-sunbird/sunbird-devops.git + + + + + release-3.4.0 + + + false + + + + true + false + + 0 + false + + + + kubernetes/pipelines/deploy_core/Jenkinsfile + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/Hawkeye-superset/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/Hawkeye-superset/config.xml new file mode 100644 index 0000000000..e9028d14c3 --- /dev/null +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/Hawkeye-superset/config.xml @@ -0,0 +1,159 @@ + + + + + hudson.model.ParametersDefinitionProperty + com.sonyericsson.rebuild.RebuildSettings + + + + + false + + + + -1 + 10 + -1 + 2 + + + + + false + false + + + + + absolute_job_path + <font color=dimgray size=2><b>Do not change this value! The metadata.json will be copied from this job.</b></font> + ArtifactUpload/dev/Core/Hawkeye-superset + false + + + image_tag + <font color=red size=2><b>CAUTION: If the value is blank, image tag will be taken from the latest metadata.json.</b></font> + + false + + + private_branch + + choice-parameter-2544395024638227 + 1 + + false + + + + false + + + Hawkeye-superset + Deploy/dev/Kubernetes/Hawkeye-superset + + + ET_FORMATTED_HTML + true + + + branch_or_tag + + choice-parameter-2620434998790477 + 1 + + false + + + + false + + + Hawkeye-superset + Deploy/dev/Kubernetes/Hawkeye-superset + + + ET_FORMATTED_HTML + true + + + role_name + + + + helm-deploy + + + + + + + 0 + 0 + + false + project + false + + + + + + + + /ArtifactUpload/dev/Core/Hawkeye-superset + + SUCCESS + 0 + BLUE + true + + + + + + + + 2 + + + https://github.com/project-sunbird/sunbird-devops.git + + + + + release-3.3.0 + + + false + + + + true + false + + 0 + false + + + + kubernetes/pipelines/deploy_core/Jenkinsfile + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/Keycloak/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/Keycloak/config.xml new file mode 100644 index 0000000000..530f56dfc8 --- /dev/null +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/Keycloak/config.xml @@ -0,0 +1,206 @@ + + + + false + + + + -1 + 10 + -1 + 2 + + + + + false + false + + + + + absolute_job_path + <font color=dimgray size=2><b>Do not change this value! The metadata.json will be copied from this job.</b></font> + ArtifactUpload/dev/Core/Keycloak + false + + + artifact_source + <font color=dimgray size=2><b> +ArtifactRepo - Download the artifact from azure blob, JenkinsJob - Use the atrifact from Jenkins job.</b></font> + choice-parameter-9600649228560 + 1 + + false + + + + Keycloak + Deploy/dev/Kubernetes/Keycloak + + + PT_SINGLE_SELECT + false + 1 + + + build_number + + choice-parameter-9600651313765 + 1 + + false + + + + Keycloak + Deploy/dev/Kubernetes/Keycloak + + artifact_source + ET_FORMATTED_HTML + true + + + artifact_version + + choice-parameter-9600653373369 + 1 + + false + + + + Keycloak + Deploy/dev/Kubernetes/Keycloak + + artifact_source + ET_FORMATTED_HTML + true + + + private_branch + + choice-parameter-2544395024638227 + 1 + + false + + + + false + + + Keycloak + Deploy/dev/Kubernetes/Keycloak + + + ET_FORMATTED_HTML + true + + + branch_or_tag + + choice-parameter-2620434998790477 + 1 + + false + + + + false + + + Keycloak + Deploy/dev/Kubernetes/Keycloak + + + ET_FORMATTED_HTML + true + + + sunbird_auth_branch_or_tag + <font color=dimgray size=2><b>Provide the branch or tag of sunbird auth repo.</b></font> + release-1.15_RC9 + false + + + + + 0 + 0 + + false + project + false + + + + + + + + + + 2 + + + https://github.com/project-sunbird/sunbird-devops.git + + + + + keycloak-3.2.0 + + + false + + + + pipelines/deploy/keycloak/Jenkinsfile + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/KeycloakMigration/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/KeycloakMigration/config.xml new file mode 100644 index 0000000000..f34b4e9742 --- /dev/null +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/KeycloakMigration/config.xml @@ -0,0 +1,173 @@ + + + + + false + + + + -1 + 10 + -1 + 2 + + + + + false + false + + + + + absolute_job_path + <font color=dimgray size=2><b>Do not change this value! The metadata.json will be copied from this job.</b></font> + ArtifactUpload/dev/Core/Keycloak + false + + + artifact_source + <font color=dimgray size=2><b> +ArtifactRepo - Download the artifact from azure blob, JenkinsJob - Use the atrifact from Jenkins job.</b></font> + choice-parameter-9600649228560 + 1 + + false + + + + false + + + KeycloakMigration + Deploy/dev/Kubernetes/KeycloakMigration + + + PT_SINGLE_SELECT + false + 1 + + + build_number + + choice-parameter-9600651313765 + 1 + + false + + + + false + + + KeycloakMigration + Deploy/dev/Kubernetes/KeycloakMigration + + artifact_source + ET_FORMATTED_HTML + true + + + artifact_version + + choice-parameter-9600653373369 + 1 + + false + + + + false + + + KeycloakMigration + Deploy/dev/Kubernetes/KeycloakMigration + + artifact_source + ET_FORMATTED_HTML + true + + + private_branch + + choice-parameter-2544395024638227 + 1 + + false + + + + false + + + KeycloakMigration + Deploy/dev/Kubernetes/KeycloakMigration + + + ET_FORMATTED_HTML + true + + + + + 0 + 0 + + false + project + false + + + + + + + + + 2 + + + https://github.com/project-sunbird/sunbird-devops.git + + + + + release-2.5.0 + + + false + + + + pipelines/deploy/keycloak-migration/Jenkinsfile + true + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/KnowledgeMW/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/KnowledgeMW/config.xml new file mode 100644 index 0000000000..89018080dc --- /dev/null +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/KnowledgeMW/config.xml @@ -0,0 +1,159 @@ + + + + + hudson.model.ParametersDefinitionProperty + com.sonyericsson.rebuild.RebuildSettings + + + + + false + + + + -1 + 10 + -1 + 2 + + + + + false + false + + + + + absolute_job_path + <font color=dimgray size=2><b>Do not change this value! The metadata.json will be copied from this job.</b></font> + ArtifactUpload/dev/Core/KnowledgeMW + false + + + image_tag + <font color=red size=2><b>CAUTION: If the value is blank, image tag will be taken from the latest metadata.json.</b></font> + + false + + + private_branch + + choice-parameter-2544395024638227 + 1 + + false + + + + false + + + KnowledgeMW + Deploy/dev/Kubernetes/KnowledgeMW + + + ET_FORMATTED_HTML + true + + + branch_or_tag + + choice-parameter-2620434998790477 + 1 + + false + + + + false + + + KnowledgeMW + Deploy/dev/Kubernetes/KnowledgeMW + + + ET_FORMATTED_HTML + true + + + role_name + + + + sunbird-deploy + + + + + + + 0 + 0 + + false + project + false + + + + + + + + ArtifactUpload/dev/Core/KnowledgeMW + + SUCCESS + 0 + BLUE + true + + + + + + + + 2 + + + https://github.com/project-sunbird/sunbird-devops.git + + + + + release-3.4.0 + + + false + + + + true + false + + 0 + false + + + + kubernetes/pipelines/deploy_core/Jenkinsfile + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/KongJWTAdminUtil/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/KongJWTAdminUtil/config.xml new file mode 100644 index 0000000000..54d1fa46bf --- /dev/null +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/KongJWTAdminUtil/config.xml @@ -0,0 +1,136 @@ + + + + + hudson.model.ParametersDefinitionProperty + com.sonyericsson.rebuild.RebuildSettings + + + + + false + + + + -1 + 10 + -1 + 2 + + + + + false + false + + + + + private_branch + + choice-parameter-2544395024638227 + 1 + + false + + + + false + + + KongJWTAdminUtil + Deploy/dev/Kubernetes/KongJWTAdminUtil + + + ET_FORMATTED_HTML + true + + + branch_or_tag + + choice-parameter-2620434998790477 + 1 + + false + + + + false + + + KongJWTAdminUtil + Deploy/dev/Kubernetes/KongJWTAdminUtil + + + ET_FORMATTED_HTML + true + + + role_name + + + + kong-jwt-create-adminutil + + + + + + + 0 + 0 + + false + project + false + + + + + + + + + + 2 + + + https://github.com/project-sunbird/sunbird-devops.git + + + + + release-3.4.0 + + + false + + + + true + false + + 0 + false + + + + kubernetes/pipelines/kong-jwt-create-adminutil/Jenkinsfile + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/Learner/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/Learner/config.xml new file mode 100644 index 0000000000..a79a0679ab --- /dev/null +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/Learner/config.xml @@ -0,0 +1,159 @@ + + + + + hudson.model.ParametersDefinitionProperty + com.sonyericsson.rebuild.RebuildSettings + + + + + false + + + + -1 + 10 + -1 + 2 + + + + + false + false + + + + + absolute_job_path + <font color=dimgray size=2><b>Do not change this value! The metadata.json will be copied from this job.</b></font> + ArtifactUpload/dev/Core/Learner + false + + + image_tag + <font color=red size=2><b>CAUTION: If the value is blank, image tag will be taken from the latest metadata.json.</b></font> + + false + + + private_branch + + choice-parameter-2544395024638227 + 1 + + false + + + + false + + + Learner + Deploy/dev/Kubernetes/Learner + + + ET_FORMATTED_HTML + true + + + branch_or_tag + + choice-parameter-2620434998790477 + 1 + + false + + + + false + + + Learner + Deploy/dev/Kubernetes/Learner + + + ET_FORMATTED_HTML + true + + + role_name + + + + sunbird-deploy + + + + + + + 0 + 0 + + false + project + false + + + + + + + + ArtifactUpload/dev/Core/Learner + + SUCCESS + 0 + BLUE + true + + + + + + + + 2 + + + https://github.com/project-sunbird/sunbird-devops.git + + + + + release-3.4.0 + + + false + + + + true + false + + 0 + false + + + + kubernetes/pipelines/deploy_core/Jenkinsfile + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/Lms/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/Lms/config.xml new file mode 100644 index 0000000000..306f28c71e --- /dev/null +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/Lms/config.xml @@ -0,0 +1,159 @@ + + + + + hudson.model.ParametersDefinitionProperty + com.sonyericsson.rebuild.RebuildSettings + + + + + false + + + + -1 + 10 + -1 + 2 + + + + + false + false + + + + + absolute_job_path + <font color=dimgray size=2><b>Do not change this value! The metadata.json will be copied from this job.</b></font> + ArtifactUpload/dev/Core/Lms + false + + + image_tag + <font color=red size=2><b>CAUTION: If the value is blank, image tag will be taken from the latest metadata.json.</b></font> + + false + + + private_branch + + choice-parameter-2544395024638227 + 1 + + false + + + + false + + + Lms + Deploy/dev/Kubernetes/Lms + + + ET_FORMATTED_HTML + true + + + branch_or_tag + + choice-parameter-2620434998790477 + 1 + + false + + + + false + + + Lms + Deploy/dev/Kubernetes/Lms + + + ET_FORMATTED_HTML + true + + + role_name + + + + sunbird-deploy + + + + + + + 0 + 0 + + false + project + false + + + + + + + + ArtifactUpload/dev/Core/Lms + + SUCCESS + 0 + BLUE + true + + + + + + + + 2 + + + https://github.com/project-sunbird/sunbird-devops.git + + + + + release-3.4.0 + + + false + + + + true + false + + 0 + false + + + + kubernetes/pipelines/deploy_core/Jenkinsfile + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/Logging/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/Logging/config.xml new file mode 100644 index 0000000000..f123de45ad --- /dev/null +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/Logging/config.xml @@ -0,0 +1,149 @@ + + + + + hudson.model.ParametersDefinitionProperty + com.sonyericsson.rebuild.RebuildSettings + + + + + false + + + + -1 + 10 + -1 + 2 + + + + + false + false + + + + + private_branch + + choice-parameter-2544395024638227 + 1 + + false + + + + false + + + Logging + Deploy/dev/Kubernetes/Logging + + + ET_FORMATTED_HTML + true + + + branch_or_tag + + choice-parameter-2620434998790477 + 1 + + false + + + + false + + + Logging + Deploy/dev/Kubernetes/Logging + + + ET_FORMATTED_HTML + true + + + chartname + + + + elasticsearch + fluent-bit + kibana + oauth2-proxy + fluentd-elasticsearch + + + + + role_name + + + + logging + + + + + + + 0 + 0 + + false + project + false + + + + + + + + + + 2 + + + https://github.com/project-sunbird/sunbird-devops.git + + + + + release-3.3.0 + + + false + + + + true + false + + 0 + false + + + + kubernetes/pipelines/logging/Jenkinsfile + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/Monitoring/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/Monitoring/config.xml new file mode 100644 index 0000000000..275efa8201 --- /dev/null +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/Monitoring/config.xml @@ -0,0 +1,133 @@ + + + + + hudson.model.ParametersDefinitionProperty + com.sonyericsson.rebuild.RebuildSettings + + + + + false + + + + -1 + 10 + -1 + 2 + + + + + false + false + + + + + private_branch + + choice-parameter-2544395024638227 + 1 + + false + + + + false + + + Monitoring + Deploy/dev/Kubernetes/Monitoring + + + ET_FORMATTED_HTML + true + + + branch_or_tag + + choice-parameter-2620434998790477 + 1 + + false + + + + false + + + Monitoring + Deploy/dev/Kubernetes/Monitoring + + + ET_FORMATTED_HTML + true + + + tag + + + false + + + + + 0 + 0 + + false + project + false + + + + + + + + + + 2 + + + https://github.com/project-sunbird/sunbird-devops.git + + + + + release-3.5.0 + + + false + + + + true + false + + 0 + false + + + + kubernetes/pipelines/monitoring/Jenkinsfile + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/NetworkConfig/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/NetworkConfig/config.xml new file mode 100644 index 0000000000..be00b7b2d6 --- /dev/null +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/NetworkConfig/config.xml @@ -0,0 +1,133 @@ + + + + + + hudson.model.ParametersDefinitionProperty + com.sonyericsson.rebuild.RebuildSettings + + + + + false + + + + -1 + 10 + -1 + 2 + + + + + false + false + + + + + private_branch + + choice-parameter-2544395024638227 + 1 + + false + + + + false + + + NetworkConfig + Deploy/dev/Kubernetes/NetworkConfig + + + ET_FORMATTED_HTML + true + + + branch_or_tag + + choice-parameter-2620434998790477 + 1 + + false + + + + false + + + NetworkConfig + Deploy/dev/Kubernetes/NetworkConfig + + + ET_FORMATTED_HTML + true + + + playbook + This parameter is optional. By default the playbook will be deploy_core_service.yml + networkconfig.yaml + false + + + + + 0 + 0 + + false + project + false + + + + + + + + + 2 + + + https://github.com/project-sunbird/sunbird-devops.git + + + + + internal-lb-fix + + + false + + + + true + false + + 0 + false + + + + kubernetes/pipelines/common/Jenkinsfile + false + + + true + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/Nodebb/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/Nodebb/config.xml new file mode 100644 index 0000000000..752aac1666 --- /dev/null +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/Nodebb/config.xml @@ -0,0 +1,159 @@ + + + + + hudson.model.ParametersDefinitionProperty + com.sonyericsson.rebuild.RebuildSettings + + + + + false + + + + -1 + 10 + -1 + 2 + + + + + false + false + + + + + absolute_job_path + <font color=dimgray size=2><b>Do not change this value! The metadata.json will be copied from this job.</b></font> + ArtifactUpload/dev/Core/Nodebb + false + + + image_tag + <font color=red size=2><b>CAUTION: If the value is blank, image tag will be taken from the latest metadata.json.</b></font> + + false + + + private_branch + + choice-parameter-2544395024638227 + 1 + + false + + + + false + + + Nodebb + Deploy/dev/Kubernetes/Nodebb + + + ET_FORMATTED_HTML + true + + + branch_or_tag + + choice-parameter-2620434998790477 + 1 + + false + + + + false + + + Nodebb + Deploy/dev/Kubernetes/Nodebb + + + ET_FORMATTED_HTML + true + + + role_name + + + + sunbird-deploy + + + + + + + 0 + 0 + + false + project + false + + + + + + + + ArtifactUpload/dev/Core/Nodebb + + SUCCESS + 0 + BLUE + true + + + + + + + + 2 + + + https://github.com/project-sunbird/sunbird-devops.git + + + + + release-3.4.0 + + + false + + + + true + false + + 0 + false + + + + kubernetes/pipelines/deploy_core/Jenkinsfile + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/Notification/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/Notification/config.xml new file mode 100644 index 0000000000..f1aec9208a --- /dev/null +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/Notification/config.xml @@ -0,0 +1,159 @@ + + + + + hudson.model.ParametersDefinitionProperty + com.sonyericsson.rebuild.RebuildSettings + + + + + false + + + + -1 + 10 + -1 + 2 + + + + + false + false + + + + + absolute_job_path + <font color=dimgray size=2><b>Do not change this value! The metadata.json will be copied from this job.</b></font> + ArtifactUpload/dev/Core/Notification + false + + + image_tag + <font color=red size=2><b>CAUTION: If the value is blank, image tag will be taken from the latest metadata.json.</b></font> + + false + + + private_branch + + choice-parameter-2544395024638227 + 1 + + false + + + + false + + + Notification + Deploy/dev/Kubernetes/Notification + + + ET_FORMATTED_HTML + true + + + branch_or_tag + + choice-parameter-2620434998790477 + 1 + + false + + + + false + + + Notification + Deploy/dev/Kubernetes/Notification + + + ET_FORMATTED_HTML + true + + + role_name + + + + sunbird-deploy + + + + + + + 0 + 0 + + false + project + false + + + + + + + + ArtifactUpload/dev/Core/Notification + + SUCCESS + 0 + BLUE + true + + + + + + + + 2 + + + https://github.com/project-sunbird/sunbird-devops.git + + + + + ${branch_or_tag} + + + false + + + + true + false + + 0 + false + + + + kubernetes/pipelines/deploy_core/Jenkinsfile + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/OnboardAPIs/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/OnboardAPIs/config.xml new file mode 100644 index 0000000000..a6ec25b005 --- /dev/null +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/OnboardAPIs/config.xml @@ -0,0 +1,136 @@ + + + + + hudson.model.ParametersDefinitionProperty + com.sonyericsson.rebuild.RebuildSettings + + + + + false + + + + -1 + 10 + -1 + 2 + + + + + false + false + + + + + private_branch + + choice-parameter-2544395024638227 + 1 + + false + + + + false + + + OnboardAPIs + Deploy/dev/Kubernetes/OnboardAPIs + + + ET_FORMATTED_HTML + true + + + branch_or_tag + + choice-parameter-2620434998790477 + 1 + + false + + + + false + + + OnboardAPIs + Deploy/dev/Kubernetes/OnboardAPIs + + + ET_FORMATTED_HTML + true + + + role_name + + + + kong-api + + + + + + + 0 + 0 + + false + project + false + + + + + + + + + + 2 + + + https://github.com/project-sunbird/sunbird-devops.git + + + + + release-3.4.0 + + + false + + + + true + false + + 0 + false + + + + kubernetes/pipelines/onboard-api/Jenkinsfile + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/OnboardConsumers/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/OnboardConsumers/config.xml new file mode 100644 index 0000000000..10044249b5 --- /dev/null +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/OnboardConsumers/config.xml @@ -0,0 +1,117 @@ + + + + false + + + + -1 + 10 + -1 + 2 + + + + + false + false + + + + + private_branch + + choice-parameter-186788940114941 + 1 + + false + + + + false + + + OnboardConsumers + Deploy/dev/Kubernetes/OnboardConsumers + + + ET_FORMATTED_HTML + true + + + branch_or_tag + + choice-parameter-186788943531283 + 1 + + false + + + + false + + + OnboardConsumers + Deploy/dev/Kubernetes/OnboardConsumers + + + ET_FORMATTED_HTML + true + + + + + 0 + 0 + + false + project + false + + + + + + + 2 + + + https://github.com/project-sunbird/sunbird-devops.git + + + + + ${branch_or_tag} + + + false + + + + true + false + + 1 + false + + + + kubernetes/pipelines/onboard-consumer/Jenkinsfile + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/Player/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/Player/config.xml new file mode 100644 index 0000000000..a28bc0763c --- /dev/null +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/Player/config.xml @@ -0,0 +1,159 @@ + + + + + hudson.model.ParametersDefinitionProperty + com.sonyericsson.rebuild.RebuildSettings + + + + + false + + + + -1 + 10 + -1 + 2 + + + + + false + false + + + + + absolute_job_path + <font color=dimgray size=2><b>Do not change this value! The metadata.json will be copied from this job.</b></font> + ArtifactUpload/dev/Core/Player + false + + + image_tag + <font color=red size=2><b>CAUTION: If the value is blank, image tag will be taken from the latest metadata.json.</b></font> + + true + + + private_branch + + choice-parameter-2544395024638227 + 1 + + false + + + + false + + + Player + Deploy/dev/Kubernetes/Player + + + ET_FORMATTED_HTML + true + + + branch_or_tag + + choice-parameter-2620434998790477 + 1 + + false + + + + false + + + Player + Deploy/dev/Kubernetes/Player + + + ET_FORMATTED_HTML + true + + + role_name + + + + deploy-player + + + + + + + 0 + 0 + + false + project + false + + + + + + + + ArtifactUpload/dev/Core/Player + + SUCCESS + 0 + BLUE + true + + + + + + + + 2 + + + https://github.com/project-sunbird/sunbird-devops.git + + + + + release-3.4.0 + + + false + + + + true + false + + 0 + false + + + + kubernetes/pipelines/deploy_core/Jenkinsfile.player + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/Print/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/Print/config.xml new file mode 100644 index 0000000000..a79315647f --- /dev/null +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/Print/config.xml @@ -0,0 +1,159 @@ + + + + + hudson.model.ParametersDefinitionProperty + com.sonyericsson.rebuild.RebuildSettings + + + + + false + + + + -1 + 10 + -1 + 2 + + + + + false + false + + + + + absolute_job_path + <font color=dimgray size=2><b>Do not change this value! The metadata.json will be copied from this job.</b></font> + ArtifactUpload/dev/Core/Print + false + + + image_tag + <font color=red size=2><b>CAUTION: If the value is blank, image tag will be taken from the latest metadata.json.</b></font> + + false + + + private_branch + + choice-parameter-2544395024638227 + 1 + + false + + + + false + + + Print + Deploy/dev/Kubernetes/Print + + + ET_FORMATTED_HTML + true + + + branch_or_tag + + choice-parameter-2620434998790477 + 1 + + false + + + + false + + + Print + Deploy/dev/Kubernetes/Print + + + ET_FORMATTED_HTML + true + + + role_name + + + + sunbird-deploy + + + + + + + 0 + 0 + + false + project + false + + + + + + + + ArtifactUpload/dev/Core/Print + + SUCCESS + 0 + BLUE + true + + + + + + + + 2 + + + https://github.com/project-sunbird/sunbird-devops.git + + + + + ${branch_or_tag} + + + false + + + + true + false + + 0 + false + + + + kubernetes/pipelines/deploy_core/Jenkinsfile + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/Report/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/Report/config.xml new file mode 100644 index 0000000000..47bf1e8ee4 --- /dev/null +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/Report/config.xml @@ -0,0 +1,159 @@ + + + + + hudson.model.ParametersDefinitionProperty + com.sonyericsson.rebuild.RebuildSettings + + + + + false + + + + -1 + 10 + -1 + 2 + + + + + false + false + + + + + absolute_job_path + <font color=dimgray size=2><b>Do not change this value! The metadata.json will be copied from this job.</b></font> + ArtifactUpload/dev/Core/Report + false + + + image_tag + <font color=red size=2><b>CAUTION: If the value is blank, image tag will be taken from the latest metadata.json.</b></font> + + false + + + private_branch + + choice-parameter-2544395024638227 + 1 + + false + + + + false + + + Report + Deploy/dev/Kubernetes/Report + + + ET_FORMATTED_HTML + true + + + branch_or_tag + + choice-parameter-2620434998790477 + 1 + + false + + + + false + + + Report + Deploy/dev/Kubernetes/Report + + + ET_FORMATTED_HTML + true + + + role_name + + + + sunbird-deploy + + + + + + + 0 + 0 + + false + project + false + + + + + + + + ArtifactUpload/dev/Core/Report + + SUCCESS + 0 + BLUE + true + + + + + + + + 2 + + + https://github.com/project-sunbird/sunbird-devops.git + + + + + release-3.3.0 + + + false + + + + true + false + + 0 + false + + + + kubernetes/pipelines/deploy_core/Jenkinsfile + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/Search/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/Search/config.xml new file mode 100644 index 0000000000..0ef53825ab --- /dev/null +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/Search/config.xml @@ -0,0 +1,159 @@ + + + + + hudson.model.ParametersDefinitionProperty + com.sonyericsson.rebuild.RebuildSettings + + + + + false + + + + -1 + 10 + -1 + 2 + + + + + false + false + + + + + absolute_job_path + <font color=dimgray size=2><b>Do not change this value! The metadata.json will be copied from this job.</b></font> + ArtifactUpload/dev/Core/Search + false + + + image_tag + <font color=red size=2><b>CAUTION: If the value is blank, image tag will be taken from the latest metadata.json.</b></font> + + false + + + private_branch + + choice-parameter-2544395024638227 + 1 + + false + + + + false + + + Search + Deploy/dev/Kubernetes/Search + + + ET_FORMATTED_HTML + true + + + branch_or_tag + + choice-parameter-2620434998790477 + 1 + + false + + + + false + + + Search + Deploy/dev/Kubernetes/Search + + + ET_FORMATTED_HTML + true + + + role_name + + + + sunbird-deploy + + + + + + + 0 + 0 + + false + project + false + + + + + + + + ArtifactUpload/dev/Core/Search + + SUCCESS + 0 + BLUE + true + + + + + + + + 2 + + + https://github.com/project-sunbird/sunbird-devops.git + + + + + release-3.4.0 + + + false + + + + true + false + + 0 + false + + + + kubernetes/pipelines/deploy_core/Jenkinsfile + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/Taxonomy/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/Taxonomy/config.xml new file mode 100644 index 0000000000..ef2a23242a --- /dev/null +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/Taxonomy/config.xml @@ -0,0 +1,159 @@ + + + + + hudson.model.ParametersDefinitionProperty + com.sonyericsson.rebuild.RebuildSettings + + + + + false + + + + -1 + 10 + -1 + 2 + + + + + false + false + + + + + absolute_job_path + <font color=dimgray size=2><b>Do not change this value! The metadata.json will be copied from this job.</b></font> + ArtifactUpload/dev/Core/Taxonomy + false + + + image_tag + <font color=red size=2><b>CAUTION: If the value is blank, image tag will be taken from the latest metadata.json.</b></font> + + false + + + private_branch + + choice-parameter-2544395024638227 + 1 + + false + + + + false + + + Taxonomy + Deploy/dev/Kubernetes/Taxonomy + + + ET_FORMATTED_HTML + true + + + branch_or_tag + + choice-parameter-2620434998790477 + 1 + + false + + + + false + + + Taxonomy + Deploy/dev/Kubernetes/Taxonomy + + + ET_FORMATTED_HTML + true + + + role_name + + + + sunbird-deploy + + + + + + + 0 + 0 + + false + project + false + + + + + + + + ArtifactUpload/dev/Core/Taxonomy + + SUCCESS + 0 + BLUE + true + + + + + + + + 2 + + + https://github.com/project-sunbird/sunbird-devops.git + + + + + release-3.4.0 + + + false + + + + true + false + + 0 + false + + + + kubernetes/pipelines/deploy_core/Jenkinsfile + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/Telemetry/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/Telemetry/config.xml new file mode 100644 index 0000000000..ef7c4a9a1a --- /dev/null +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/Telemetry/config.xml @@ -0,0 +1,159 @@ + + + + + hudson.model.ParametersDefinitionProperty + com.sonyericsson.rebuild.RebuildSettings + + + + + false + + + + -1 + 10 + -1 + 2 + + + + + false + false + + + + + absolute_job_path + <font color=dimgray size=2><b>Do not change this value! The metadata.json will be copied from this job.</b></font> + ArtifactUpload/dev/Core/Telemetry + false + + + image_tag + <font color=red size=2><b>CAUTION: If the value is blank, image tag will be taken from the latest metadata.json.</b></font> + + false + + + private_branch + + choice-parameter-2544395024638227 + 1 + + false + + + + false + + + Telemetry + Deploy/dev/Kubernetes/Telemetry + + + ET_FORMATTED_HTML + true + + + branch_or_tag + + choice-parameter-2620434998790477 + 1 + + false + + + + false + + + Telemetry + Deploy/dev/Kubernetes/Telemetry + + + ET_FORMATTED_HTML + true + + + role_name + + + + sunbird-deploy + + + + + + + 0 + 0 + + false + project + false + + + + + + + + ArtifactUpload/dev/Core/Telemetry + + SUCCESS + 0 + BLUE + true + + + + + + + + 2 + + + https://github.com/project-sunbird/sunbird-devops.git + + + + + ${branch_or_tag} + + + false + + + + true + false + + 0 + false + + + + kubernetes/pipelines/deploy_core/Jenkinsfile + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/UploadSchema/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/UploadSchema/config.xml new file mode 100644 index 0000000000..b2dbba0357 --- /dev/null +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/UploadSchema/config.xml @@ -0,0 +1,133 @@ + + + + + hudson.model.ParametersDefinitionProperty + com.sonyericsson.rebuild.RebuildSettings + + + + + false + + + + -1 + 10 + -1 + 2 + + + + + false + false + + + + + private_branch + + choice-parameter-2544395024638227 + 1 + + false + + + + false + + + UploadSchema + Deploy/dev/Kubernetes/UploadSchema + + + ET_FORMATTED_HTML + true + + + branch_or_tag + + choice-parameter-2620434998790477 + 1 + + false + + + + false + + + UploadSchema + Deploy/dev/Kubernetes/UploadSchema + + + ET_FORMATTED_HTML + true + + + kp_branch_or_tag + This is knowledge platform branch or tag + release-3.4.0 + false + + + + + 0 + 0 + + false + project + false + + + + + + + + + + 2 + + + https://github.com/project-sunbird/sunbird-devops.git + + + + + release-3.4.0 + + + false + + + + true + false + + 0 + false + + + + pipelines/upload/schema/knowledge-platform/Jenkinsfile + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/UserOrg/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/UserOrg/config.xml new file mode 100644 index 0000000000..bb6a462579 --- /dev/null +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/UserOrg/config.xml @@ -0,0 +1,159 @@ + + + + + + hudson.model.ParametersDefinitionProperty + com.sonyericsson.rebuild.RebuildSettings + + + + + false + + + + -1 + 10 + -1 + 2 + + + + + false + false + + + + + absolute_job_path + <font color=dimgray size=2><b>Do not change this value! The metadata.json will be copied from this job.</b></font> + ArtifactUpload/dev/Core/UserOrg + false + + + image_tag + <font color=red size=2><b>CAUTION: If the value is blank, image tag will be taken from the latest metadata.json.</b></font> + + false + + + private_branch + + choice-parameter-2544395024638227 + 1 + + false + + + + false + + + UserOrg + Deploy/dev/Kubernetes/UserOrg + + + ET_FORMATTED_HTML + true + + + branch_or_tag + + choice-parameter-2620434998790477 + 1 + + false + + + + false + + + UserOrg + Deploy/dev/Kubernetes/UserOrg + + + ET_FORMATTED_HTML + true + + + role_name + + + + sunbird-deploy + + + + + + + 0 + 0 + + false + project + false + + + + + + + ArtifactUpload/dev/Core/UserOrg + + SUCCESS + 0 + BLUE + true + + + + + + + + 2 + + + https://github.com/project-sunbird/sunbird-devops.git + + + + + ${branch_or_tag} + + + false + + + + true + false + + 0 + false + + + + kubernetes/pipelines/deploy_core/Jenkinsfile + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/Yarn/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/Yarn/config.xml new file mode 100644 index 0000000000..afb0969da8 --- /dev/null +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/Yarn/config.xml @@ -0,0 +1,241 @@ + + + + + hudson.model.ParametersDefinitionProperty + com.sonyericsson.rebuild.RebuildSettings + + + + + false + + + + -1 + 10 + -1 + 2 + + + + + false + false + + + + + absolute_job_path + <font color=dimgray size=2><b>Do not change this value! The metadata.json will be copied from this job.</b></font> + ArtifactUpload/dev/Core/Yarn + false + + + artifact_source + <font color=dimgray size=2><b> +ArtifactRepo - Download the artifact from azure blob, JenkinsJob - Use the atrifact from Jenkins job.</b></font> + choice-parameter-9061667106947 + 1 + + false + + + + Yarn + Deploy/dev/Kubernetes/Yarn + + + PT_SINGLE_SELECT + false + 1 + + + build_number + + choice-parameter-9061670571657 + 1 + + false + + + + Yarn + Deploy/dev/Kubernetes/Yarn + + artifact_source + ET_FORMATTED_HTML + true + + + artifact_version + + choice-parameter-9061673103864 + 1 + + false + + + + Yarn + Deploy/dev/Kubernetes/Yarn + + artifact_source + ET_FORMATTED_HTML + true + + + private_branch + + choice-parameter-2544395024638227 + 1 + + false + + + + false + + + Yarn + Deploy/dev/Kubernetes/Yarn + + + ET_FORMATTED_HTML + true + + + branch_or_tag + + choice-parameter-2620434998790477 + 1 + + false + + + + false + + + Yarn + Deploy/dev/Kubernetes/Yarn + + + ET_FORMATTED_HTML + true + + + job_names_to_deploy + <font color=green size=2><b>Choose the samza app names to deploy and this will kill the selected samza app and deploy them. Multi selection is available.</b></font> + choice-parameter-8026182213525059 + 1 + + false + + + + Yarn + Deploy/dev/Kubernetes/Yarn + + + PT_MULTI_SELECT + false + 1 + + + + + 0 + 0 + + false + project + false + + + + + + + + + + 2 + + + https://github.com/project-sunbird/sunbird-devops.git + + + + + ${branch_or_tag} + + + false + + + + true + false + + 1 + false + + + + pipelines/deploy/yarn/Jenkinsfile + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/certTemplate/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/certTemplate/config.xml new file mode 100644 index 0000000000..d02f6bf815 --- /dev/null +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/certTemplate/config.xml @@ -0,0 +1,136 @@ + + + + + false + + + + -1 + 10 + -1 + 2 + + + + + false + false + + + + + private_branch + + choice-parameter-2544395024638227 + 1 + + false + + + + false + + + certTemplate + + + ET_FORMATTED_HTML + true + + + branch_or_tag + + choice-parameter-2620434998790477 + 1 + + false + + + + false + + + certTemplate + + + ET_FORMATTED_HTML + true + + + sunbird_util_branch_or_tag + <font color=dimgray size=2><b>Provide the branch or tag of sunbird util repo for templates.</b></font> + release-2.3.0 + false + + + badgeType + <font color=dimgray size=2><b>Select the type of deployment as per your requirement.</b></font> + + + createBadge + createIssuer + createPublicKey + All + + + + + + + 0 + 0 + + false + project + false + + + + + + + + + 2 + + + https://github.com/project-sunbird/sunbird-devops.git + + + + + ${branch_or_tag} + + + false + + + + true + false + + 1 + false + + + + pipelines/certs-templates/Jenkinsfile + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/nginx-private-ingress/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/nginx-private-ingress/config.xml new file mode 100644 index 0000000000..6af233e9f1 --- /dev/null +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/nginx-private-ingress/config.xml @@ -0,0 +1,149 @@ + + + + + hudson.model.ParametersDefinitionProperty + com.sonyericsson.rebuild.RebuildSettings + + + + + false + + + + -1 + 10 + -1 + 2 + + + + + false + false + + + + + absolute_job_path + <font color=dimgray size=2><b>Do not change this value! The metadata.json will be copied from this job.</b></font> + ArtifactUpload/dev/Core/Proxy + false + + + image_tag + <font color=red size=2><b>CAUTION: If the value is blank, image tag will be taken from the latest metadata.json.</b></font> + + false + + + private_branch + + choice-parameter-2544395024638227 + 1 + + false + + + + false + + + nginx-private-ingress + Deploy/dev/Kubernetes/nginx-private-ingress + + + ET_FORMATTED_HTML + true + + + branch_or_tag + + choice-parameter-2620434998790477 + 1 + + false + + + + false + + + nginx-private-ingress + Deploy/dev/Kubernetes/nginx-private-ingress + + + ET_FORMATTED_HTML + true + + + role_name + + + + helm-deploy + sunbird-deploy + + + + + + + 0 + 0 + + false + project + false + + + + + + + + + + 2 + + + https://github.com/project-sunbird/sunbird-devops.git + + + + + ${branch_or_tag} + + + false + + + + true + false + + 0 + false + + + + kubernetes/pipelines/deploy_core/Jenkinsfile + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/nginx-public-ingress/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/nginx-public-ingress/config.xml new file mode 100644 index 0000000000..e24b07952f --- /dev/null +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Kubernetes/jobs/nginx-public-ingress/config.xml @@ -0,0 +1,149 @@ + + + + + hudson.model.ParametersDefinitionProperty + com.sonyericsson.rebuild.RebuildSettings + + + + + false + + + + -1 + 10 + -1 + 2 + + + + + false + false + + + + + absolute_job_path + <font color=dimgray size=2><b>Do not change this value! The metadata.json will be copied from this job.</b></font> + ArtifactUpload/dev/Core/Proxy + false + + + image_tag + <font color=red size=2><b>CAUTION: If the value is blank, image tag will be taken from the latest metadata.json.</b></font> + + false + + + private_branch + + choice-parameter-2544395024638227 + 1 + + false + + + + false + + + nginx-public-ingress + Deploy/dev/Kubernetes/nginx-public-ingress + + + ET_FORMATTED_HTML + true + + + branch_or_tag + + choice-parameter-2620434998790477 + 1 + + false + + + + false + + + nginx-public-ingress + Deploy/dev/Kubernetes/nginx-public-ingress + + + ET_FORMATTED_HTML + true + + + role_name + + + + helm-deploy + sunbird-deploy + + + + + + + 0 + 0 + + false + project + false + + + + + + + + + + 2 + + + https://github.com/project-sunbird/sunbird-devops.git + + + + + release-3.4.0 + + + false + + + + true + false + + 0 + false + + + + kubernetes/pipelines/deploy_core/Jenkinsfile + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Plugins/jobs/CollectionEditor/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Plugins/jobs/CollectionEditor/config.xml index 8e06439289..0f30f927ed 100644 --- a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Plugins/jobs/CollectionEditor/config.xml +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Plugins/jobs/CollectionEditor/config.xml @@ -1,11 +1,10 @@ - - + - + false - + false false @@ -17,150 +16,156 @@ ArtifactUpload/dev/Plugins/CollectionEditor false - + artifact_source <font color=dimgray size=2><b> ArtifactRepo - Download the artifact from azure blob, JenkinsJob - Use the atrifact from Jenkins job.</b></font> choice-parameter-620062284617427 1 false - - + + CollectionEditor + Deploy/dev/Plugins/CollectionEditor - + PT_SINGLE_SELECT false 1 - + build_number - + choice-parameter-620062286335119 1 false - - + + CollectionEditor + Deploy/dev/Plugins/CollectionEditor artifact_source ET_FORMATTED_HTML true - + artifact_version - + choice-parameter-620062288387509 1 false - - + + CollectionEditor + Deploy/dev/Plugins/CollectionEditor artifact_source ET_FORMATTED_HTML true - + private_branch - + choice-parameter-2544395024638227 1 +return """<b>This parameter is not used</b>""" false - - + + false CollectionEditor + Deploy/dev/Plugins/CollectionEditor - + ET_FORMATTED_HTML true - + branch_or_tag - + choice-parameter-2620434998790477 1 +return """<b>This parameter is not used</b>""" false - - + + false CollectionEditor + Deploy/dev/Plugins/CollectionEditor - + ET_FORMATTED_HTML true - + 0 0 false project false - + + - + ArtifactUpload/dev/Plugins/CollectionEditor SUCCESS @@ -172,8 +177,8 @@ return """<b>This parameter is not used</b>"&quo - - + + 2 @@ -182,7 +187,7 @@ return """<b>This parameter is not used</b>"&quo - ${branch_or_tag} + editor-chnages false @@ -191,7 +196,7 @@ return """<b>This parameter is not used</b>"&quo true false - + 0 false diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Plugins/jobs/ContentEditor/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Plugins/jobs/ContentEditor/config.xml index 2206e127f4..be250dc944 100644 --- a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Plugins/jobs/ContentEditor/config.xml +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Plugins/jobs/ContentEditor/config.xml @@ -1,7 +1,6 @@ - - + - + false @@ -17,150 +16,156 @@ ArtifactUpload/dev/Plugins/ContentEditor false - + artifact_source <font color=dimgray size=2><b> ArtifactRepo - Download the artifact from azure blob, JenkinsJob - Use the atrifact from Jenkins job.</b></font> choice-parameter-620062284617427 1 false - - + + ContentEditor + Deploy/dev/Plugins/ContentEditor - + PT_SINGLE_SELECT false 1 - + build_number - + choice-parameter-620062286335119 1 false - - + + ContentEditor + Deploy/dev/Plugins/ContentEditor artifact_source ET_FORMATTED_HTML true - + artifact_version - + choice-parameter-620062288387509 1 false - - + + ContentEditor + Deploy/dev/Plugins/ContentEditor artifact_source ET_FORMATTED_HTML true - + private_branch - + choice-parameter-2544395024638227 1 +return """<b>This parameter is not used</b>""" false - - + + false ContentEditor + Deploy/dev/Plugins/ContentEditor - + ET_FORMATTED_HTML true - + branch_or_tag - + choice-parameter-2620434998790477 1 +return """<b>This parameter is not used</b>""" false - - + + false ContentEditor + Deploy/dev/Plugins/ContentEditor - + ET_FORMATTED_HTML true - + 0 0 false project false - + + - + ArtifactUpload/dev/Plugins/ContentEditor SUCCESS @@ -172,8 +177,8 @@ return """<b>This parameter is not used</b>"&quo - - + + 2 @@ -182,7 +187,7 @@ return """<b>This parameter is not used</b>"&quo - ${branch_or_tag} + editor-chnages false @@ -191,7 +196,7 @@ return """<b>This parameter is not used</b>"&quo true false - + 0 false diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Plugins/jobs/ContentPlayer/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Plugins/jobs/ContentPlayer/config.xml index 999dde5c35..04b82ffeb0 100644 --- a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Plugins/jobs/ContentPlayer/config.xml +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Plugins/jobs/ContentPlayer/config.xml @@ -1,7 +1,6 @@ - - + - + false @@ -17,51 +16,51 @@ ArtifactUpload/dev/Plugins/ContentPlayer false - + artifact_source <font color=dimgray size=2><b> ArtifactRepo - Download the artifact from azure blob, JenkinsJob - Use the atrifact from Jenkins job.</b></font> choice-parameter-620062284617427 1 false - - + + ContentPlayer Deploy/dev/Plugins/ContentPlayer - + PT_SINGLE_SELECT false 1 - + build_number - + choice-parameter-620062286335119 1 false - - + + @@ -72,23 +71,23 @@ return "<b>Not Applicable</b>" ET_FORMATTED_HTML true - + artifact_version - + choice-parameter-620062288387509 1 false - - + + @@ -99,73 +98,74 @@ return "<b>Not Applicable</b>" ET_FORMATTED_HTML true - + private_branch - + choice-parameter-2544395024638227 1 +return """<b>This parameter is not used</b>""" false - - + + false ContentPlayer Deploy/dev/Plugins/ContentPlayer - + ET_FORMATTED_HTML true - + branch_or_tag - + choice-parameter-2620434998790477 1 +return """<b>This parameter is not used</b>""" false - - + + false ContentPlayer Deploy/dev/Plugins/ContentPlayer - + ET_FORMATTED_HTML true - + 0 0 false project false - + + - + ArtifactUpload/dev/Plugins/ContentPlayer SUCCESS @@ -177,8 +177,8 @@ return """<b>This parameter is not used</b>"&quo - - + + 2 @@ -196,7 +196,7 @@ return """<b>This parameter is not used</b>"&quo true false - + 0 false diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Plugins/jobs/ContentPlugins/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Plugins/jobs/ContentPlugins/config.xml index 37fdaa0d4d..d3dc97dda4 100644 --- a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Plugins/jobs/ContentPlugins/config.xml +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Plugins/jobs/ContentPlugins/config.xml @@ -1,11 +1,10 @@ - - + - + false - + false false @@ -17,150 +16,156 @@ ArtifactUpload/dev/Plugins/ContentPlugins false - + artifact_source <font color=dimgray size=2><b> ArtifactRepo - Download the artifact from azure blob, JenkinsJob - Use the atrifact from Jenkins job.</b></font> choice-parameter-620062284617427 1 false - - + + ContentPlugins + Deploy/dev/Plugins/ContentPlugins - + PT_SINGLE_SELECT false 1 - + build_number - + choice-parameter-620062286335119 1 false - - + + ContentPlugins + Deploy/dev/Plugins/ContentPlugins artifact_source ET_FORMATTED_HTML true - + artifact_version - + choice-parameter-620062288387509 1 false - - + + ContentPlugins + Deploy/dev/Plugins/ContentPlugins artifact_source ET_FORMATTED_HTML true - + private_branch - + choice-parameter-2544395024638227 1 +return """<b>This parameter is not used</b>""" false - - + + false ContentPlugins + Deploy/dev/Plugins/ContentPlugins - + ET_FORMATTED_HTML true - + branch_or_tag - + choice-parameter-2620434998790477 1 +return """<b>This parameter is not used</b>""" false - - + + false ContentPlugins + Deploy/dev/Plugins/ContentPlugins - + ET_FORMATTED_HTML true - + 0 0 false project false - + + - + ArtifactUpload/dev/Plugins/ContentPlugins SUCCESS @@ -172,8 +177,8 @@ return """<b>This parameter is not used</b>"&quo - - + + 2 @@ -191,7 +196,7 @@ return """<b>This parameter is not used</b>"&quo true false - + 0 false diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Plugins/jobs/GenericEditor/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Plugins/jobs/GenericEditor/config.xml index c4a6262e7e..102495eaab 100644 --- a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Plugins/jobs/GenericEditor/config.xml +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Plugins/jobs/GenericEditor/config.xml @@ -1,7 +1,6 @@ - - + - + false @@ -17,51 +16,51 @@ ArtifactUpload/dev/Plugins/GenericEditor false - + artifact_source <font color=dimgray size=2><b> ArtifactRepo - Download the artifact from azure blob, JenkinsJob - Use the atrifact from Jenkins job.</b></font> choice-parameter-620062284617427 1 false - - + + GenericEditor Deploy/dev/Plugins/GenericEditor - + PT_SINGLE_SELECT false 1 - + build_number - + choice-parameter-620062286335119 1 false - - + + @@ -72,23 +71,23 @@ return "<b>Not Applicable</b>" ET_FORMATTED_HTML true - + artifact_version - + choice-parameter-620062288387509 1 false - - + + @@ -99,73 +98,74 @@ return "<b>Not Applicable</b>" ET_FORMATTED_HTML true - + private_branch - + choice-parameter-2544395024638227 1 +return """<b>This parameter is not used</b>""" false - - + + false GenericEditor Deploy/dev/Plugins/GenericEditor - + ET_FORMATTED_HTML true - + branch_or_tag - + choice-parameter-2620434998790477 1 +return """<b>This parameter is not used</b>""" false - - + + false GenericEditor Deploy/dev/Plugins/GenericEditor - + ET_FORMATTED_HTML true - + 0 0 false project false - + + - + ArtifactUpload/dev/Plugins/GenericEditor SUCCESS @@ -177,8 +177,8 @@ return """<b>This parameter is not used</b>"&quo - - + + 2 @@ -187,7 +187,7 @@ return """<b>This parameter is not used</b>"&quo - ${branch_or_tag} + editor-chnages false @@ -196,7 +196,7 @@ return """<b>This parameter is not used</b>"&quo true false - + 0 false diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Plugins/jobs/org_sunbird_questionunit_quml/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Plugins/jobs/org_sunbird_questionunit_quml/config.xml new file mode 100644 index 0000000000..73b41059d4 --- /dev/null +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Plugins/jobs/org_sunbird_questionunit_quml/config.xml @@ -0,0 +1,200 @@ + + + + + false + + + + false + false + + + + + absolute_job_path + <font color=dimgray size=2><b>Do not change this value! The metadata.json will be copied from this job.</b></font> + ArtifactUpload/dev/Plugins/ContentPlugins + false + + + artifact_source + <font color=dimgray size=2><b> +ArtifactRepo - Download the artifact from azure blob, JenkinsJob - Use the atrifact from Jenkins job.</b></font> + choice-parameter-620062284617427 + 1 + + false + + + + false + + + org_sunbird_questionunit_quml + + + PT_SINGLE_SELECT + false + 1 + + + build_number + + choice-parameter-620062286335119 + 1 + + false + + + + false + + + org_sunbird_questionunit_quml + + artifact_source + ET_FORMATTED_HTML + true + + + artifact_version + + choice-parameter-620062288387509 + 1 + + false + + + + false + + + org_sunbird_questionunit_quml + + artifact_source + ET_FORMATTED_HTML + true + + + private_branch + + choice-parameter-2544395024638227 + 1 + + false + + + + false + + + org_sunbird_questionunit_quml + + + ET_FORMATTED_HTML + true + + + branch_or_tag + + choice-parameter-2620434998790477 + 1 + + false + + + + false + + + org_sunbird_questionunit_quml + + + ET_FORMATTED_HTML + true + + + plugin_name + + org.sunbird.questionunit.quml-1.0 + false + + + + + 0 + 0 + + false + project + false + + + + + + + + + 2 + + + https://github.com/project-sunbird/sunbird-devops.git + + + + + ${branch_or_tag} + + + false + + + + true + false + + 0 + false + + + + pipelines/deploy/org_sunbird_questionunit_quml/Jenkinsfile + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Summary/jobs/DeployedVersions/config.xml b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Summary/jobs/DeployedVersions/config.xml index 2c667ec581..0f9f56f42a 100644 --- a/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Summary/jobs/DeployedVersions/config.xml +++ b/deploy/jenkins/jobs/Deploy/jobs/dev/jobs/Summary/jobs/DeployedVersions/config.xml @@ -7,9 +7,9 @@ -1 - -1 + 10 -1 - 10 + 2 diff --git a/deploy/jenkins/jobs/OpsAdministration/config.xml b/deploy/jenkins/jobs/OpsAdministration/config.xml index 68477b8ac7..92618cba96 100644 --- a/deploy/jenkins/jobs/OpsAdministration/config.xml +++ b/deploy/jenkins/jobs/OpsAdministration/config.xml @@ -1,12 +1,12 @@ - + - + - - + + diff --git a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/Core/jobs/ApplicationElasticsearchBackup/config.xml b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/Core/jobs/ApplicationElasticsearchBackup/config.xml index 54c8ced7ab..fa769962d2 100644 --- a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/Core/jobs/ApplicationElasticsearchBackup/config.xml +++ b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/Core/jobs/ApplicationElasticsearchBackup/config.xml @@ -7,9 +7,9 @@ -1 - -1 + 10 -1 - 5 + 2 @@ -99,7 +99,7 @@ return """<b>This parameter is not used</b>"&quo - ${branch_or_tag} + refs/tags/tag-for-backups false diff --git a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/Core/jobs/ApplicationElasticsearchRestore/config.xml b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/Core/jobs/ApplicationElasticsearchRestore/config.xml index 0f8f73f2d2..af8153a6b8 100644 --- a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/Core/jobs/ApplicationElasticsearchRestore/config.xml +++ b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/Core/jobs/ApplicationElasticsearchRestore/config.xml @@ -1,5 +1,5 @@ - + false @@ -7,50 +7,65 @@ -1 - -1 + 10 -1 - 5 + 2 - + false false - + + host + <font color=teal size=2>enter any one host name or ip if it is a cluster</font> + + false + + + SNAPSHOT_NUMBER + <font color=teal size=2>Enter Snapshot number to restore. +curl command to get snapshot number: +curl http://localhost:9200/_snapshot/azurebackup/_all, Parse the json and get the valid snapshot number to restore</font> + + false + + private_branch - choice-parameter-189745871212329 + choice-parameter-193693971284924 1 false - + false ApplicationElasticsearchRestore + OpsAdministration/dev/Core/ApplicationElasticsearchRestore ET_FORMATTED_HTML true - + branch_or_tag - choice-parameter-189745873861032 + choice-parameter-193693974507874 1 false - + false ApplicationElasticsearchRestore + OpsAdministration/dev/Core/ApplicationElasticsearchRestore ET_FORMATTED_HTML true - - host - <b color:"#b666d2">Give the host IP in which you wanted to restore the ES. Do add the host ip in inventory file.</b> - 11.11.11.11 - false - - - snapshot_name - <b color:"#b666d2">Give the Snapshot Name of the snapshot which you want to restore from azure.</b> - snapshot_1562619680 - false - @@ -94,12 +98,12 @@ return """<b>This parameter is not used</b>"&quo - - + + 2 - https://github.com/project-sunbird/sunbird-devops.git + https://github.com/MasterAlt/sunbird-devops.git diff --git a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/Core/jobs/Bootstrap/config.xml b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/Core/jobs/Bootstrap/config.xml index 9b168d96d0..94af12a448 100644 --- a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/Core/jobs/Bootstrap/config.xml +++ b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/Core/jobs/Bootstrap/config.xml @@ -14,9 +14,9 @@ -1 - -1 + 10 -1 - 5 + 2 diff --git a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/Core/jobs/CassandraBackup/config.xml b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/Core/jobs/CassandraBackup/config.xml index 9ceaefbe6b..85c852a171 100644 --- a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/Core/jobs/CassandraBackup/config.xml +++ b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/Core/jobs/CassandraBackup/config.xml @@ -1,5 +1,5 @@ - + false @@ -7,25 +7,25 @@ -1 - -1 + 10 -1 - 5 + 2 - + false false - + private_branch choice-parameter-189743214208409 1 false - + false CassandraBackup + OpsAdministration/dev/Core/CassandraBackup ET_FORMATTED_HTML true - + branch_or_tag choice-parameter-189743216959018 1 false - + false CassandraBackup + OpsAdministration/dev/Core/CassandraBackup ET_FORMATTED_HTML @@ -89,8 +91,8 @@ return """<b>This parameter is not used</b>"&quo - - + + 2 @@ -99,7 +101,7 @@ return """<b>This parameter is not used</b>"&quo - ${branch_or_tag} + release-2.9.0 false diff --git a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/Core/jobs/ClearDockerImages/config.xml b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/Core/jobs/ClearDockerImages/config.xml index 0abf0e9bfb..77b16591b4 100644 --- a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/Core/jobs/ClearDockerImages/config.xml +++ b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/Core/jobs/ClearDockerImages/config.xml @@ -1,22 +1,22 @@ - - + - + false false false - + 0 0 false project false - + + true @@ -25,14 +25,14 @@ false - H 2 * * * + H 5 * * * false - #docker image rm $(docker images | awk 'NR>1 {print $3}') --force 2> /dev/null -docker system prune -af + sudo docker image rm $(sudo docker images | awk 'NR>1 {print $3}') --force +sudo docker system prune -af diff --git a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/Core/jobs/ClearWorkspace/config.xml b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/Core/jobs/ClearWorkspace/config.xml index 087d526b05..912f23767c 100644 --- a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/Core/jobs/ClearWorkspace/config.xml +++ b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/Core/jobs/ClearWorkspace/config.xml @@ -1,19 +1,22 @@ - - - + + + false - + false false - + + 0 + 0 false project false - + + true @@ -22,19 +25,33 @@ false - H 4 * * * + H 6 * * * false - rm -rf /var/lib/jenkins/workspace/Build -rm -rf /var/lib/jenkins/workspace/Provision -rm -rf /var/lib/jenkins/workspace/OpsAdministration -rm -rf /var/lib/jenkins/workspace/ArtifactUpload -rm -rf /var/lib/jenkins/workspace/Deploy + echo "Before clearing" +df -h +curl -XPOST http://$ops@localhost:8080/jenkins/quietDown +sleep 60 +sudo rm -rf /var/lib/jenkins/workspace/* || true +sudo rm -rf /tmp/* || true +sleep 60 +curl -XPOST http://$ops@localhost:8080/jenkins/cancelQuietDown +echo "After clearing" +df -h - + + + + + ops + ops + + + + \ No newline at end of file diff --git a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/Core/jobs/CreateUser/config.xml b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/Core/jobs/CreateUser/config.xml index cfda6e5ec2..30e2a224b9 100644 --- a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/Core/jobs/CreateUser/config.xml +++ b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/Core/jobs/CreateUser/config.xml @@ -1,7 +1,6 @@ - - + - + false @@ -13,30 +12,30 @@ instance_name <font color=dimgray size=2><b>Enter ansible group name</b></font> - + false username <font color=dimgray size=2><b>Enter user name</b></font> - + false password <font color=dimgray size=2><b>Enter encrypted password</b></font> - + false public_key <font color=dimgray size=2><b>Enter public key in single quotes</b></font> - + false tag - + add-user @@ -44,80 +43,83 @@ - + private_branch - + choice-parameter-189741599993386 1 +return """<b>This parameter is not used</b>""" false - - + + false CreateUser + OpsAdministration/dev/Core/CreateUser - + ET_FORMATTED_HTML true - + branch_or_tag - + choice-parameter-189741602917876 1 +return """<b>This parameter is not used</b>""" false - - + + false CreateUser + OpsAdministration/dev/Core/CreateUser - + ET_FORMATTED_HTML true - + 0 0 false project false - + + - - + + 2 - https://github.com/project-sunbird/sunbird-devops.git + https://github.com/rjshrjndrn/sunbird-devops.git - ${branch_or_tag} + useradd false @@ -126,7 +128,7 @@ return """<b>This parameter is not used</b>"&quo true false - + 0 false diff --git a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/Core/jobs/ESMapping/config.xml b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/Core/jobs/ESMapping/config.xml index 0227b7997a..35d9e419f2 100644 --- a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/Core/jobs/ESMapping/config.xml +++ b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/Core/jobs/ESMapping/config.xml @@ -1,15 +1,14 @@ - - + - + false -1 - -1 + 10 -1 - 5 + 2 @@ -19,54 +18,56 @@ - + branch_or_tag - + choice-parameter-9675060449018219 1 +return """<b>This parameter is not used</b>""" false - - + + false ESMapping + OpsAdministration/dev/Core/ESMapping - + ET_FORMATTED_HTML true - + private_branch - + choice-parameter-9675060450520341 1 +return """<b>This parameter is not used</b>""" false - - + + false ESMapping + OpsAdministration/dev/Core/ESMapping - + ET_FORMATTED_HTML true @@ -85,26 +86,27 @@ return """<b>This parameter is not used</b>"&quo <br> enter all to run all indices and mappings <br> </b></font> - + false - + 0 0 false project false - + + - - + + 2 @@ -122,7 +124,7 @@ return """<b>This parameter is not used</b>"&quo true false - + 0 false diff --git a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/Core/jobs/EsReindexing/config.xml b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/Core/jobs/EsReindexing/config.xml new file mode 100644 index 0000000000..eb5bf8353d --- /dev/null +++ b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/Core/jobs/EsReindexing/config.xml @@ -0,0 +1,91 @@ + + + + false + + + false + false + + + + + esHost + + 11.2.3.58 + false + + + oldIndex + + certreg + false + + + newIndex + + certv2 + false + + + aliasName + + certs + false + + + indexFileLocation + + sunbird-es-utils/src/main/resources/reindexing/indices/certreg_indices.json + false + + + mappingFileLocation + + sunbird-es-utils/src/main/resources/reindexing/mappings/certreg_mappings.json + false + + + + + 0 + 0 + + false + project + false + + + + + + 2 + + + https://github.com/project-sunbird/sunbird-utils.git + + + + + release-2.10.0 + + + false + + + + true + false + false + false + + false + + + chmod +x sunbird-es-utils/src/main/resources/reindexing/reindex.sh +bash sunbird-es-utils/src/main/resources/reindexing/reindex.sh ${esHost} ${oldIndex} ${newIndex} ${aliasName} ${indexFileLocation} ${mappingFileLocation} + + + + + \ No newline at end of file diff --git a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/Core/jobs/GrafanaBackup/config.xml b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/Core/jobs/GrafanaBackup/config.xml index 68aafba327..5e891cba0b 100644 --- a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/Core/jobs/GrafanaBackup/config.xml +++ b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/Core/jobs/GrafanaBackup/config.xml @@ -7,9 +7,9 @@ -1 - -1 + 10 -1 - 5 + 2 @@ -94,7 +94,7 @@ return """<b>This parameter is not used</b>"&quo - ${branch_or_tag} + refs/tags/tag-for-backups false diff --git a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/Core/jobs/Health/config.xml b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/Core/jobs/Health/config.xml new file mode 100644 index 0000000000..1cd2aa21a6 --- /dev/null +++ b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/Core/jobs/Health/config.xml @@ -0,0 +1,43 @@ + + + + + false + + + false + false + + + 0 + 0 + + false + project + false + + + + + + 2 + + + https://github.com/project-sunbird/sunbird-devops.git + + + + + ${branch_or_tag} + + + false + + + + pipelines/deploy/health-check/Jenkinsfile + true + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/Core/jobs/JenkinsBackup/config.xml b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/Core/jobs/JenkinsBackup/config.xml index b09d7e5429..c4b3477368 100644 --- a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/Core/jobs/JenkinsBackup/config.xml +++ b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/Core/jobs/JenkinsBackup/config.xml @@ -7,9 +7,9 @@ -1 - -1 + 10 -1 - 5 + 2 @@ -98,7 +98,7 @@ return """<b>This parameter is not used</b>"&quo - ${branch_or_tag} + refs/tags/tag-for-backups false diff --git a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/Core/jobs/KeyRotation/config.xml b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/Core/jobs/KeyRotation/config.xml index 1880fa9db7..c87f70872a 100644 --- a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/Core/jobs/KeyRotation/config.xml +++ b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/Core/jobs/KeyRotation/config.xml @@ -7,9 +7,9 @@ -1 - -1 + 10 -1 - 5 + 2 diff --git a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/Core/jobs/KongMigration/config.xml b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/Core/jobs/KongMigration/config.xml index 6d1c763aeb..9e18416ad5 100644 --- a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/Core/jobs/KongMigration/config.xml +++ b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/Core/jobs/KongMigration/config.xml @@ -14,9 +14,9 @@ -1 - -1 + 10 -1 - 5 + 2 diff --git a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/Core/jobs/LoggerElasticSearchBackup/config.xml b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/Core/jobs/LoggerElasticSearchBackup/config.xml index 17fa0572d6..3d52d256c1 100644 --- a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/Core/jobs/LoggerElasticSearchBackup/config.xml +++ b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/Core/jobs/LoggerElasticSearchBackup/config.xml @@ -7,9 +7,9 @@ -1 - -1 + 10 -1 - 5 + 2 @@ -99,7 +99,7 @@ return """<b>This parameter is not used</b>"&quo - ${branch_or_tag} + refs/tags/tag-for-backups false diff --git a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/Core/jobs/LoggerElasticSearchRestore/config.xml b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/Core/jobs/LoggerElasticSearchRestore/config.xml index 7982bb2c21..3953efc54f 100644 --- a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/Core/jobs/LoggerElasticSearchRestore/config.xml +++ b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/Core/jobs/LoggerElasticSearchRestore/config.xml @@ -7,9 +7,9 @@ -1 - -1 + 10 -1 - 5 + 2 diff --git a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/Core/jobs/ManagedPostgresBackup/config.xml b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/Core/jobs/ManagedPostgresBackup/config.xml index 51657f25fb..74888f8ff0 100644 --- a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/Core/jobs/ManagedPostgresBackup/config.xml +++ b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/Core/jobs/ManagedPostgresBackup/config.xml @@ -1,15 +1,14 @@ - - + - + false -1 - -1 + 10 -1 - 5 + 2 @@ -19,76 +18,77 @@ - + private_branch - + choice-parameter-189733897665665 1 +return """<b>This parameter is not used</b>""" false - - + + false - PostgresManagedBackup - OpsAdministration/dev/Core/PostgresManagedBackup + ManagedPostgresBackup + OpsAdministration/dev/Core/ManagedPostgresBackup - + ET_FORMATTED_HTML true - + branch_or_tag - + choice-parameter-189733901134743 1 +return """<b>This parameter is not used</b>""" false - - + + false - PostgresManagedBackup - OpsAdministration/dev/Core/PostgresManagedBackup + ManagedPostgresBackup + OpsAdministration/dev/Core/ManagedPostgresBackup - + ET_FORMATTED_HTML true postgres_env - + dev_old false - + 0 0 false project false - + + @@ -97,8 +97,8 @@ return """<b>This parameter is not used</b>"&quo - - + + 2 @@ -107,7 +107,7 @@ return """<b>This parameter is not used</b>"&quo - ${branch_or_tag} + release-3.3.0 false @@ -116,7 +116,7 @@ return """<b>This parameter is not used</b>"&quo true false - + 0 false diff --git a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/Core/jobs/MonitDeploy/config.xml b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/Core/jobs/MonitDeploy/config.xml index 413b0297a6..e09d90a53d 100644 --- a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/Core/jobs/MonitDeploy/config.xml +++ b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/Core/jobs/MonitDeploy/config.xml @@ -7,9 +7,9 @@ -1 - -1 + 10 -1 - 5 + 2 diff --git a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/Core/jobs/MonitStatus/config.xml b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/Core/jobs/MonitStatus/config.xml index 423e818557..fb56faf6ff 100644 --- a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/Core/jobs/MonitStatus/config.xml +++ b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/Core/jobs/MonitStatus/config.xml @@ -7,9 +7,9 @@ -1 - -1 + 10 -1 - 5 + 2 diff --git a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/Core/jobs/PostgresqlBackup/config.xml b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/Core/jobs/PostgresqlBackup/config.xml index c8d49c9cd7..11c154f9a1 100644 --- a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/Core/jobs/PostgresqlBackup/config.xml +++ b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/Core/jobs/PostgresqlBackup/config.xml @@ -7,9 +7,9 @@ -1 - -1 + 10 -1 - 5 + 2 @@ -99,7 +99,7 @@ return """<b>This parameter is not used</b>"&quo - ${branch_or_tag} + refs/tags/tag-for-backups false diff --git a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/Core/jobs/PostgresqlRestore/config.xml b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/Core/jobs/PostgresqlRestore/config.xml index 9949088537..f9a24a2bc3 100644 --- a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/Core/jobs/PostgresqlRestore/config.xml +++ b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/Core/jobs/PostgresqlRestore/config.xml @@ -7,9 +7,9 @@ -1 - -1 + 10 -1 - 5 + 2 @@ -90,7 +90,7 @@ return """<b>This parameter is not used</b>"&quo - ${branch_or_tag} + refs/tags/tag-for-backups false diff --git a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/Core/jobs/PrometheusBackup/config.xml b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/Core/jobs/PrometheusBackup/config.xml index 62420abc28..1d8cb3e0ea 100644 --- a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/Core/jobs/PrometheusBackup/config.xml +++ b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/Core/jobs/PrometheusBackup/config.xml @@ -7,9 +7,9 @@ -1 - -1 + 10 -1 - 5 + 2 @@ -99,7 +99,7 @@ return """<b>This parameter is not used</b>"&quo - ${branch_or_tag} + refs/tags/tag-for-backups false diff --git a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/Core/jobs/PrometheusSanpshot/config.xml b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/Core/jobs/PrometheusSanpshot/config.xml index 497f1633bd..768fce6ca5 100644 --- a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/Core/jobs/PrometheusSanpshot/config.xml +++ b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/Core/jobs/PrometheusSanpshot/config.xml @@ -7,9 +7,9 @@ -1 - -1 + 10 -1 - 5 + 2 @@ -99,7 +99,7 @@ return """<b>This parameter is not used</b>"&quo - ${branch_or_tag} + refs/tags/tag-for-backup false diff --git a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/Core/jobs/RedisBackup/config.xml b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/Core/jobs/RedisBackup/config.xml new file mode 100644 index 0000000000..0f5f261ef8 --- /dev/null +++ b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/Core/jobs/RedisBackup/config.xml @@ -0,0 +1,124 @@ + + + + false + + + + -1 + 10 + -1 + 2 + + + + + false + false + + + + + private_branch + + choice-parameter-193697432119747 + 1 + + false + + + + false + + + RedisBackup + OpsAdministration/dev/Core/RedisBackup + + + ET_FORMATTED_HTML + true + + + branch_or_tag + + choice-parameter-193697441891806 + 1 + + false + + + + false + + + RedisBackup + OpsAdministration/dev/Core/RedisBackup + + + ET_FORMATTED_HTML + true + + + + + 0 + 0 + + false + project + false + + + + + + + H 2 * * * + + + + + + + 2 + + + https://github.com/project-sunbird/sunbird-devops.git + + + + + release-3.3.0 + + + false + + + + true + false + + 0 + false + + + + pipelines/backup/redis-backup/Jenkinsfile + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/Core/jobs/SwarmBootstrap/config.xml b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/Core/jobs/SwarmBootstrap/config.xml index 429a4261f0..ef4f2bf6d0 100644 --- a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/Core/jobs/SwarmBootstrap/config.xml +++ b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/Core/jobs/SwarmBootstrap/config.xml @@ -7,9 +7,9 @@ -1 - -1 + 10 -1 - 5 + 2 diff --git a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/DataPipeline/jobs/Bootstrap/config.xml b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/DataPipeline/jobs/Bootstrap/config.xml index 7b842f76dd..b19a70afa8 100644 --- a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/DataPipeline/jobs/Bootstrap/config.xml +++ b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/DataPipeline/jobs/Bootstrap/config.xml @@ -7,9 +7,9 @@ -1 - -1 + 10 -1 - 5 + 2 diff --git a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/DataPipeline/jobs/CassandraBackup/config.xml b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/DataPipeline/jobs/CassandraBackup/config.xml index e99463288b..ddae73cc32 100644 --- a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/DataPipeline/jobs/CassandraBackup/config.xml +++ b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/DataPipeline/jobs/CassandraBackup/config.xml @@ -14,9 +14,9 @@ -1 - -1 + 10 -1 - 5 + 2 @@ -118,7 +118,7 @@ return """<b>This parameter is not used</b>"&quo - ${branch_or_tag} + refs/tags/tag-for-backups false diff --git a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/DataPipeline/jobs/CassandraRestore/config.xml b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/DataPipeline/jobs/CassandraRestore/config.xml index a120e7f0b7..fa5bdcbb2f 100644 --- a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/DataPipeline/jobs/CassandraRestore/config.xml +++ b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/DataPipeline/jobs/CassandraRestore/config.xml @@ -14,9 +14,9 @@ -1 - -1 + 10 -1 - 5 + 2 @@ -109,7 +109,7 @@ return """<b>This parameter is not used</b>"&quo - ${branch_or_tag} + refs/tags/tag-for-backups false diff --git a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/DataPipeline/jobs/ConsumerLagAlert/config.xml b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/DataPipeline/jobs/ConsumerLagAlert/config.xml index 78c54d89f8..4e750b5e17 100644 --- a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/DataPipeline/jobs/ConsumerLagAlert/config.xml +++ b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/DataPipeline/jobs/ConsumerLagAlert/config.xml @@ -14,9 +14,9 @@ -1 - -1 + 10 -1 - 5 + 2 diff --git a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/DataPipeline/jobs/DataproductsAlert/config.xml b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/DataPipeline/jobs/DataproductsAlert/config.xml index 570cefb6e4..39ce90809f 100644 --- a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/DataPipeline/jobs/DataproductsAlert/config.xml +++ b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/DataPipeline/jobs/DataproductsAlert/config.xml @@ -14,9 +14,9 @@ -1 - -1 + 10 -1 - 5 + 2 diff --git a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/DataPipeline/jobs/DruidPostgresBackup/config.xml b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/DataPipeline/jobs/DruidPostgresBackup/config.xml index b63f0b4ebc..995714507f 100644 --- a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/DataPipeline/jobs/DruidPostgresBackup/config.xml +++ b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/DataPipeline/jobs/DruidPostgresBackup/config.xml @@ -7,9 +7,9 @@ -1 - -1 + 10 -1 - 5 + 2 @@ -98,7 +98,7 @@ return """<b>This parameter is not used</b>"&quo - ${branch_or_tag} + refs/tags/tag-for-backups false diff --git a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/DataPipeline/jobs/ElasticsearchBackup/config.xml b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/DataPipeline/jobs/ElasticsearchBackup/config.xml index 068045858f..5ea4ae60f3 100644 --- a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/DataPipeline/jobs/ElasticsearchBackup/config.xml +++ b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/DataPipeline/jobs/ElasticsearchBackup/config.xml @@ -14,9 +14,9 @@ -1 - -1 + 10 -1 - 5 + 2 @@ -112,7 +112,7 @@ return """<b>This parameter is not used</b>"&quo - ${branch_or_tag} + refs/tags/tag-for-backups false diff --git a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/DataPipeline/jobs/ElasticsearchRestore/config.xml b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/DataPipeline/jobs/ElasticsearchRestore/config.xml index 26d8883329..c3d0140870 100644 --- a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/DataPipeline/jobs/ElasticsearchRestore/config.xml +++ b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/DataPipeline/jobs/ElasticsearchRestore/config.xml @@ -14,9 +14,9 @@ -1 - -1 + 10 -1 - 5 + 2 @@ -111,7 +111,7 @@ return """<b>This parameter is not used</b>"&quo - ${branch_or_tag} + refs/tags/tag-for-backups false diff --git a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/DataPipeline/jobs/Health/config.xml b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/DataPipeline/jobs/Health/config.xml new file mode 100644 index 0000000000..870f364914 --- /dev/null +++ b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/DataPipeline/jobs/Health/config.xml @@ -0,0 +1,43 @@ + + + + + false + + + false + false + + + 0 + 0 + + false + project + false + + + + + + 2 + + + https://github.com/project-sunbird/sunbird-devops.git + + + + + ${branch_or_tag} + + + false + + + + pipelines/deploy/health-check/Jenkinsfile-dp + true + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/DataPipeline/jobs/InfluxDBBackup/config.xml b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/DataPipeline/jobs/InfluxDBBackup/config.xml index 14d6355551..49635f78e8 100644 --- a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/DataPipeline/jobs/InfluxDBBackup/config.xml +++ b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/DataPipeline/jobs/InfluxDBBackup/config.xml @@ -1,5 +1,5 @@ - + @@ -14,25 +14,25 @@ -1 - -1 + 10 -1 - 5 + 2 - + false false - + private_branch choice-parameter-193686205164304 1 false - + false InfluxDBBackup + OpsAdministration/dev/DataPipeline/InfluxDBBackup ET_FORMATTED_HTML true - + branch_or_tag choice-parameter-193686227117959 1 false - + false InfluxDBBackup + OpsAdministration/dev/DataPipeline/InfluxDBBackup ET_FORMATTED_HTML @@ -96,17 +98,17 @@ return """<b>This parameter is not used</b>"&quo - - + + 2 - https://github.com/project-sunbird/sunbird-data-pipeline.git + https://github.com/MasterAlt/sunbird-data-pipeline.git - ${branch_or_tag} + release-2.9.0 false @@ -126,4 +128,4 @@ return """<b>This parameter is not used</b>"&quo false - + \ No newline at end of file diff --git a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/DataPipeline/jobs/Influxdb_restore/config.xml b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/DataPipeline/jobs/Influxdb_restore/config.xml new file mode 100644 index 0000000000..9a0942df58 --- /dev/null +++ b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/DataPipeline/jobs/Influxdb_restore/config.xml @@ -0,0 +1,85 @@ + + + + + false + + + false + false + + + + + influxdb_host + Influxdb ip or hostname where data needs to be restored. + + false + + + influxdb_restore_file_name + influxdb backup file name which needs to be restored. + + false + + + private_branch + + choice-parameter-4812402663506673 + 1 + + false + + + + false + + + Influxdb_restore + OpsAdministration/dev/DataPipeline/Influxdb_restore + + + ET_FORMATTED_HTML + true + + + + + 0 + 0 + + false + project + false + + + + + + 2 + + + https://github.com/project-sunbird/sunbird-data-pipeline.git + + + + + release-2.9.0 + + + false + + + + pipelines/backup/influxdb-restore/Jenkinsfile + true + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/DataPipeline/jobs/KeyRotation/config.xml b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/DataPipeline/jobs/KeyRotation/config.xml index faaea481ff..54a0681dc9 100644 --- a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/DataPipeline/jobs/KeyRotation/config.xml +++ b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/DataPipeline/jobs/KeyRotation/config.xml @@ -7,9 +7,9 @@ -1 - -1 + 10 -1 - 5 + 2 diff --git a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/DataPipeline/jobs/MonitDeploy/config.xml b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/DataPipeline/jobs/MonitDeploy/config.xml index abbec5a206..713e2f38d1 100644 --- a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/DataPipeline/jobs/MonitDeploy/config.xml +++ b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/DataPipeline/jobs/MonitDeploy/config.xml @@ -1,15 +1,14 @@ - - + - + false -1 - -1 + 10 -1 - 5 + 2 @@ -19,62 +18,62 @@ - + private_branch - + choice-parameter-193690420291616 1 +return """<b>This parameter is not used</b>""" false - - + + false MonitDeploy OpsAdministration/dev/DataPipeline/MonitDeploy - + ET_FORMATTED_HTML true - + branch_or_tag - + choice-parameter-193690422104853 1 +return """<b>This parameter is not used</b>""" false - - + + false MonitDeploy OpsAdministration/dev/DataPipeline/MonitDeploy - + ET_FORMATTED_HTML true tag - + all @@ -92,21 +91,22 @@ return """<b>This parameter is not used</b>"&quo - + 0 0 false project false - + + - - + + 2 @@ -115,7 +115,7 @@ return """<b>This parameter is not used</b>"&quo - ${branch_or_tag} + release-3.2.0 false @@ -124,7 +124,7 @@ return """<b>This parameter is not used</b>"&quo true false - + 0 false diff --git a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/DataPipeline/jobs/PostgresqlBackup/config.xml b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/DataPipeline/jobs/PostgresqlBackup/config.xml index fac30b9363..edfc1ee0d5 100644 --- a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/DataPipeline/jobs/PostgresqlBackup/config.xml +++ b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/DataPipeline/jobs/PostgresqlBackup/config.xml @@ -7,9 +7,9 @@ -1 - -1 + 10 -1 - 5 + 2 @@ -90,7 +90,7 @@ return """<b>This parameter is not used</b>"&quo - ${branch_or_tag} + refs/tags/tag-for-backups false diff --git a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/DataPipeline/jobs/PostgresqlRestore/config.xml b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/DataPipeline/jobs/PostgresqlRestore/config.xml index f3bfd06a63..1369badc49 100644 --- a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/DataPipeline/jobs/PostgresqlRestore/config.xml +++ b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/DataPipeline/jobs/PostgresqlRestore/config.xml @@ -7,9 +7,9 @@ -1 - -1 + 10 -1 - 5 + 2 @@ -90,7 +90,7 @@ return """<b>This parameter is not used</b>"&quo - ${branch_or_tag} + refs/tags/tag-for-backups false diff --git a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/DataPipeline/jobs/RedisBackup/config.xml b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/DataPipeline/jobs/RedisBackup/config.xml new file mode 100644 index 0000000000..7d3c56036d --- /dev/null +++ b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/DataPipeline/jobs/RedisBackup/config.xml @@ -0,0 +1,120 @@ + + + + false + + + + -1 + 10 + -1 + 2 + + + + + false + false + + + + + private_branch + + choice-parameter-193697432119747 + 1 + + false + + + + false + + + RedisBackup + OpsAdministration/dev/DataPipeline/RedisBackup + + + ET_FORMATTED_HTML + true + + + branch_or_tag + + choice-parameter-193697441891806 + 1 + + false + + + + false + + + RedisBackup + OpsAdministration/dev/DataPipeline/RedisBackup + + + ET_FORMATTED_HTML + true + + + + + 0 + 0 + + false + project + false + + + + + + + + + + 2 + + + https://github.com/sowmya-dixit/sunbird-data-pipeline.git + + + + + redis-multiprocess + + + false + + + + true + false + + 0 + false + + + + pipelines/backup/redis-backup/Jenkinsfile + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/DataPipeline/jobs/RedisDumpMonitoring/config.xml b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/DataPipeline/jobs/RedisDumpMonitoring/config.xml index d7cb16b5a9..e93b31bd52 100644 --- a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/DataPipeline/jobs/RedisDumpMonitoring/config.xml +++ b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/DataPipeline/jobs/RedisDumpMonitoring/config.xml @@ -14,9 +14,9 @@ -1 - -1 + 10 -1 - 5 + 2 diff --git a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/DataPipeline/jobs/RestartSecorJobs/config.xml b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/DataPipeline/jobs/RestartSecorJobs/config.xml new file mode 100644 index 0000000000..002f8f1f87 --- /dev/null +++ b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/DataPipeline/jobs/RestartSecorJobs/config.xml @@ -0,0 +1,173 @@ + + + + + hudson.model.ParametersDefinitionProperty + com.sonyericsson.rebuild.RebuildSettings + + + + + false + + + + -1 + 10 + -1 + 2 + + + + + false + false + + + + + private_branch + + choice-parameter-2544395024638227 + 1 + + false + + + + false + + + RestartSecorJobs + OpsAdministration/dev/DataPipeline/RestartSecorJobs + + + ET_FORMATTED_HTML + true + + + branch_or_tag + + choice-parameter-2620434998790477 + 1 + + false + + + + false + + + RestartSecorJobs + OpsAdministration/dev/DataPipeline/RestartSecorJobs + + + ET_FORMATTED_HTML + true + + + trigger + Select the trigger. (Start, Stop or Restart) + + + start + stop + restart + + + + + secor_jobs + <font color=green size=2><b>Select the one or multiple secor jobs to start, stop or restart</b></font> + choice-parameter-8026182213525059 + 1 + + false + + + + RestartSecorJobs + OpsAdministration/dev/DataPipeline/RestartSecorJobs + + + PT_MULTI_SELECT + false + 1 + + + + + 0 + 0 + + false + project + false + + + + + + + + + + 2 + + + https://github.com/project-sunbird/sunbird-devops.git + + + + + release-2.10.0 + + + false + + + + true + false + + 1 + false + + + + pipelines/ops/secor_restart/Jenkinsfile + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/DataPipeline/jobs/SamzaJobsAlert/config.xml b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/DataPipeline/jobs/SamzaJobsAlert/config.xml index c4a2791b07..6bead98a4c 100644 --- a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/DataPipeline/jobs/SamzaJobsAlert/config.xml +++ b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/DataPipeline/jobs/SamzaJobsAlert/config.xml @@ -1,5 +1,5 @@ - + @@ -14,9 +14,9 @@ -1 - -1 + 10 -1 - 5 + 2 @@ -26,13 +26,13 @@ - + private_branch choice-parameter-2914866095851737 1 false - + false SamzaJobsAlert + OpsAdministration/dev/DataPipeline/SamzaJobsAlert ET_FORMATTED_HTML true - + branch_or_tag choice-parameter-2914866097410763 1 false - + false SamzaJobsAlert + OpsAdministration/dev/DataPipeline/SamzaJobsAlert ET_FORMATTED_HTML true + + + + - + 0 0 @@ -87,6 +93,7 @@ return """<b>This parameter is not used</b>"&quo project false + 1 @@ -96,8 +103,8 @@ return """<b>This parameter is not used</b>"&quo - - + + 2 @@ -106,7 +113,7 @@ return """<b>This parameter is not used</b>"&quo - ${branch_or_tag} + refs/tags/tag-for-backups false @@ -125,5 +132,5 @@ return """<b>This parameter is not used</b>"&quo false - false + true \ No newline at end of file diff --git a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/DataPipeline/jobs/SamzaJobsAlertProvision/config.xml b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/DataPipeline/jobs/SamzaJobsAlertProvision/config.xml index 89b09c5717..7093c35375 100644 --- a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/DataPipeline/jobs/SamzaJobsAlertProvision/config.xml +++ b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/DataPipeline/jobs/SamzaJobsAlertProvision/config.xml @@ -14,9 +14,9 @@ -1 - -1 + 10 -1 - 5 + 2 diff --git a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/DataPipeline/jobs/SamzaJobsKill/config.xml b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/DataPipeline/jobs/SamzaJobsKill/config.xml index e77ed5775b..293f2e6b95 100644 --- a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/DataPipeline/jobs/SamzaJobsKill/config.xml +++ b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/DataPipeline/jobs/SamzaJobsKill/config.xml @@ -123,7 +123,7 @@ return """<b>This parameter is not used</b>"&quo - ${branch_or_tag} + refs/tags/tag-for-backups false diff --git a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/DataPipeline/jobs/SamzaLogsBackup/config.xml b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/DataPipeline/jobs/SamzaLogsBackup/config.xml index 3dc7f04d88..bf3f5750ee 100644 --- a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/DataPipeline/jobs/SamzaLogsBackup/config.xml +++ b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/DataPipeline/jobs/SamzaLogsBackup/config.xml @@ -14,9 +14,9 @@ -1 - -1 + 10 -1 - 5 + 2 diff --git a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/DataPipeline/jobs/SamzaMonitoringProvision/config.xml b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/DataPipeline/jobs/SamzaMonitoringProvision/config.xml index 15ad71d1a8..a1cc4ddece 100644 --- a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/DataPipeline/jobs/SamzaMonitoringProvision/config.xml +++ b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/DataPipeline/jobs/SamzaMonitoringProvision/config.xml @@ -14,9 +14,9 @@ -1 - -1 + 10 -1 - 5 + 2 diff --git a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/DataPipeline/jobs/SamzaOrphanprocessAlert/config.xml b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/DataPipeline/jobs/SamzaOrphanprocessAlert/config.xml index 8146d565f5..20c333f607 100644 --- a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/DataPipeline/jobs/SamzaOrphanprocessAlert/config.xml +++ b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/DataPipeline/jobs/SamzaOrphanprocessAlert/config.xml @@ -1,43 +1,42 @@ - - + - + hudson.model.ParametersDefinitionProperty com.sonyericsson.rebuild.RebuildSettings - + false -1 - -1 + 10 -1 - 5 + 2 - + false false - + 0 0 false project false - - 1 + + - + Deploy/dev/DataPipeline/Yarn,Deploy/dev/KnowledgePlatform/Yarn SUCCESS @@ -52,8 +51,8 @@ - - + + 2 @@ -62,7 +61,7 @@ - ${branch_or_tag} + refs/tags/tag-for-backups false @@ -71,7 +70,7 @@ true false - + 0 false @@ -82,4 +81,4 @@ false - + \ No newline at end of file diff --git a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/DataPipeline/jobs/SamzaThroughputAlert/config.xml b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/DataPipeline/jobs/SamzaThroughputAlert/config.xml index d4d40ccfa9..bef6b6f258 100644 --- a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/DataPipeline/jobs/SamzaThroughputAlert/config.xml +++ b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/DataPipeline/jobs/SamzaThroughputAlert/config.xml @@ -1,5 +1,4 @@ - - + @@ -8,15 +7,15 @@ - + false -1 - -1 + 10 -1 - 5 + 2 @@ -26,76 +25,81 @@ - + private_branch - + choice-parameter-2914866095851737 1 +return """<b>This parameter is not used</b>""" false - - + + false SamzaThroughputAlert OpsAdministration/dev/DataPipeline/SamzaThroughputAlert - + ET_FORMATTED_HTML true - + branch_or_tag - + choice-parameter-2914866097410763 1 +return """<b>This parameter is not used</b>""" false - - + + false SamzaThroughputAlert OpsAdministration/dev/DataPipeline/SamzaThroughputAlert - + ET_FORMATTED_HTML true tag - + throughput_monitor false + + /tmp/dialcode.csv + + - + 0 0 false project false - + + @@ -104,8 +108,8 @@ return """<b>This parameter is not used</b>"&quo - - + + 2 @@ -123,7 +127,7 @@ return """<b>This parameter is not used</b>"&quo true false - + 0 false diff --git a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/DataPipeline/jobs/SamzaThroughputProvision/config.xml b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/DataPipeline/jobs/SamzaThroughputProvision/config.xml index 5239bf8bef..bf9b1d729d 100644 --- a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/DataPipeline/jobs/SamzaThroughputProvision/config.xml +++ b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/DataPipeline/jobs/SamzaThroughputProvision/config.xml @@ -14,9 +14,9 @@ -1 - -1 + 10 -1 - 5 + 2 diff --git a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/DataPipeline/jobs/Test/config.xml b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/DataPipeline/jobs/Test/config.xml new file mode 100644 index 0000000000..08c7fb9e7b --- /dev/null +++ b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/DataPipeline/jobs/Test/config.xml @@ -0,0 +1,39 @@ + + + + false + + + false + false + + + + + ~jenkins + + + + + + 0 + 0 + + false + project + false + + + + + + true + false + false + false + + false + + + + \ No newline at end of file diff --git a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/DataPipeline/jobs/redis-restore/config.xml b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/DataPipeline/jobs/redis-restore/config.xml new file mode 100644 index 0000000000..4de167aaf4 --- /dev/null +++ b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/DataPipeline/jobs/redis-restore/config.xml @@ -0,0 +1,86 @@ + + + + false + + + + false + false + + + + + redis_restore_file_name + redis backup file name which needs to be restored. + + false + + + redis_restore_process + port on which redis process runs which needs to be restored. Ex ['device','user','content','dialcode'] + + false + + + private_branch + + choice-parameter-4812402663506673 + 1 + + false + + + + false + + + redis-restore + OpsAdministration/dev/DataPipeline/redis-restore + + + ET_FORMATTED_HTML + false + + + + + 0 + 0 + + false + project + false + + + + + + + 2 + + + https://github.com/sowmya-dixit/sunbird-data-pipeline.git + + + + + redis-multiprocess + + + false + + + + pipelines/backup/redis-restore/Jenkinsfile + true + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/KnowledgePlatform/jobs/Bootstrap/config.xml b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/KnowledgePlatform/jobs/Bootstrap/config.xml index 62b910c1ec..d42e958fcc 100644 --- a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/KnowledgePlatform/jobs/Bootstrap/config.xml +++ b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/KnowledgePlatform/jobs/Bootstrap/config.xml @@ -7,9 +7,9 @@ -1 - -1 + 10 -1 - 5 + 2 diff --git a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/KnowledgePlatform/jobs/CassandraBackup/config.xml b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/KnowledgePlatform/jobs/CassandraBackup/config.xml index 234226a025..a188429354 100644 --- a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/KnowledgePlatform/jobs/CassandraBackup/config.xml +++ b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/KnowledgePlatform/jobs/CassandraBackup/config.xml @@ -1,5 +1,5 @@ - + false @@ -7,13 +7,13 @@ -1 - -1 + 10 -1 - 5 + 2 - + false false @@ -31,13 +31,13 @@ /var/lib/cassandra/data false - + private_branch choice-parameter-193690420291616 1 false - + false CassandraBackup + OpsAdministration/dev/KnowledgePlatform/CassandraBackup ET_FORMATTED_HTML true - + branch_or_tag choice-parameter-193690422104853 1 false - + false CassandraBackup + OpsAdministration/dev/KnowledgePlatform/CassandraBackup ET_FORMATTED_HTML @@ -92,7 +94,6 @@ return """<b>This parameter is not used</b>"&quo project false - 1 @@ -102,17 +103,17 @@ return """<b>This parameter is not used</b>"&quo - - + + 2 - https://github.com/project-sunbird/sunbird-learning-platform.git + https://github.com/badaltechiepi/sunbird-learning-platform.git - ${branch_or_tag} + patch-2 false @@ -131,5 +132,5 @@ return """<b>This parameter is not used</b>"&quo false - true + false \ No newline at end of file diff --git a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/KnowledgePlatform/jobs/CassandraRestore/config.xml b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/KnowledgePlatform/jobs/CassandraRestore/config.xml index aa26d8091b..2736bef3ff 100644 --- a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/KnowledgePlatform/jobs/CassandraRestore/config.xml +++ b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/KnowledgePlatform/jobs/CassandraRestore/config.xml @@ -7,9 +7,9 @@ -1 - -1 + 10 -1 - 5 + 2 diff --git a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/KnowledgePlatform/jobs/ElasticsearchBackup/config.xml b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/KnowledgePlatform/jobs/ElasticsearchBackup/config.xml index d54244fc0e..6f995b76af 100644 --- a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/KnowledgePlatform/jobs/ElasticsearchBackup/config.xml +++ b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/KnowledgePlatform/jobs/ElasticsearchBackup/config.xml @@ -1,5 +1,5 @@ - + false @@ -7,25 +7,25 @@ -1 - -1 + 10 -1 - 5 + 2 - + false false - + private_branch choice-parameter-193692901127485 1 false - + false ElasticsearchBackup + OpsAdministration/dev/KnowledgePlatform/ElasticsearchBackup ET_FORMATTED_HTML true - + branch_or_tag choice-parameter-193692904321817 1 false - + false ElasticsearchBackup + OpsAdministration/dev/KnowledgePlatform/ElasticsearchBackup ET_FORMATTED_HTML @@ -89,17 +91,17 @@ return """<b>This parameter is not used</b>"&quo - - + + 2 - https://github.com/project-sunbird/sunbird-learning-platform.git + https://github.com/MasterAlt/sunbird-learning-platform.git - ${branch_or_tag} + es-provision false @@ -119,4 +121,4 @@ return """<b>This parameter is not used</b>"&quo false - + \ No newline at end of file diff --git a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/KnowledgePlatform/jobs/ElasticsearchRestore/config.xml b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/KnowledgePlatform/jobs/ElasticsearchRestore/config.xml index 0372d6d3c5..2b968ad93d 100644 --- a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/KnowledgePlatform/jobs/ElasticsearchRestore/config.xml +++ b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/KnowledgePlatform/jobs/ElasticsearchRestore/config.xml @@ -1,5 +1,5 @@ - + false @@ -7,13 +7,13 @@ -1 - -1 + 10 -1 - 5 + 2 - + false false @@ -33,13 +33,13 @@ curl http://localhost:9200/_snapshot/azurebackup/_all, Parse the json and get th false - + private_branch choice-parameter-193693971284924 1 false - + false ElasticsearchRestore + OpsAdministration/dev/KnowledgePlatform/ElasticsearchRestore ET_FORMATTED_HTML true - + branch_or_tag choice-parameter-193693974507874 1 false - + false ElasticsearchRestore + OpsAdministration/dev/KnowledgePlatform/ElasticsearchRestore ET_FORMATTED_HTML @@ -96,12 +98,12 @@ return """<b>This parameter is not used</b>"&quo - - + + 2 - https://github.com/project-sunbird/sunbird-learning-platform.git + https://github.com/MasterAlt/sunbird-learning-platform.git diff --git a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/KnowledgePlatform/jobs/Health/config.xml b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/KnowledgePlatform/jobs/Health/config.xml new file mode 100644 index 0000000000..d5825945e2 --- /dev/null +++ b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/KnowledgePlatform/jobs/Health/config.xml @@ -0,0 +1,43 @@ + + + + + false + + + false + false + + + 0 + 0 + + false + project + false + + + + + + 2 + + + https://github.com/harshavardhanc/sunbird-devops.git + + + + + ${branch_or_tag} + + + false + + + + pipelines/deploy/health-check/Jenkinsfile-lp + true + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/KnowledgePlatform/jobs/KeyRotation/config.xml b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/KnowledgePlatform/jobs/KeyRotation/config.xml index 70003b8d7f..aa56705fb1 100644 --- a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/KnowledgePlatform/jobs/KeyRotation/config.xml +++ b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/KnowledgePlatform/jobs/KeyRotation/config.xml @@ -7,9 +7,9 @@ -1 - -1 + 10 -1 - 5 + 2 diff --git a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/KnowledgePlatform/jobs/MonitDeploy/config.xml b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/KnowledgePlatform/jobs/MonitDeploy/config.xml index a8e7cfc7c2..e1eac14798 100644 --- a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/KnowledgePlatform/jobs/MonitDeploy/config.xml +++ b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/KnowledgePlatform/jobs/MonitDeploy/config.xml @@ -7,9 +7,9 @@ -1 - -1 + 10 -1 - 5 + 2 diff --git a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/KnowledgePlatform/jobs/MonitStatus/config.xml b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/KnowledgePlatform/jobs/MonitStatus/config.xml index 9bdcb636dd..c9dd565497 100644 --- a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/KnowledgePlatform/jobs/MonitStatus/config.xml +++ b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/KnowledgePlatform/jobs/MonitStatus/config.xml @@ -7,9 +7,9 @@ -1 - -1 + 10 -1 - 5 + 2 diff --git a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/KnowledgePlatform/jobs/Neo4jBackup/config.xml b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/KnowledgePlatform/jobs/Neo4jBackup/config.xml index 0648e10231..63f498537c 100644 --- a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/KnowledgePlatform/jobs/Neo4jBackup/config.xml +++ b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/KnowledgePlatform/jobs/Neo4jBackup/config.xml @@ -1,5 +1,5 @@ - + false @@ -7,25 +7,25 @@ -1 - -1 + 10 -1 - 5 + 2 - + false false - + private_branch choice-parameter-193695591871973 1 false - + false Neo4jBackup + OpsAdministration/dev/KnowledgePlatform/Neo4jBackup ET_FORMATTED_HTML true - + branch_or_tag choice-parameter-193695594771667 1 false - + false Neo4jBackup + OpsAdministration/dev/KnowledgePlatform/Neo4jBackup ET_FORMATTED_HTML @@ -89,8 +91,8 @@ return """<b>This parameter is not used</b>"&quo - - + + 2 @@ -99,7 +101,7 @@ return """<b>This parameter is not used</b>"&quo - ${branch_or_tag} + release-2.9.0 false @@ -119,4 +121,4 @@ return """<b>This parameter is not used</b>"&quo false - + \ No newline at end of file diff --git a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/KnowledgePlatform/jobs/Neo4jRestore/config.xml b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/KnowledgePlatform/jobs/Neo4jRestore/config.xml index ea94929067..0b3beb196f 100644 --- a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/KnowledgePlatform/jobs/Neo4jRestore/config.xml +++ b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/KnowledgePlatform/jobs/Neo4jRestore/config.xml @@ -7,9 +7,9 @@ -1 - -1 + 10 -1 - 5 + 2 diff --git a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/KnowledgePlatform/jobs/RedisBackup/config.xml b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/KnowledgePlatform/jobs/RedisBackup/config.xml index 7bb0fedf92..9de5c0d6c6 100644 --- a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/KnowledgePlatform/jobs/RedisBackup/config.xml +++ b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/KnowledgePlatform/jobs/RedisBackup/config.xml @@ -1,5 +1,5 @@ - + false @@ -7,25 +7,25 @@ -1 - -1 + 10 -1 - 5 + 2 - + false false - + private_branch choice-parameter-193697432119747 1 false - + false RedisBackup + OpsAdministration/dev/KnowledgePlatform/RedisBackup ET_FORMATTED_HTML true - + branch_or_tag choice-parameter-193697441891806 1 false - + false RedisBackup + OpsAdministration/dev/KnowledgePlatform/RedisBackup ET_FORMATTED_HTML @@ -89,17 +91,17 @@ return """<b>This parameter is not used</b>"&quo - - + + 2 - https://github.com/project-sunbird/sunbird-learning-platform.git + https://github.com/MasterAlt/sunbird-learning-platform.git - ${branch_or_tag} + release-2.9.0 false @@ -119,4 +121,4 @@ return """<b>This parameter is not used</b>"&quo false - + \ No newline at end of file diff --git a/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/KnowledgePlatform/jobs/RedisRetore/config.xml b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/KnowledgePlatform/jobs/RedisRetore/config.xml new file mode 100644 index 0000000000..42f6ca335e --- /dev/null +++ b/deploy/jenkins/jobs/OpsAdministration/jobs/dev/jobs/KnowledgePlatform/jobs/RedisRetore/config.xml @@ -0,0 +1,123 @@ + + + + + false + + + + -1 + 10 + -1 + 2 + + + + + false + false + + + + + redis_restore_file_name + <font color=teal size=2>give the backup name to be picked to restore</font> + + false + + + private_branch + + choice-parameter-193693971284924 + 1 + + false + + + + false + + + RedisRetore + OpsAdministration/dev/KnowledgePlatform/RedisRetore + + + ET_FORMATTED_HTML + true + + + branch_or_tag + + choice-parameter-193693974507874 + 1 + + false + + + + false + + + RedisRetore + OpsAdministration/dev/KnowledgePlatform/RedisRetore + + + ET_FORMATTED_HTML + true + + + + + 0 + 0 + + false + project + false + + + + + + 2 + + + https://github.com/project-sunbird/sunbird-learning-platform.git + + + + + ${branch_or_tag} + + + false + + + + true + false + + 0 + false + + + + pipelines/backup/redis-restore/Jenkinsfile + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Provision/config.xml b/deploy/jenkins/jobs/Provision/config.xml index 68477b8ac7..92618cba96 100644 --- a/deploy/jenkins/jobs/Provision/config.xml +++ b/deploy/jenkins/jobs/Provision/config.xml @@ -1,12 +1,12 @@ - + - + - - + + diff --git a/deploy/jenkins/jobs/Provision/jobs/dev/jobs/Core/jobs/Cassandra/config.xml b/deploy/jenkins/jobs/Provision/jobs/dev/jobs/Core/jobs/Cassandra/config.xml index 01cae68572..7670b1cf70 100644 --- a/deploy/jenkins/jobs/Provision/jobs/dev/jobs/Core/jobs/Cassandra/config.xml +++ b/deploy/jenkins/jobs/Provision/jobs/dev/jobs/Core/jobs/Cassandra/config.xml @@ -1,89 +1,91 @@ - - + - + false -1 - -1 + 10 -1 - 5 + 2 - + false false - + private_branch - + choice-parameter-196486141556745 1 +return """<b>This parameter is not used</b>""" false - - + + false Cassandra + Provision/dev/Core/Cassandra - + ET_FORMATTED_HTML true - + branch_or_tag - + choice-parameter-196486144020383 1 +return """<b>This parameter is not used</b>""" false - - + + false Cassandra + Provision/dev/Core/Cassandra - + ET_FORMATTED_HTML true - + 0 0 false project false - + + - - + + 2 @@ -101,7 +103,7 @@ return """<b>This parameter is not used</b>"&quo true false - + 0 false diff --git a/deploy/jenkins/jobs/Provision/jobs/dev/jobs/Core/jobs/CassandraExporter/config.xml b/deploy/jenkins/jobs/Provision/jobs/dev/jobs/Core/jobs/CassandraExporter/config.xml new file mode 100644 index 0000000000..6343c9bd82 --- /dev/null +++ b/deploy/jenkins/jobs/Provision/jobs/dev/jobs/Core/jobs/CassandraExporter/config.xml @@ -0,0 +1,117 @@ + + + + false + + + + -1 + 10 + -1 + 2 + + + + + false + false + + + + + private_branch + + choice-parameter-196486141556745 + 1 + + false + + + + false + + + CassandraExporter + Provision/dev/Core/CassandraExporter + + + ET_FORMATTED_HTML + true + + + branch_or_tag + + choice-parameter-196486144020383 + 1 + + false + + + + false + + + CassandraExporter + Provision/dev/Core/CassandraExporter + + + ET_FORMATTED_HTML + true + + + + + 0 + 0 + + false + project + false + + + + + + + 2 + + + https://github.com/project-sunbird/sunbird-devops.git + + + + + ${branch_or_tag} + + + false + + + + true + false + + 0 + false + + + + pipelines/provision/cassandra/Jenkinsfile.exporter + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Provision/jobs/dev/jobs/Core/jobs/JenkinsSlave/config.xml b/deploy/jenkins/jobs/Provision/jobs/dev/jobs/Core/jobs/JenkinsSlave/config.xml index 3f3e9b8f3a..3245cd533c 100644 --- a/deploy/jenkins/jobs/Provision/jobs/dev/jobs/Core/jobs/JenkinsSlave/config.xml +++ b/deploy/jenkins/jobs/Provision/jobs/dev/jobs/Core/jobs/JenkinsSlave/config.xml @@ -7,9 +7,9 @@ -1 - -1 + 10 -1 - 5 + 2 diff --git a/deploy/jenkins/jobs/Provision/jobs/dev/jobs/Core/jobs/Kafka/config.xml b/deploy/jenkins/jobs/Provision/jobs/dev/jobs/Core/jobs/Kafka/config.xml index 9d6f8c1e8e..f49831d499 100644 --- a/deploy/jenkins/jobs/Provision/jobs/dev/jobs/Core/jobs/Kafka/config.xml +++ b/deploy/jenkins/jobs/Provision/jobs/dev/jobs/Core/jobs/Kafka/config.xml @@ -7,9 +7,9 @@ -1 - -1 + 10 -1 - 5 + 2 diff --git a/deploy/jenkins/jobs/Provision/jobs/dev/jobs/Core/jobs/Keycloak/config.xml b/deploy/jenkins/jobs/Provision/jobs/dev/jobs/Core/jobs/Keycloak/config.xml index 8b32f3a239..67440d7eee 100644 --- a/deploy/jenkins/jobs/Provision/jobs/dev/jobs/Core/jobs/Keycloak/config.xml +++ b/deploy/jenkins/jobs/Provision/jobs/dev/jobs/Core/jobs/Keycloak/config.xml @@ -1,15 +1,14 @@ - - + - + false -1 - -1 + 10 -1 - 5 + 2 @@ -19,73 +18,74 @@ - + private_branch - + choice-parameter-196487835595646 1 +return """<b>This parameter is not used</b>""" false - - + + false Keycloak Provision/dev/Core/Keycloak - + ET_FORMATTED_HTML true - + branch_or_tag - + choice-parameter-196487838166797 1 +return """<b>This parameter is not used</b>""" false - - + + false Keycloak Provision/dev/Core/Keycloak - + ET_FORMATTED_HTML true - + 0 0 false project false - + + - - + + 2 @@ -103,7 +103,7 @@ return """<b>This parameter is not used</b>"&quo true false - + 1 false diff --git a/deploy/jenkins/jobs/Provision/jobs/dev/jobs/Core/jobs/LogEsUpgrade6xx/config.xml b/deploy/jenkins/jobs/Provision/jobs/dev/jobs/Core/jobs/LogEsUpgrade6xx/config.xml index 02a00d5d44..587e7cebea 100644 --- a/deploy/jenkins/jobs/Provision/jobs/dev/jobs/Core/jobs/LogEsUpgrade6xx/config.xml +++ b/deploy/jenkins/jobs/Provision/jobs/dev/jobs/Core/jobs/LogEsUpgrade6xx/config.xml @@ -1,15 +1,14 @@ - - + - + false -1 - -1 + 10 -1 - 5 + 2 @@ -21,75 +20,76 @@ private_branch - + choice-parameter-186487879604743 1 +return """<b>This parameter is not used</b>""" false - - + + false LogEsUpgrade6xx - Provision/loadtest/Core/LogEsUpgrade6xx + Provision/dev/Core/LogEsUpgrade6xx - + ET_FORMATTED_HTML true branch_or_tag - + choice-parameter-186487885338467 1 +return """<b>This parameter is not used</b>""" false - - + + false LogEsUpgrade6xx - Provision/loadtest/Core/LogEsUpgrade6xx + Provision/dev/Core/LogEsUpgrade6xx - + ET_FORMATTED_HTML true - + 0 0 false project false - + + - - + + 2 - https://github.com/kaali09/sunbird-devops.git + https://github.com/project-sunbird/sunbird-devops.git @@ -103,7 +103,7 @@ return """<b>This parameter is not used</b>"&quo true false - + 1 false @@ -114,4 +114,4 @@ return """<b>This parameter is not used</b>"&quo false - + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Provision/jobs/dev/jobs/Core/jobs/Logstash/config.xml b/deploy/jenkins/jobs/Provision/jobs/dev/jobs/Core/jobs/Logstash/config.xml index 95778c7d70..144b79650d 100644 --- a/deploy/jenkins/jobs/Provision/jobs/dev/jobs/Core/jobs/Logstash/config.xml +++ b/deploy/jenkins/jobs/Provision/jobs/dev/jobs/Core/jobs/Logstash/config.xml @@ -7,9 +7,9 @@ -1 - -1 + 10 -1 - 5 + 2 diff --git a/deploy/jenkins/jobs/Provision/jobs/dev/jobs/Core/jobs/Postgres/config.xml b/deploy/jenkins/jobs/Provision/jobs/dev/jobs/Core/jobs/Postgres/config.xml index bf512172cb..26c84258d1 100644 --- a/deploy/jenkins/jobs/Provision/jobs/dev/jobs/Core/jobs/Postgres/config.xml +++ b/deploy/jenkins/jobs/Provision/jobs/dev/jobs/Core/jobs/Postgres/config.xml @@ -1,87 +1,91 @@ - - + - + false -1 - -1 + 10 -1 - 5 + 2 - + false false - + private_branch - + choice-parameter-196489635829894 1 +return """<b>This parameter is not used</b>""" false - - + + false Postgres + Provision/dev/Core/Postgres - + ET_FORMATTED_HTML true - + branch_or_tag - + choice-parameter-196489639391445 1 +return """<b>This parameter is not used</b>""" false - - + + false Postgres + Provision/dev/Core/Postgres - + ET_FORMATTED_HTML true - + + 0 + 0 false project false - + + - - + + 2 @@ -99,7 +103,7 @@ return """<b>This parameter is not used</b>"&quo true false - + 0 false @@ -110,4 +114,4 @@ return """<b>This parameter is not used</b>"&quo false - + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Provision/jobs/dev/jobs/Core/jobs/PostgresDbUpdate/config.xml b/deploy/jenkins/jobs/Provision/jobs/dev/jobs/Core/jobs/PostgresDbUpdate/config.xml index 5ca5d99add..d8a68c1d3b 100644 --- a/deploy/jenkins/jobs/Provision/jobs/dev/jobs/Core/jobs/PostgresDbUpdate/config.xml +++ b/deploy/jenkins/jobs/Provision/jobs/dev/jobs/Core/jobs/PostgresDbUpdate/config.xml @@ -1,89 +1,91 @@ - - + - + false -1 - -1 + 10 -1 - 5 + 2 - + false false - + private_branch - + choice-parameter-196490490920280 1 +return """<b>This parameter is not used</b>""" false - - + + false PostgresDbUpdate + Provision/dev/Core/PostgresDbUpdate - + ET_FORMATTED_HTML true - + branch_or_tag - + choice-parameter-196490493760485 1 +return """<b>This parameter is not used</b>""" false - - + + false PostgresDbUpdate + Provision/dev/Core/PostgresDbUpdate - + ET_FORMATTED_HTML true - + 0 0 false project false - + + - - + + 2 @@ -101,7 +103,7 @@ return """<b>This parameter is not used</b>"&quo true false - + 0 false diff --git a/deploy/jenkins/jobs/Provision/jobs/dev/jobs/Core/jobs/PostgresDbUpdateManaged/config.xml b/deploy/jenkins/jobs/Provision/jobs/dev/jobs/Core/jobs/PostgresDbUpdateManaged/config.xml index 504dfb72b3..64f2665366 100644 --- a/deploy/jenkins/jobs/Provision/jobs/dev/jobs/Core/jobs/PostgresDbUpdateManaged/config.xml +++ b/deploy/jenkins/jobs/Provision/jobs/dev/jobs/Core/jobs/PostgresDbUpdateManaged/config.xml @@ -7,9 +7,9 @@ -1 - -1 + 10 -1 - 5 + 2 diff --git a/deploy/jenkins/jobs/Provision/jobs/dev/jobs/Core/jobs/Redis/config.xml b/deploy/jenkins/jobs/Provision/jobs/dev/jobs/Core/jobs/Redis/config.xml new file mode 100644 index 0000000000..258e0b0af3 --- /dev/null +++ b/deploy/jenkins/jobs/Provision/jobs/dev/jobs/Core/jobs/Redis/config.xml @@ -0,0 +1,127 @@ + + + + + hudson.model.ParametersDefinitionProperty + com.sonyericsson.rebuild.RebuildSettings + + + + + false + + + + -1 + 10 + -1 + 2 + + + + + false + false + + + + + private_branch + + choice-parameter-196505638775314 + 1 + + false + + + + false + + + Redis + Provision/dev/Core/Redis + + + ET_FORMATTED_HTML + true + + + branch_or_tag + + choice-parameter-196505642335779 + 1 + + false + + + + false + + + Redis + Provision/dev/Core/Redis + + + ET_FORMATTED_HTML + true + + + + + 0 + 0 + + false + project + false + + + + + + + + + + 2 + + + https://github.com/project-sunbird/sunbird-devops.git + + + + + ${branch_or_tag} + + + false + + + + true + false + + 0 + false + + + + pipelines/provision/redis/Jenkinsfile + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Provision/jobs/dev/jobs/Core/jobs/Registry/config.xml b/deploy/jenkins/jobs/Provision/jobs/dev/jobs/Core/jobs/Registry/config.xml index 7a4cd19552..f8ae5abed8 100644 --- a/deploy/jenkins/jobs/Provision/jobs/dev/jobs/Core/jobs/Registry/config.xml +++ b/deploy/jenkins/jobs/Provision/jobs/dev/jobs/Core/jobs/Registry/config.xml @@ -7,9 +7,9 @@ -1 - -1 + 10 -1 - 5 + 2 diff --git a/deploy/jenkins/jobs/Provision/jobs/dev/jobs/Core/jobs/Secor/config.xml b/deploy/jenkins/jobs/Provision/jobs/dev/jobs/Core/jobs/Secor/config.xml index 102641d9ff..b262ce9514 100644 --- a/deploy/jenkins/jobs/Provision/jobs/dev/jobs/Core/jobs/Secor/config.xml +++ b/deploy/jenkins/jobs/Provision/jobs/dev/jobs/Core/jobs/Secor/config.xml @@ -7,9 +7,9 @@ -1 - -1 + 10 -1 - 5 + 2 diff --git a/deploy/jenkins/jobs/Provision/jobs/dev/jobs/Core/jobs/keycloak-test/config.xml b/deploy/jenkins/jobs/Provision/jobs/dev/jobs/Core/jobs/keycloak-test/config.xml index e335f972dc..19e29c8993 100644 --- a/deploy/jenkins/jobs/Provision/jobs/dev/jobs/Core/jobs/keycloak-test/config.xml +++ b/deploy/jenkins/jobs/Provision/jobs/dev/jobs/Core/jobs/keycloak-test/config.xml @@ -7,9 +7,9 @@ -1 - -1 + 10 -1 - 5 + 2 diff --git a/deploy/jenkins/jobs/Provision/jobs/dev/jobs/Core/jobs/user-keycloak/config.xml b/deploy/jenkins/jobs/Provision/jobs/dev/jobs/Core/jobs/user-keycloak/config.xml index 8e96c2c6ca..e48455cea1 100644 --- a/deploy/jenkins/jobs/Provision/jobs/dev/jobs/Core/jobs/user-keycloak/config.xml +++ b/deploy/jenkins/jobs/Provision/jobs/dev/jobs/Core/jobs/user-keycloak/config.xml @@ -7,9 +7,9 @@ -1 - -1 + 10 -1 - 5 + 2 diff --git a/deploy/jenkins/jobs/Provision/jobs/dev/jobs/DataPipeline/jobs/AnalyticsAPI/config.xml b/deploy/jenkins/jobs/Provision/jobs/dev/jobs/DataPipeline/jobs/AnalyticsAPI/config.xml index b09d36dcac..2b36b0fa31 100644 --- a/deploy/jenkins/jobs/Provision/jobs/dev/jobs/DataPipeline/jobs/AnalyticsAPI/config.xml +++ b/deploy/jenkins/jobs/Provision/jobs/dev/jobs/DataPipeline/jobs/AnalyticsAPI/config.xml @@ -1,5 +1,5 @@ - + @@ -14,25 +14,25 @@ -1 - -1 + 10 -1 - 5 + 2 - + false false - + private_branch choice-parameter-196492871381509 1 false - + false AnalyticsAPI + Provision/dev/DataPipeline/AnalyticsAPI ET_FORMATTED_HTML true - + branch_or_tag choice-parameter-196492874659821 1 false - + false AnalyticsAPI + Provision/dev/DataPipeline/AnalyticsAPI ET_FORMATTED_HTML @@ -89,8 +91,8 @@ return """<b>This parameter is not used</b>"&quo - - + + 2 diff --git a/deploy/jenkins/jobs/Provision/jobs/dev/jobs/DataPipeline/jobs/AnalyticsSecor/config.xml b/deploy/jenkins/jobs/Provision/jobs/dev/jobs/DataPipeline/jobs/AnalyticsSecor/config.xml index c20e767a03..e37a1573ef 100644 --- a/deploy/jenkins/jobs/Provision/jobs/dev/jobs/DataPipeline/jobs/AnalyticsSecor/config.xml +++ b/deploy/jenkins/jobs/Provision/jobs/dev/jobs/DataPipeline/jobs/AnalyticsSecor/config.xml @@ -1,5 +1,4 @@ - - + @@ -8,86 +7,91 @@ - + false -1 - -1 + 10 -1 - 5 + 2 - + false false - + private_branch - + choice-parameter-196493724128621 1 +return """<b>This parameter is not used</b>""" false - - + + false AnalyticsSecor + Provision/dev/DataPipeline/AnalyticsSecor - + ET_FORMATTED_HTML true - + branch_or_tag - + choice-parameter-196493728691761 1 +return """<b>This parameter is not used</b>""" false - - + + false AnalyticsSecor + Provision/dev/DataPipeline/AnalyticsSecor - + ET_FORMATTED_HTML true - + + 0 + 0 false project false - + + - - + + 2 @@ -105,7 +109,7 @@ return """<b>This parameter is not used</b>"&quo true false - + 0 false @@ -116,4 +120,4 @@ return """<b>This parameter is not used</b>"&quo false - + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Provision/jobs/dev/jobs/DataPipeline/jobs/AnalyticsSpark/config.xml b/deploy/jenkins/jobs/Provision/jobs/dev/jobs/DataPipeline/jobs/AnalyticsSpark/config.xml index 3e78f2bae0..1d7be9b905 100644 --- a/deploy/jenkins/jobs/Provision/jobs/dev/jobs/DataPipeline/jobs/AnalyticsSpark/config.xml +++ b/deploy/jenkins/jobs/Provision/jobs/dev/jobs/DataPipeline/jobs/AnalyticsSpark/config.xml @@ -1,5 +1,4 @@ - - + @@ -8,15 +7,15 @@ - + false -1 - -1 + 10 -1 - 5 + 2 @@ -26,73 +25,74 @@ - + private_branch - + choice-parameter-196494527011530 1 +return """<b>This parameter is not used</b>""" false - - + + false AnalyticsSpark Provision/dev/DataPipeline/AnalyticsSpark - + ET_FORMATTED_HTML true - + branch_or_tag - + choice-parameter-196494532752488 1 +return """<b>This parameter is not used</b>""" false - - + + false AnalyticsSpark Provision/dev/DataPipeline/AnalyticsSpark - + ET_FORMATTED_HTML true - + 0 0 false project false - + + - - + + 2 @@ -110,7 +110,7 @@ return """<b>This parameter is not used</b>"&quo true false - + 0 false diff --git a/deploy/jenkins/jobs/Provision/jobs/dev/jobs/DataPipeline/jobs/Cassandra/config.xml b/deploy/jenkins/jobs/Provision/jobs/dev/jobs/DataPipeline/jobs/Cassandra/config.xml index 3ddc489905..efabbd98e1 100644 --- a/deploy/jenkins/jobs/Provision/jobs/dev/jobs/DataPipeline/jobs/Cassandra/config.xml +++ b/deploy/jenkins/jobs/Provision/jobs/dev/jobs/DataPipeline/jobs/Cassandra/config.xml @@ -14,9 +14,9 @@ -1 - -1 + 10 -1 - 5 + 2 diff --git a/deploy/jenkins/jobs/Provision/jobs/dev/jobs/DataPipeline/jobs/Druid/config.xml b/deploy/jenkins/jobs/Provision/jobs/dev/jobs/DataPipeline/jobs/Druid/config.xml index 7d0c034d93..2f1626e388 100644 --- a/deploy/jenkins/jobs/Provision/jobs/dev/jobs/DataPipeline/jobs/Druid/config.xml +++ b/deploy/jenkins/jobs/Provision/jobs/dev/jobs/DataPipeline/jobs/Druid/config.xml @@ -1,5 +1,4 @@ - - + @@ -8,15 +7,15 @@ - + false -1 - -1 + 10 -1 - 5 + 2 @@ -24,18 +23,52 @@ false false - + + + + service + <font color=green size=2><b>Choose the services to deploy. Multi-selection is available.</b></font> + choice-parameter-160652271515504 + 1 + + true + + + + Druid + Provision/dev/DataPipeline/Druid + + + PT_MULTI_SELECT + false + 1 + + + + 0 0 false project false - + + - - + + 2 @@ -53,7 +86,7 @@ true false - + 0 false diff --git a/deploy/jenkins/jobs/Provision/jobs/dev/jobs/DataPipeline/jobs/InfluxDB/config.xml b/deploy/jenkins/jobs/Provision/jobs/dev/jobs/DataPipeline/jobs/InfluxDB/config.xml index e0d7d7981f..ef82c11365 100644 --- a/deploy/jenkins/jobs/Provision/jobs/dev/jobs/DataPipeline/jobs/InfluxDB/config.xml +++ b/deploy/jenkins/jobs/Provision/jobs/dev/jobs/DataPipeline/jobs/InfluxDB/config.xml @@ -14,9 +14,9 @@ -1 - -1 + 10 -1 - 5 + 2 diff --git a/deploy/jenkins/jobs/Provision/jobs/dev/jobs/DataPipeline/jobs/Kafka/config.xml b/deploy/jenkins/jobs/Provision/jobs/dev/jobs/DataPipeline/jobs/Kafka/config.xml index fb292a9750..27266ac9c4 100644 --- a/deploy/jenkins/jobs/Provision/jobs/dev/jobs/DataPipeline/jobs/Kafka/config.xml +++ b/deploy/jenkins/jobs/Provision/jobs/dev/jobs/DataPipeline/jobs/Kafka/config.xml @@ -1,5 +1,4 @@ - - + @@ -8,95 +7,98 @@ - + false -1 - -1 + 10 -1 - 5 + 2 - + false false - + private_branch - + choice-parameter-196496946659342 1 +return """<b>This parameter is not used</b>""" false - - + + false Kafka + Provision/dev/DataPipeline/Kafka - + ET_FORMATTED_HTML true - + branch_or_tag - + choice-parameter-196496948791638 1 +return """<b>This parameter is not used</b>""" false - - + + false Kafka + Provision/dev/DataPipeline/Kafka - + ET_FORMATTED_HTML true remote - + processing-cluster-kafka false - + 0 0 false project false - + + - - + + 2 @@ -114,7 +116,7 @@ return """<b>This parameter is not used</b>"&quo true false - + 0 false diff --git a/deploy/jenkins/jobs/Provision/jobs/dev/jobs/DataPipeline/jobs/Kibana/config.xml b/deploy/jenkins/jobs/Provision/jobs/dev/jobs/DataPipeline/jobs/Kibana/config.xml index cac92eae53..84cd1003da 100644 --- a/deploy/jenkins/jobs/Provision/jobs/dev/jobs/DataPipeline/jobs/Kibana/config.xml +++ b/deploy/jenkins/jobs/Provision/jobs/dev/jobs/DataPipeline/jobs/Kibana/config.xml @@ -14,9 +14,9 @@ -1 - -1 + 10 -1 - 5 + 2 diff --git a/deploy/jenkins/jobs/Provision/jobs/dev/jobs/DataPipeline/jobs/MLWorkbench/config.xml b/deploy/jenkins/jobs/Provision/jobs/dev/jobs/DataPipeline/jobs/MLWorkbench/config.xml index 86592f868a..24b356730a 100644 --- a/deploy/jenkins/jobs/Provision/jobs/dev/jobs/DataPipeline/jobs/MLWorkbench/config.xml +++ b/deploy/jenkins/jobs/Provision/jobs/dev/jobs/DataPipeline/jobs/MLWorkbench/config.xml @@ -7,9 +7,9 @@ -1 - -1 + 10 -1 - 5 + 2 diff --git a/deploy/jenkins/jobs/Provision/jobs/dev/jobs/DataPipeline/jobs/NodeJs/config.xml b/deploy/jenkins/jobs/Provision/jobs/dev/jobs/DataPipeline/jobs/NodeJs/config.xml index 9fa3048882..190be995c7 100644 --- a/deploy/jenkins/jobs/Provision/jobs/dev/jobs/DataPipeline/jobs/NodeJs/config.xml +++ b/deploy/jenkins/jobs/Provision/jobs/dev/jobs/DataPipeline/jobs/NodeJs/config.xml @@ -14,9 +14,9 @@ -1 - -1 + 10 -1 - 5 + 2 diff --git a/deploy/jenkins/jobs/Provision/jobs/dev/jobs/DataPipeline/jobs/Postgres/config.xml b/deploy/jenkins/jobs/Provision/jobs/dev/jobs/DataPipeline/jobs/Postgres/config.xml index bfed6405d9..0526f34d4a 100644 --- a/deploy/jenkins/jobs/Provision/jobs/dev/jobs/DataPipeline/jobs/Postgres/config.xml +++ b/deploy/jenkins/jobs/Provision/jobs/dev/jobs/DataPipeline/jobs/Postgres/config.xml @@ -14,9 +14,9 @@ -1 - -1 + 10 -1 - 5 + 2 diff --git a/deploy/jenkins/jobs/Provision/jobs/dev/jobs/DataPipeline/jobs/RedisCluster/config.xml b/deploy/jenkins/jobs/Provision/jobs/dev/jobs/DataPipeline/jobs/RedisCluster/config.xml index d65b185419..1b8a272eeb 100644 --- a/deploy/jenkins/jobs/Provision/jobs/dev/jobs/DataPipeline/jobs/RedisCluster/config.xml +++ b/deploy/jenkins/jobs/Provision/jobs/dev/jobs/DataPipeline/jobs/RedisCluster/config.xml @@ -14,9 +14,9 @@ -1 - -1 + 10 -1 - 5 + 2 diff --git a/deploy/jenkins/jobs/Provision/jobs/dev/jobs/DataPipeline/jobs/TelemetrySearch/config.xml b/deploy/jenkins/jobs/Provision/jobs/dev/jobs/DataPipeline/jobs/TelemetrySearch/config.xml index d8fa81c34f..9f8e179efb 100644 --- a/deploy/jenkins/jobs/Provision/jobs/dev/jobs/DataPipeline/jobs/TelemetrySearch/config.xml +++ b/deploy/jenkins/jobs/Provision/jobs/dev/jobs/DataPipeline/jobs/TelemetrySearch/config.xml @@ -14,9 +14,9 @@ -1 - -1 + 10 -1 - 5 + 2 diff --git a/deploy/jenkins/jobs/Provision/jobs/dev/jobs/DataPipeline/jobs/Yarn/config.xml b/deploy/jenkins/jobs/Provision/jobs/dev/jobs/DataPipeline/jobs/Yarn/config.xml index f1baf8e9db..0f08793d1a 100644 --- a/deploy/jenkins/jobs/Provision/jobs/dev/jobs/DataPipeline/jobs/Yarn/config.xml +++ b/deploy/jenkins/jobs/Provision/jobs/dev/jobs/DataPipeline/jobs/Yarn/config.xml @@ -1,5 +1,4 @@ - - + @@ -8,15 +7,15 @@ - + false -1 - -1 + 10 -1 - 5 + 2 @@ -26,77 +25,78 @@ - + private_branch - + choice-parameter-196500122471866 1 +return """<b>This parameter is not used</b>""" true - - + + false Yarn Provision/dev/DataPipeline/Yarn - + ET_FORMATTED_HTML true - + branch_or_tag - + choice-parameter-196500128714203 1 +return """<b>This parameter is not used</b>""" true - - + + true Yarn Provision/dev/DataPipeline/Yarn - + ET_FORMATTED_HTML true - + 0 0 false project false - + + - - + + 2 - https://github.com/project-sunbird/sunbird-data-pipeline + https://github.com/project-sunbird/sunbird-data-pipeline.git @@ -110,7 +110,7 @@ return """<b>This parameter is not used</b>"&quo true false - + 0 false diff --git a/deploy/jenkins/jobs/Provision/jobs/dev/jobs/DataPipeline/jobs/Zookeeper/config.xml b/deploy/jenkins/jobs/Provision/jobs/dev/jobs/DataPipeline/jobs/Zookeeper/config.xml index 8e02e9159d..ed757f5384 100644 --- a/deploy/jenkins/jobs/Provision/jobs/dev/jobs/DataPipeline/jobs/Zookeeper/config.xml +++ b/deploy/jenkins/jobs/Provision/jobs/dev/jobs/DataPipeline/jobs/Zookeeper/config.xml @@ -1,5 +1,5 @@ - + @@ -14,24 +14,24 @@ -1 - -1 + 10 -1 - 5 + 2 - + false false - + private_branch choice-parameter-196500899115571 1 false - + false Zookeeper + Provision/dev/DataPipeline/Zookeeper ET_FORMATTED_HTML true - + branch_or_tag choice-parameter-196500913815161 1 false - + false Zookeeper + Provision/dev/DataPipeline/Zookeeper ET_FORMATTED_HTML @@ -94,8 +96,8 @@ return """<b>This parameter is not used</b>"&quo - - + + 2 diff --git a/deploy/jenkins/jobs/Provision/jobs/dev/jobs/DataPipeline/jobs/postgres-managed/config.xml b/deploy/jenkins/jobs/Provision/jobs/dev/jobs/DataPipeline/jobs/postgres-managed/config.xml index 1a2bcd6580..2b9c16fdad 100644 --- a/deploy/jenkins/jobs/Provision/jobs/dev/jobs/DataPipeline/jobs/postgres-managed/config.xml +++ b/deploy/jenkins/jobs/Provision/jobs/dev/jobs/DataPipeline/jobs/postgres-managed/config.xml @@ -1,5 +1,4 @@ - - + @@ -8,15 +7,15 @@ - + false -1 - -1 + 10 -1 - 5 + 2 @@ -25,73 +24,74 @@ - + private_branch - + choice-parameter-196498570819230 1 +return """<b>This parameter is not used</b>""" false - - + + false postgres-managed Provision/dev/DataPipeline/postgres-managed - + ET_FORMATTED_HTML true - + branch_or_tag - + choice-parameter-196498577913500 1 +return """<b>This parameter is not used</b>""" false - - + + false postgres-managed Provision/dev/DataPipeline/postgres-managed - + ET_FORMATTED_HTML true - + 0 0 false project false - + + - - + + 2 @@ -109,7 +109,7 @@ return """<b>This parameter is not used</b>"&quo true false - + 0 false diff --git a/deploy/jenkins/jobs/Provision/jobs/dev/jobs/KnowledgePlatform/jobs/Cassandra/config.xml b/deploy/jenkins/jobs/Provision/jobs/dev/jobs/KnowledgePlatform/jobs/Cassandra/config.xml index dbf93f6595..51554020dd 100644 --- a/deploy/jenkins/jobs/Provision/jobs/dev/jobs/KnowledgePlatform/jobs/Cassandra/config.xml +++ b/deploy/jenkins/jobs/Provision/jobs/dev/jobs/KnowledgePlatform/jobs/Cassandra/config.xml @@ -14,9 +14,9 @@ -1 - -1 + 10 -1 - 5 + 2 diff --git a/deploy/jenkins/jobs/Provision/jobs/dev/jobs/KnowledgePlatform/jobs/CompositeSearch/config.xml b/deploy/jenkins/jobs/Provision/jobs/dev/jobs/KnowledgePlatform/jobs/CompositeSearch/config.xml index a80bfacf88..c311af545b 100644 --- a/deploy/jenkins/jobs/Provision/jobs/dev/jobs/KnowledgePlatform/jobs/CompositeSearch/config.xml +++ b/deploy/jenkins/jobs/Provision/jobs/dev/jobs/KnowledgePlatform/jobs/CompositeSearch/config.xml @@ -1,5 +1,4 @@ - - + @@ -8,15 +7,15 @@ - + false -1 - -1 + 10 -1 - 5 + 2 @@ -26,74 +25,77 @@ - + private_branch - + choice-parameter-196502397927441 1 +return """<b>This parameter is not used</b>""" false - - + + false CompositeSearch + Provision/dev/KnowledgePlatform/CompositeSearch - + ET_FORMATTED_HTML true - + branch_or_tag - + choice-parameter-196502408664232 1 +return """<b>This parameter is not used</b>""" false - - + + false CompositeSearch + Provision/dev/KnowledgePlatform/CompositeSearch - + ET_FORMATTED_HTML true - + 0 0 false project false - + + - - + + 2 @@ -111,7 +113,7 @@ return """<b>This parameter is not used</b>"&quo true false - + 0 false diff --git a/deploy/jenkins/jobs/Provision/jobs/dev/jobs/KnowledgePlatform/jobs/Dial/config.xml b/deploy/jenkins/jobs/Provision/jobs/dev/jobs/KnowledgePlatform/jobs/Dial/config.xml new file mode 100644 index 0000000000..52868463af --- /dev/null +++ b/deploy/jenkins/jobs/Provision/jobs/dev/jobs/KnowledgePlatform/jobs/Dial/config.xml @@ -0,0 +1,127 @@ + + + + + hudson.model.ParametersDefinitionProperty + com.sonyericsson.rebuild.RebuildSettings + + + + + false + + + + -1 + 10 + -1 + 2 + + + + + false + false + + + + + private_branch + + choice-parameter-196504004472286 + 1 + + false + + + + false + + + Dial + Provision/dev/KnowledgePlatform/Dial + + + ET_FORMATTED_HTML + true + + + branch_or_tag + + choice-parameter-196504007625526 + 1 + + false + + + + false + + + Dial + Provision/dev/KnowledgePlatform/Dial + + + ET_FORMATTED_HTML + true + + + + + 0 + 0 + + false + project + false + + + + + + + + + + 2 + + + https://github.com/project-sunbird/sunbird-learning-platform.git + + + + + ${branch_or_tag} + + + false + + + + true + false + + 0 + false + + + + pipelines/provision/dial/Jenkinsfile + false + + + false + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Provision/jobs/dev/jobs/KnowledgePlatform/jobs/Kafka/config.xml b/deploy/jenkins/jobs/Provision/jobs/dev/jobs/KnowledgePlatform/jobs/Kafka/config.xml index c13f5f045c..c342840a3d 100644 --- a/deploy/jenkins/jobs/Provision/jobs/dev/jobs/KnowledgePlatform/jobs/Kafka/config.xml +++ b/deploy/jenkins/jobs/Provision/jobs/dev/jobs/KnowledgePlatform/jobs/Kafka/config.xml @@ -1,5 +1,4 @@ - - + @@ -8,92 +7,95 @@ - + false -1 - -1 + 10 -1 - 5 + 2 - + false false - + private_branch - + choice-parameter-196503227911555 1 +return """<b>This parameter is not used</b>""" false - - + + false Kafka + Provision/dev/KnowledgePlatform/Kafka - + ET_FORMATTED_HTML true - + branch_or_tag - + choice-parameter-196503234123956 1 +return """<b>This parameter is not used</b>""" false - - + + false Kafka + Provision/dev/KnowledgePlatform/Kafka - + ET_FORMATTED_HTML true - + 0 0 false project false - + + - - + + 2 @@ -111,7 +113,7 @@ return """<b>This parameter is not used</b>"&quo true false - + 0 false diff --git a/deploy/jenkins/jobs/Provision/jobs/dev/jobs/KnowledgePlatform/jobs/Learning/config.xml b/deploy/jenkins/jobs/Provision/jobs/dev/jobs/KnowledgePlatform/jobs/Learning/config.xml index 9eb3a8c0b7..47979810f1 100644 --- a/deploy/jenkins/jobs/Provision/jobs/dev/jobs/KnowledgePlatform/jobs/Learning/config.xml +++ b/deploy/jenkins/jobs/Provision/jobs/dev/jobs/KnowledgePlatform/jobs/Learning/config.xml @@ -1,5 +1,4 @@ - - + @@ -8,92 +7,95 @@ - + false -1 - -1 + 10 -1 - 5 + 2 - + false false - + private_branch - + choice-parameter-196504004472286 1 +return """<b>This parameter is not used</b>""" false - - + + false Learning + Provision/dev/KnowledgePlatform/Learning - + ET_FORMATTED_HTML true - + branch_or_tag - + choice-parameter-196504007625526 1 +return """<b>This parameter is not used</b>""" false - - + + false Learning + Provision/dev/KnowledgePlatform/Learning - + ET_FORMATTED_HTML true - + 0 0 false project false - + + - - + + 2 @@ -111,7 +113,7 @@ return """<b>This parameter is not used</b>"&quo true false - + 0 false @@ -122,4 +124,4 @@ return """<b>This parameter is not used</b>"&quo false - + \ No newline at end of file diff --git a/deploy/jenkins/jobs/Provision/jobs/dev/jobs/KnowledgePlatform/jobs/Neo4j/config.xml b/deploy/jenkins/jobs/Provision/jobs/dev/jobs/KnowledgePlatform/jobs/Neo4j/config.xml index 5add9187cd..2d490d85a1 100644 --- a/deploy/jenkins/jobs/Provision/jobs/dev/jobs/KnowledgePlatform/jobs/Neo4j/config.xml +++ b/deploy/jenkins/jobs/Provision/jobs/dev/jobs/KnowledgePlatform/jobs/Neo4j/config.xml @@ -1,5 +1,4 @@ - - + @@ -8,92 +7,95 @@ - + false -1 - -1 + 10 -1 - 5 + 2 - + false false - + private_branch - + choice-parameter-196504831541165 1 +return """<b>This parameter is not used</b>""" false - - + + false Neo4j + Provision/dev/KnowledgePlatform/Neo4j - + ET_FORMATTED_HTML true - + branch_or_tag - + choice-parameter-196504838020082 1 +return """<b>This parameter is not used</b>""" false - - + + false Neo4j + Provision/dev/KnowledgePlatform/Neo4j - + ET_FORMATTED_HTML true - + 0 0 false project false - + + - - + + 2 @@ -111,7 +113,7 @@ return """<b>This parameter is not used</b>"&quo true false - + 0 false diff --git a/deploy/jenkins/jobs/Provision/jobs/dev/jobs/KnowledgePlatform/jobs/Redis/config.xml b/deploy/jenkins/jobs/Provision/jobs/dev/jobs/KnowledgePlatform/jobs/Redis/config.xml index 8bb0df164d..65cc73c373 100644 --- a/deploy/jenkins/jobs/Provision/jobs/dev/jobs/KnowledgePlatform/jobs/Redis/config.xml +++ b/deploy/jenkins/jobs/Provision/jobs/dev/jobs/KnowledgePlatform/jobs/Redis/config.xml @@ -1,5 +1,4 @@ - - + @@ -8,15 +7,15 @@ - + false -1 - -1 + 10 -1 - 5 + 2 @@ -26,80 +25,81 @@ - + private_branch - + choice-parameter-196505638775314 1 +return """<b>This parameter is not used</b>""" false - - + + false Redis Provision/dev/KnowledgePlatform/Redis - + ET_FORMATTED_HTML true - + branch_or_tag - + choice-parameter-196505642335779 1 +return """<b>This parameter is not used</b>""" false - - + + false Redis Provision/dev/KnowledgePlatform/Redis - + ET_FORMATTED_HTML true - + 0 0 false project false - + + - - + + 2 - https://github.com/project-sunbird/sunbird-learning-platform.git + https://github.com/project-sunbird/sunbird-data-pipeline.git @@ -113,7 +113,7 @@ return """<b>This parameter is not used</b>"&quo true false - + 0 false diff --git a/deploy/jenkins/jobs/Provision/jobs/dev/jobs/KnowledgePlatform/jobs/RedisCluster/config.xml b/deploy/jenkins/jobs/Provision/jobs/dev/jobs/KnowledgePlatform/jobs/RedisCluster/config.xml index b9b5b38d14..0e8913e0ad 100644 --- a/deploy/jenkins/jobs/Provision/jobs/dev/jobs/KnowledgePlatform/jobs/RedisCluster/config.xml +++ b/deploy/jenkins/jobs/Provision/jobs/dev/jobs/KnowledgePlatform/jobs/RedisCluster/config.xml @@ -14,9 +14,9 @@ -1 - -1 + 10 -1 - 5 + 2 diff --git a/deploy/jenkins/jobs/Provision/jobs/dev/jobs/KnowledgePlatform/jobs/Search/config.xml b/deploy/jenkins/jobs/Provision/jobs/dev/jobs/KnowledgePlatform/jobs/Search/config.xml index 1865d82b1a..819d053a5d 100644 --- a/deploy/jenkins/jobs/Provision/jobs/dev/jobs/KnowledgePlatform/jobs/Search/config.xml +++ b/deploy/jenkins/jobs/Provision/jobs/dev/jobs/KnowledgePlatform/jobs/Search/config.xml @@ -14,9 +14,9 @@ -1 - -1 + 10 -1 - 5 + 2 diff --git a/deploy/jenkins/jobs/Provision/jobs/dev/jobs/KnowledgePlatform/jobs/Yarn/config.xml b/deploy/jenkins/jobs/Provision/jobs/dev/jobs/KnowledgePlatform/jobs/Yarn/config.xml index acdf2ac7f1..ac1c40a5a5 100644 --- a/deploy/jenkins/jobs/Provision/jobs/dev/jobs/KnowledgePlatform/jobs/Yarn/config.xml +++ b/deploy/jenkins/jobs/Provision/jobs/dev/jobs/KnowledgePlatform/jobs/Yarn/config.xml @@ -14,9 +14,9 @@ -1 - -1 + 10 -1 - 5 + 2 diff --git a/deploy/jenkins/jobs/Provision/jobs/dev/jobs/KnowledgePlatform/jobs/Zookeeper/config.xml b/deploy/jenkins/jobs/Provision/jobs/dev/jobs/KnowledgePlatform/jobs/Zookeeper/config.xml index 740a853a85..545feab171 100644 --- a/deploy/jenkins/jobs/Provision/jobs/dev/jobs/KnowledgePlatform/jobs/Zookeeper/config.xml +++ b/deploy/jenkins/jobs/Provision/jobs/dev/jobs/KnowledgePlatform/jobs/Zookeeper/config.xml @@ -1,5 +1,4 @@ - - + @@ -8,90 +7,95 @@ - + false -1 - -1 + 10 -1 - 5 + 2 - + false false - + private_branch - + choice-parameter-196485017539792 1 +return """<b>This parameter is not used</b>""" false - - + + false Zookeeper + Provision/dev/KnowledgePlatform/Zookeeper - + ET_FORMATTED_HTML true - + branch_or_tag - + choice-parameter-196485022834542 1 +return """<b>This parameter is not used</b>""" false - - + + false Zookeeper + Provision/dev/KnowledgePlatform/Zookeeper - + ET_FORMATTED_HTML true - + + 0 + 0 false project false - + + - - + + 2 @@ -109,7 +113,7 @@ return """<b>This parameter is not used</b>"&quo true false - + 0 false @@ -120,4 +124,4 @@ return """<b>This parameter is not used</b>"&quo false - + \ No newline at end of file diff --git a/private_repo/ansible/inventory/dev/Core/common.yml b/private_repo/ansible/inventory/dev/Core/common.yml index 3bcd128237..e07711fcc0 100644 --- a/private_repo/ansible/inventory/dev/Core/common.yml +++ b/private_repo/ansible/inventory/dev/Core/common.yml @@ -7,60 +7,34 @@ proto: # Protocol # External service ips # should be accessible from core containers -learningservice_ip: # Load balancer IP for learning server -searchservice_ip: # search service Load balancer IP -analyticsapi_ip: # Analytics Service Load Balancer IP -keycloak_url: "" # Keycloak Load balancer IP; eg http://10.10.10.10 -sunbird_swarm_manager_lb_ip: # Swarm manager load balancer private IP. If you don't have a load swarm manager load balancer, you can use swarm manager private ip. +learningservice_ip: # Load balancer IP for learning server or vm ip if its a single vm for learning service +dialservice_ip: # dial service vm ip or Load balancer ip +keycloak_url: "" # Keycloak Load balancer IP; eg http://10.10.10.10 +# Ip Address of the keycloak without http +# eg: 11.2.1.10 +keycloak_lb_ip: # Sunbird Application name and framework name sunbird_default_channel: # Organization channel name which portal will connect to sunbird_app_name: # By default app name will be sunbird # Cloud Account details -sunbird_content_azure_storage_container: # Conatainer store assets/public -## Blob where data analytics pushing content -## Check same variable in DP common.yml -artifacts_container: '' # Azure blob container name to save built artifacts - -## Mail config -mail_server_host: -mail_server_username: "" -alerts_mailing_list : "" # Comma separated mail list for Alerts; eg: user1@mail.com, user2@mail.com -sunbird_mail_server_from_email: # Email ID that should be as from address in mails -sunbird_env_logo_url: # put public url for logo, this logo url will be used in email sending. - -########################### Release-2.9.0 variables ####################################### -# public storage account with content conatiner. -sunbird_azure_public_storage_account_name: -sunbird_private_storage_account_name: -# Used to store the private contents of the storage account. -sunbird_azure_private_storage_account_name: - -# used to store backups for or application DB's -sunbird_azure_management_storage_account_name: - -# This account need to be private to store jenkins build artifacts which will be used commonly between environments. -sunbird_azure_artifact_storage_account_name: - -# Certs related vars -certs_badge_name: "" # Course Completion Certificate Name e.g value is "Course Completion Certificate" -certs_badge_description: "" # Descripton of course Completion e.g value is "Successfully completed course on Sunbird" -certs_badge_image: "" # Image of the certs badge e.g value is "sunbird" -certs_badge_root_org_id: "" # Root org ID for which the certs will be created e.g value is "0124229474659643111" -certs_badge_issuer_name: "" # The issuer of the certs name e.g value is "Government of karnataka" -certs_badge_issuer_url: "" # Issuer organisation official URL e.g value is "https://testdomain.in" -cert_service_cloud_storage_type: azure +sunbird_azure_public_storage_account_name: # public storage account with content conatiner. +sunbird_content_azure_storage_container: # where cntent is stored, it has to be created in pubic storage account, its valuse should be same as azure_public_container variable in kp/common.yml +sunbird_private_storage_account_name: ## Used to store the private contents of the storage account. +sunbird_azure_private_storage_account_name: +sunbird_azure_management_storage_account_name: # used to store backups for or application DB's +sunbird_azure_artifact_storage_account_name: # This account need to be private to store jenkins build artifacts which will be used commonly between environments. +artifacts_container: '' # Azure blob container name to save built artifacts, default it can be artifacts #### Content-service #### environment_id: # value as to be as Knowledgeplatfom/common.yml environment_id -graph_passport_key: "{{core_vault_graph_passport_key}}" - +graph_passport_key: "{{core_vault_graph_passport_key}}" # Kubernetes variables -namespace: dev -imagepullsecrets: devregistrysecret +namespace: "{{ env }}" +imagepullsecrets: "{{ env }}registrysecret" # this willl be prepended to your image # for example, if you give # dockerhub: sunbird @@ -74,26 +48,50 @@ sunbird_portal_player_cdn_enabled: false # Ip of nginx private ingress # Give Ip Address with which the private ingress should be created # For safety reason, give ip address from bottom range of cidr -# for ex: if cidr is 11.2.1.0/24 -private_ingressgateway_ip: 11.2.1.220 +# for ex: if cidr is 11.2.1.0/24 +private_ingressgateway_ip: 11.2.1.220 storage_class_name: "" -# Ip Address of the keycloak without http -# eg: 11.2.1.10 -keycloak_lb_ip: +private_ingress_custom_annotations: true + +default_org_hash_id: "" +dataexhaust_super_admin_channel: sunbird -# Enable following if you're using kubernetes - -## sunbird_lms_base_url: "http://{{private_ingressgateway_ip}}/api" ### keycloak env variable -## sunbird_user_service_base_url: "http://{{private_ingressgateway_ip}}/learner" #### keycloak env variable -## __lms_host__: "http://{{private_ingressgateway_ip}}/learner" ### yarn job -## sunbird_content_service_api_base_url: "http://{{private_ingressgateway_ip}}/content" -## sunbird_search_service_api_base_url: "http://{{private_ingressgateway_ip}}/search" -## sunbird_user_service_api_base_url: "http://{{private_ingressgateway_ip}}/learner" -## kibana_service: kibana.logging.svc.cluster.local:5601 +postgres: + db_url: "{{ groups['postgres'][0] }}" + db_username: analytics + db_name: analytics + db_password: "{{core_vault_dp_pgdb_password}}" + db_table_name: "{{env}}_consumer_channel_mapping" + db_port: 5432 + db_admin_user: postgres + db_admin_password: "{{core_vault_postgres_password}}" +sunbird_google_captcha_site_key: +google_captcha_private_key: +# Admin util keys +adminutil__access_keyprefix: "accessv1_key" +adminutil__access_keystart: 1 +adminutil__access_keycount: 10 + + +######################### Optional ################### +## Mail config +mail_server_host: +mail_server_username: "" +alerts_mailing_list : "" # Comma separated mail list for Alerts; eg: user1@mail.com, user2@mail.com +sunbird_mail_server_from_email: # Email ID that should be as from address in mails +sunbird_env_logo_url: # put public url for logo, this logo url will be used in email sending. +# Certs related vars +certs_badge_name: "" # Course Completion Certificate Name e.g value is "Course Completion Certificate" +certs_badge_description: "" # Descripton of course Completion e.g value is "Successfully completed course on Sunbird" +certs_badge_image: "" # Image of the certs badge e.g value is "sunbird" +certs_badge_root_org_id: "" # Root org ID for which the certs will be created e.g value is "0124229474659643111" +certs_badge_issuer_name: "" # The issuer of the certs name e.g value is "Government of karnataka" +certs_badge_issuer_url: "" # Issuer organisation official URL e.g value is "https://testdomain.in" +cert_service_cloud_storage_type: azure diff --git a/private_repo/ansible/inventory/dev/Core/hosts b/private_repo/ansible/inventory/dev/Core/hosts index 3fed5ea83e..01b8aff5e7 100644 --- a/private_repo/ansible/inventory/dev/Core/hosts +++ b/private_repo/ansible/inventory/dev/Core/hosts @@ -1,70 +1,20 @@ -# Alert manager nodes which should be clustered -# This values should be one of any manager node, if you've multinode cluster -[alert-manager:children] -# By default this value can be swarm-manager-1 or 2 or n; but for a single -# cluster it should be one value. -# If you have multiple cluster you can list all ips below one by one -swarm-manager-1 -[swarm-manager-1] -18.0.0.15 swarm_master=true - -# This host will make sure prometheus for all stateful services -# will run on a single node, as it has storage dependancy -# By default this host is same as docker swarm prometheus -[swarm-agent-for-prometheus-stateful:children] -swarm-agent-for-prometheus - -[swarm-manager:children] -swarm-manager-1 - -[swarm-node-1] -11.3.0.27 - -[swarm-worker:children] -swarm-node-1 [keycloak-1] -18.0.0.9 +18.3.1.6 [keycloak:children] keycloak-1 [log-es-2] -18.0.0.15 es_instance_name=log-es-2 node_name=log-es-2 es_etc_node_master=true es_etc_node_data=true +18.3.1.6 es_instance_name=log-es-2 node_name=log-es-2 es_etc_node_master=true es_etc_node_data=true [log-es:children] log-es-2 -[swarm-agent-for-prometheus-1] -18.0.0.15 - -[swarm-agent-for-prometheus:children] -swarm-agent-for-prometheus-1 - -[swarm-agent-for-prometheus-stateful:children] -swarm-agent-for-prometheus - -[swarm-dashboard-1] -18.0.0.15 - -[swarm-dashboard:children] -swarm-dashboard-1 - -[swarm-agent-dashboard-1] -18.0.0.15 - -[swarm-agent-dashboard:children] -swarm-agent-dashboard-1 - -[alertmanager_stateful:children] -swarm-agent-dashboard - -[swarm-agent-for-alertmanager-1] -18.0.0.15 [es-1] -18.0.0.9 es_instance_name=es-1 es_etc_node_master=true es_etc_node_data=true +18.3.0.4 es_instance_name=es-1 es_etc_node_master=true es_etc_node_data=true [es-backup:children] es-1 @@ -76,19 +26,22 @@ log-es-2 es-1 [cassandra-1] -18.0.0.9 +18.3.0.4 [cassandra:children] cassandra-1 [postgresql-master-1] -18.0.0.9 +18.3.0.4 [postgresql-master:children] postgresql-master-1 [postgresql-slave-1] -18.0.0.9 +18.3.0.4 + +[swarm-manager] +0.0.0.0 #### keep as it is [postgresql-slave:children] postgresql-slave-1 @@ -98,22 +51,28 @@ postgresql-slave postgresql-master [kafka-1] -18.0.0.13 kafka_id=1 +18.3.1.5 kafka_id=1 [processing-cluster-kafka] -18.0.0.13 +18.3.1.5 [kafka:children] kafka-1 [processing-cluster-zookeepers] -18.0.0.50 # Zookeeper IP of processing cluster in Data pipeline +18.3.1.5 # Zookeeper IP of processing cluster in Data pipeline + +[ingestion-cluster-kafka] +18.3.0.5 [zookeeper:children] processing-cluster-zookeepers [lp-redis] -18.0.0.51 # Redis master IP of Knowledge platform +18.3.1.5 # Redis master IP of Knowledge platform + +[dp-redis] +18.3.1.5 [lp-redis-ps:children] lp-redis @@ -125,43 +84,36 @@ lp-redis-ps lp-redis [learning-neo4j-node1] -15.0.2.9 # Neo4j ip of Knowledge platform +18.3.0.4 # Neo4j ip of Knowledge platform [lp-cassandra] -18.0.0.9 # cassandra ip of Knowledge platform +18.3.0.4 # cassandra ip of Knowledge platform [dp-cassandra] -18.0.0.9 # cassandra ip of Datapipeline +18.3.0.4 # cassandra ip of Datapipeline [local] -localhost +localhost ansible_connection=local [raw-broker] #Druid Broker IP localhost -[swarm-agent-for-alertmanager:children] -swarm-agent-for-alertmanager-1 - [kong-api] localhost -[swarm-bootstrap-manager:children] -swarm-manager - -[swarm-nodes:children] -swarm-manager -swarm-bootstrap-manager -swarm-agent-for-prometheus -swarm-agent-for-alertmanager +[composite-search-cluster] +18.3.0.4 -[node-exporter:children] -swarm-manager +[yarn-master] +18.3.1.8 -[log-forwarder:children] -swarm-manager +[yarn-slave] +18.3.1.8 #yarn master +18.3.1.9 -[composite-search-cluster] -15.0.2.6 +[yarn:children] +yarn-master +yarn-slave [core:children] es @@ -169,23 +121,21 @@ log-es cassandra postgresql-master postgresql-slave -swarm-nodes -swarm-manager kafka keycloak -swarm-dashboard -swarm-agent-dashboard composite-search-cluster +processing-cluster-kafka +yarn [env:children] core local -[log-forwarder:children] -swarm-manager - [dp-druid-broker] -11.3.0.3 # Druid broker IP for druid proxy api +0.0.0.0 # Druid broker IP for druid proxy api + +[raw-coordinator] +0.0.0.0 [all:vars] # If you want to tag your prometheus data with unique cluster ids diff --git a/private_repo/ansible/inventory/dev/Core/secrets.yml b/private_repo/ansible/inventory/dev/Core/secrets.yml index f9f5043bd7..2abf23bba9 100644 --- a/private_repo/ansible/inventory/dev/Core/secrets.yml +++ b/private_repo/ansible/inventory/dev/Core/secrets.yml @@ -1,17 +1,19 @@ # !! Might deprecate -core_vault_sunbird_ekstep_api_key: +core_vault_sunbird_ekstep_api_key: #Take the jwt token api-admin from Jenkins job OnboardConsumers core_vault_sunbird_encryption_key: #Random hash to encrypt data -core_vault_kong__test_jwt: +core_vault_kong__test_jwt: #Take the jwt token api-admin from Jenkins job OnboardConsumers ############# Core ####################### ####### Secrets ####### core_vault_sunbird_trampoline_secret: # some 8 digit password for keycloak sso user -core_vault_postgres_password: +core_vault_postgres_password: #update same password in dp secrets dp_vault_pgdb_admin_password variable +core_vault_dp_pgdb_password: #update same password in dp secrets dp_vault_pgdb_password variable core_vault_sunbird_azure_storage_key : core_vault_docker_registry_url: "https://index.docker.io/v1" # use this value if using dockerhub core_vault_docker_registry_user: core_vault_docker_registry_password: + core_vault_proxy_site_key: |+ core_vault_proxy_site_crt: |+ @@ -21,7 +23,7 @@ core_vault_ansible_vault_password: ################### DONT FILL THESE VARIABLES INITIALLY ################### core_vault_sunbird_sso_publickey: # Get After Keycloak Deployment -core_vault_sunbird_api_auth_token: #Take the jwt token api-management-test-user from Jenkins job OnboardConsumers and update core_vault_sunbird_api_auth_token if using KP and DP along with core +core_vault_sunbird_api_auth_token: #Take the jwt token api-admin from Jenkins job OnboardConsumers and update core_vault_sunbird_api_auth_token if using KP and DP along with core core_vault_sunbird_keycloak_user_federation_provider_id: # Get after keycloak deployment ##### Release-2.3.0 ################### @@ -32,11 +34,19 @@ core_vault_enc_master_pass: test # encryption password for the keys core_vault_graph_passport_key: #copy value from variable lp_vault_graph_passport_key from KnowledgePlatform/Secrets.yml ##### release-2.7 vars ##### +## How to generate sas token +# Run the below command in shell +# +# date +'%Y-%m-%dT%H:%m:%SZ' -d '+1 year' +# sas_token=?`az storage account generate-sas --account-name "{{ azure_plugin_storage_account_name }}" --account-key "{{ azure_plugin_storage_account_key }}" --expiry $sas_expire_time --https-only --permissions acdlpruw --resource-types sco --services bfqt | xargs` +# +## + # generate a sas for the blob for entire storage accout with write and read access artifact_azure_account_sas: # generate a sas for the blob for entire storage accout with write and read access. - -############################ +sunbird_public_storage_account_sas: # public storage account with content conatiner. sunbird_azure_public_storage_account_key: +sunbird_public_storage_account_key: # Used to store the private contents of the storage account. sunbird_azure_private_storage_account_key: @@ -50,8 +60,7 @@ sunbird_azure_artifact_storage_account_key: ### release-2.8.0 ##### core_vault_sunbird_sso_client_secret: #get the lms client secret from keycloak - - +adminutil_refresh_token_public_key_kid: "" #get after eycloak deployment using lms client diff --git a/private_repo/ansible/inventory/dev/DataPipeline/common.yml b/private_repo/ansible/inventory/dev/DataPipeline/common.yml index 8d45b41bd9..49c7fbc623 100644 --- a/private_repo/ansible/inventory/dev/DataPipeline/common.yml +++ b/private_repo/ansible/inventory/dev/DataPipeline/common.yml @@ -10,9 +10,10 @@ bootstrap_key_path: secor_azure_container_name: "" secor_alerts_slack_channel: "" -#dp_azure_account_name: # azure storage account name sunbird_private_storage_account_name: # Azure account name for analytics api contents sunbird_artifact_storage_account_name: # Azure stroage account name used for artifact upload +sunbird_public_storage_account_name: + default_org_hash_id: "" # channel id of the organization # Data products monitoring web hooks @@ -42,6 +43,30 @@ ingestion_kafka_topics: replication_factor: 1 # Geo location related var maxmind_db_license_key: -swarm_manager_lb_ip: # Update the swarm lb ip if you dont have lb then update the swarm server ip -#report_azure_account_name: # Update the azure account name -#report_azure_storage_secret: "{{ dp_vault_reports_azure_key }}" + +postgres: + db_url: "{{ groups['postgres'][0] }}" + db_username: analytics + db_name: analytics + db_password: "{{dp_vault_pgdb_password}}" + db_table_name: "{{env}}_consumer_channel_mapping" + db_port: 5432 + db_admin_user: postgres + db_admin_password: "{{dp_vault_pgdb_admin_password}}" + +sunbird_private_azure_report_container_name: 'reports' +sunbird_public_azure_report_container_name: 'public-reports' +sunbird_druid_storage_account_name: + +dialservice_ip: ### dial vm ip +dialcode_host: "http://{{dialservice_ip}}:9001" +dialcode_endpoint: "dialcode/v3/read/" + +# docker hub details +dockerhub: +docker_registry: ## user +imagepullsecrets: {{env}}-registry-secret + +kubeconfig_path: /var/lib/jenkins/secrets/k8s.yaml +private_ingressgateway_ip: + diff --git a/private_repo/ansible/inventory/dev/DataPipeline/hosts b/private_repo/ansible/inventory/dev/DataPipeline/hosts index ab44b9f41c..3d26ac9a84 100644 --- a/private_repo/ansible/inventory/dev/DataPipeline/hosts +++ b/private_repo/ansible/inventory/dev/DataPipeline/hosts @@ -1,56 +1,52 @@ ################ Core ######################### -[swarm-bootstrap-manager] -15.0.1.4 [core-cassandra] -15.0.0.7 +18.3.0.4 [core-es-1] -15.0.0.50 # This should be elasticsearch master IP of Core +18.3.0.4 # This should be elasticsearch master IP of Core [core-es:children] core-es-1 [log-es-1] -15.0.0.1 +18.3.16 [log-es:children] log-es-1 ################# LP ########################## -[search] -15.0.3.5 [learning] -15.0.3.11 +18.3.1.5 [composite-search-cluster] -15.0.2.6 +18.3.0.4 [lp-cassandra] -15.0.2.7 +18.3.0.4 [dp-cassandra] -15.0.2.7 +18.3.0.4 [lp-redis] -15.0.3.11 +18.3.1.5 ################# LPA ######################### [analytics-api] -15.0.3.6 +18.3.1.7 [secor] -15.0.3.15 +18.3.1.7 [spark] -15.0.3.12 +18.3.1.7 [cassandra] -15.0.2.7 +18.3.0.4 [postgres] -15.0.3.17 +18.3.0.4 [lpa:children] spark @@ -60,49 +56,73 @@ cassandra ########################### DP ############################# [kafka-indexer] -15.0.3.8 +18.3.1.7 [influxdb] -15.0.3.6 +18.3.0.4 [redis] -15.0.3.5 +18.3.1.5 [redisall:children] redis [processing-cluster-kafka] -15.0.3.8 -15.0.3.7 +18.3.1.5 [processing-cluster-zookeepers] -15.0.3.8 -15.0.3.7 +18.3.1.5 -[telemetry-search-cluster1] -15.0.2.6 - -[telemetry-search-cluster:children] -telemetry-search-cluster1 [zookeeper:children] processing-cluster-zookeepers -[telemetry-search-cluster-kibana-node:children] -telemetry-search-cluster1 - [yarn-master] -15.0.3.10 +18.3.1.8 [yarn-slave] -15.0.3.13 +18.3.1.9 [yarn:children] yarn-master yarn-slave [local] -localhost +localhost ansible_connection=local + +[druid-postgres] +18.3.1.10 + +[raw-coordinator] +18.3.1.10 + +[raw-overlord] +18.3.1.10 + +[raw-broker] +18.3.1.10 + +[raw-historical] +18.3.1.10 + +[raw-middlemanager] +18.3.1.10 + +[raw-graphite] +18.3.1.10 + +[raw-zookeeper] +18.3.1.10 + + +[druid-raw:children] +raw-coordinator +raw-overlord +raw-broker +raw-historical +raw-middlemanager +raw-graphite +raw-zookeeper [broker] 0.0.0.0 #### its required for data products deploy @@ -110,21 +130,23 @@ localhost [coordinator] 0.0.0.0 #### its required for analytics deploy +[telemetry-search-cluster-kibana-node] +0.0.0.0 + [dp:children] local processing-cluster-kafka processing-cluster-zookeepers zookeeper postgres -telemetry-search-cluster -telemetry-search-cluster-kibana-node yarn kafka-indexer influxdb lpa +druid-raw +druid-postgres [env:children] -swarm-bootstrap-manager dp [env:vars] @@ -132,34 +154,6 @@ ansible_ssh_user=deployer ansible_ssh_private_key_file=/var/lib/jenkins/secrets/deployer_ssh_key -########################### Monitoring ########################## -[yarn-ps] -15.0.3.10 -15.0.3.13 - -[logstash-ps] -15.0.3.8 - -[es-ps] -15.0.2.6 - -[process-exporter:children] -yarn-ps -logstash-ps -es-ps -secor-ps -analytics-ps -kafka-ps - -[secor-ps] -15.0.3.15 - -[analytics-ps] -15.0.3.6 - -[kafka-ps] -15.0.3.8 -15.0.3.7 [all:vars] ansible_ssh_user=deployer diff --git a/private_repo/ansible/inventory/dev/DataPipeline/secrets.yml b/private_repo/ansible/inventory/dev/DataPipeline/secrets.yml index 4df9e341f5..43e42ed4c8 100644 --- a/private_repo/ansible/inventory/dev/DataPipeline/secrets.yml +++ b/private_repo/ansible/inventory/dev/DataPipeline/secrets.yml @@ -1,15 +1,24 @@ -############## Admin ###################### - ############## DP ###################### -dp_vault_artifacts_container: +dp_vault_artifacts_container: artifacts dp_search_service_authorization_token: dp_vault_pgdb_password: dp_vault_pgdb_admin_password: -dp_vault_data_exhaust_token: - +dp_vault_druid_postgress_pass: +dp_vault_data_exhaust_token: +dp_play_http_secret_key: "" ###random text # Storage Account credentials for Knowledge Platform sunbird_management_storage_account_key: -sunbird_artifact_storage_account_key: -sunbird_artifact_storage_account_sas: -sunbird_private_storage_account_key: +sunbird_artifact_storage_account_key: +sunbird_artifact_storage_account_sas: +sunbird_private_storage_account_key: +sunbird_public_storage_account_key: +sunbird_druid_storage_account_key: + +core_vault_docker_registry_url: +core_vault_docker_registry_user: +core_vault_docker_registry_password: + +dp_vault_dialcode_api_auth_key: ### copy value form cariable core_vault_sunbird_api_auth_token from core/secrets.yml +sunbird_api_auth_token: ### ### copy value form cariable core_vault_sunbird_api_auth_token from core/secrets.yml +core_vault_sunbird_encryption_key: ## copy from core secrets.yml diff --git a/private_repo/ansible/inventory/dev/KnowledgePlatform/common.yml b/private_repo/ansible/inventory/dev/KnowledgePlatform/common.yml index 7ad3131ded..294d5efc1e 100644 --- a/private_repo/ansible/inventory/dev/KnowledgePlatform/common.yml +++ b/private_repo/ansible/inventory/dev/KnowledgePlatform/common.yml @@ -30,20 +30,29 @@ sunbird_artifact_storage_account_name: ########################################################## -swarm_manager_lb_ip: # Enter the LB IP in case you are using a swarm manager load balancer OR Swarm manager's IP if not using a load balancer - # Enable following if you're using kubernetes # Ip of nginx private ingress # Give Ip Address with which the private ingress should be created # For safety reason, give ip address from bottom range of cidr # for ex: if cidr is 11.2.1.0/24 -## private_ingressgateway_ip: 11.2.1.220 +private_ingressgateway_ip: 11.2.1.220 # -## learner_service_base_url: "http://{{private_ingressgateway_ip}}/learner" ## lp samza jobs -## cert_service_base_url: "http://{{private_ingressgateway_ip}}/cert" ### lp samza jobs -## kp_content_service_base_url: "http://{{private_ingressgateway_ip}}/content" -## cert_reg_service_base_url: "http://{{private_ingressgateway_ip}}/certreg" -## kp_search_service_base_url: "http://{{private_ingressgateway_ip}}/search" -## kp_print_service_base_url: "http://{{private_ingressgateway_ip}}/print" -## lms_service_base_url: "http://{{private_ingressgateway_ip}}/lms" +learner_service_base_url: "http://{{private_ingressgateway_ip}}/learner" ## lp samza jobs +cert_service_base_url: "http://{{private_ingressgateway_ip}}/cert" ### lp samza jobs +kp_content_service_base_url: "http://{{private_ingressgateway_ip}}/content" +cert_reg_service_base_url: "http://{{private_ingressgateway_ip}}/certreg" +kp_search_service_base_url: "http://{{private_ingressgateway_ip}}/search" +kp_print_service_base_url: "http://{{private_ingressgateway_ip}}/print" +lms_service_base_url: "http://{{private_ingressgateway_ip}}/lms" + + +kubeconfig_path: /var/lib/jenkins/secrets/k8s.yaml +dockerhub: +docker_registry: #### docker hub user +sunbird_private_storage_account_name: + +learningservice_ip: ### learning vm or load balancer ip +dialservice_ip: ## dial service vm or loadbalancer ip +dial_service_search_url: "http://{{dialservice_ip}}:9001/dialcode/v3/search" +dial_service_generate_url: "http://{{dialservice_ip}}:9001/dialcode/v3/generate" diff --git a/private_repo/ansible/inventory/dev/KnowledgePlatform/hosts b/private_repo/ansible/inventory/dev/KnowledgePlatform/hosts index 0fc235f90c..b1c6a8e94c 100644 --- a/private_repo/ansible/inventory/dev/KnowledgePlatform/hosts +++ b/private_repo/ansible/inventory/dev/KnowledgePlatform/hosts @@ -1,28 +1,31 @@ ######################## LP ######################## [learning1] -15.0.3.11 - -[swarm-bootstrap-manager] -15.0.1.4 +18.3.1.5 [learningall:children] learning1 -[search1] -15.0.3.5 - -[searchall:children] -search1 - [redis1] -15.0.3.11 +18.3.1.5 [redisall:children] redis1 +[dial1] +18.3.1.5 + +[dial:children] +dial1 + +[dp-redis] +18.3.1.5 + +[lms-redis] +18.3.1.5 + [learning-neo4j-node1] -15.0.2.9 +18.3.0.4 # Enable following host, if you're have neo4j cluster and an arbiter for election # [arbiter] @@ -32,42 +35,42 @@ redis1 learning-neo4j-node1 [cassandra-node-1] # The old cassandra group has been renamed to cassandra-node-* to accomadate for clusters -15.0.2.7 +18.3.0.4 [cassandra:children] cassandra-node-1 [dp-cassandra] -15.0.2.7 +18.3.0.4 [core-cassandra] -15.0.2.5 +18.3.0.4 [core-es-1] -18.0.0.9 # This should be elasticsearch master IP of Core +18.3.0.4 # This should be elasticsearch master IP of Core [core-es:children] core-es-1 [composite-search-cluster] -15.0.2.6 +18.3.0.4 [yarn-master] -15.0.3.10 +18.3.1.8 [yarn-slave] -15.0.3.10 #yarn master -15.0.3.13 +18.3.1.8 #yarn master +18.3.1.9 [yarn:children] yarn-master yarn-slave [processing-cluster-kafka] -15.0.3.14 +18.3.1.5 [processing-cluster-zookeepers] -15.0.3.14 +18.3.1.5 [zookeeper:children] processing-cluster-zookeepers @@ -77,7 +80,6 @@ localhost ansible_connection=local [lp:children] learningall -searchall learning-neo4j-cluster cassandra redisall @@ -89,22 +91,28 @@ local [env:children] lp -swarm-bootstrap-manager [env:vars] ansible_ssh_user=deployer ansible_ssh_private_key_file=/var/lib/jenkins/secrets/deployer_ssh_key +[es7] +0.0.0.0 + +[mlworkbench] +0.0.0.0 + + ####################### Monitoring ######################## [logstash-ps] -15.0.3.11 +18.3.1.5 [process-exporter:children] logstash-ps cassandra-ps [cassandra-ps] -15.0.2.7 +18.3.0.4 [process-exporter:vars] ansible_ssh_user=deployer diff --git a/private_repo/ansible/inventory/dev/KnowledgePlatform/secrets.yml b/private_repo/ansible/inventory/dev/KnowledgePlatform/secrets.yml index b92f6640bd..ea2dcac91d 100644 --- a/private_repo/ansible/inventory/dev/KnowledgePlatform/secrets.yml +++ b/private_repo/ansible/inventory/dev/KnowledgePlatform/secrets.yml @@ -5,7 +5,12 @@ lp_vault_youtube_api_key: lp_vault_dial_service_authorization: # Storage Account credentials for Knowledge Platform +sunbird_private_storage_account_key: sunbird_public_storage_account_key: sunbird_management_storage_account_key: sunbird_artifact_storage_account_key: sunbird_artifact_storage_account_sas: + +core_vault_docker_registry_url: +core_vault_docker_registry_user: +core_vault_docker_registry_password: diff --git a/private_repo/ansible/inventory/dev/Kubernetes/common.yml b/private_repo/ansible/inventory/dev/Kubernetes/common.yml new file mode 120000 index 0000000000..1465b46671 --- /dev/null +++ b/private_repo/ansible/inventory/dev/Kubernetes/common.yml @@ -0,0 +1 @@ +../Core/common.yml \ No newline at end of file diff --git a/private_repo/ansible/inventory/dev/Kubernetes/hosts b/private_repo/ansible/inventory/dev/Kubernetes/hosts new file mode 120000 index 0000000000..fb74d690d4 --- /dev/null +++ b/private_repo/ansible/inventory/dev/Kubernetes/hosts @@ -0,0 +1 @@ +../Core/hosts \ No newline at end of file diff --git a/private_repo/ansible/inventory/dev/Kubernetes/secrets.yml b/private_repo/ansible/inventory/dev/Kubernetes/secrets.yml new file mode 120000 index 0000000000..6bbc077aab --- /dev/null +++ b/private_repo/ansible/inventory/dev/Kubernetes/secrets.yml @@ -0,0 +1 @@ +../Core/secrets.yml \ No newline at end of file