diff options
| author | ckonstanski <kostcarl@isu.edu> | 2026-07-30 18:17:14 -0600 |
|---|---|---|
| committer | ckonstanski <kostcarl@isu.edu> | 2026-07-30 18:17:14 -0600 |
| commit | 640ff61422bc0ee3966941b93d9889ddbbd38d77 (patch) | |
| tree | abf1c08f5d38ee53ec8b29dc4f425722517505e6 /sql | |
| parent | 22dae02a86c1fce71091bfa5289cf99abba1b217 (diff) | |
Diffstat (limited to 'sql')
| -rw-r--r-- | sql/caas/adhoc/migrate-mgmt-network-fields.sql | 40 | ||||
| -rw-r--r-- | sql/caas/adhoc/mtce-nominal.sql | 72 | ||||
| -rw-r--r-- | sql/caas/adhoc/wclab-dracut.sql | 159 | ||||
| -rw-r--r-- | sql/caas/adhoc/wclab-nominal.sql | 158 | ||||
| -rw-r--r-- | sql/schema/create-database.sql | 5 | ||||
| -rw-r--r-- | sql/schema/faredge.sql.example | 27 | ||||
| -rw-r--r-- | sql/schema/orchestration.testdata | 4 | ||||
| -rw-r--r-- | sql/schema/orchestration_test.sql | 27 |
8 files changed, 465 insertions, 27 deletions
diff --git a/sql/caas/adhoc/migrate-mgmt-network-fields.sql b/sql/caas/adhoc/migrate-mgmt-network-fields.sql new file mode 100644 index 0000000..f2559a9 --- /dev/null +++ b/sql/caas/adhoc/migrate-mgmt-network-fields.sql @@ -0,0 +1,40 @@ +do $$ +declare + rec caas_cluster%rowtype; + l_mgmt_subnet character varying; + l_mgmt_default_gateway character varying; +begin + for rec in + select id, + cluster_name, + oam_vip_hostname, + oam_vip_address, + mgmt_address_range_start, + mgmt_address_range_end, + csr_id, + location_id, + namespace_id, + parent_cluster_id, + sap_clli_id, + vlan_id, + is_central_controller, + mgmt_default_gateway, + mgmt_subnet + from caas_cluster + where is_central_controller = 0 + loop + select mgmt_subnet into l_mgmt_subnet + from caas_cellsiterouter + where id = rec.csr_id; + + select mgmt_default_gateway into l_mgmt_default_gateway + from caas_cellsiterouter + where id = rec.csr_id; + + update caas_cluster + set mgmt_subnet = l_mgmt_subnet, + mgmt_default_gateway = l_mgmt_default_gateway + where id = rec.id; + end loop; +end; +$$ language plpgsql; diff --git a/sql/caas/adhoc/mtce-nominal.sql b/sql/caas/adhoc/mtce-nominal.sql new file mode 100644 index 0000000..d1d2137 --- /dev/null +++ b/sql/caas/adhoc/mtce-nominal.sql @@ -0,0 +1,72 @@ +do $$ +declare + csr_name_central character varying := 'WELKTXEF-ROUTER-000004'; + cluster_name_central character varying := 'welktxef-c000004-001'; + ilo_hostname_central character varying := 'welktxef-000004-rh-p30e910-001'; + oam_vip_hostname_central character varying := 'welktxef-000004-nh-pe1e910-001'; + ilo_gateway_address_central character varying := '2607:f160:10:9051:ce:23::'; + ilo_subnet_central character varying := '2607:f160:10:9051::'; + oam_subnet_central character varying := '2607:f160:10:9051::'; + oam_gateway_address_central character varying := ilo_gateway_address_central; + oam_floating_address_central character varying := '2607:f160:10:9051:ce:290:0:1000'; + mgmt_start_address_central character varying := '2607:f160:10:9050:ce:290::'; + mgmt_end_address_central character varying := '2607:f160:10:9050:ce:290:0:f'; + mgmt_subnet_central character varying := '2607:f160:10:9050::'; + mgmt_gateway_address_central character varying := '2607:f160:10:9050:ce:23::'; + + oam_hostname_central character varying := 'welktxef-000004-nh-pe2e910-001'; + ilo_host_address_central character varying := '2607:f160:10:9221:ce:fe0:0:800b'; + oam_host_address_central character varying := '2607:f160:10:9051:ce:290:0:1001'; +begin + update caas_cellsiterouter + set ilo_subnet = ilo_subnet_central + where csr_hostname = csr_name_central; + + update caas_cellsiterouter + set ilo_default_gateway = ilo_gateway_address_central + where csr_hostname = csr_name_central; + + update caas_cellsiterouter + set oam_subnet = oam_subnet_central + where csr_hostname = csr_name_central; + + update caas_cellsiterouter + set oam_default_gateway = oam_gateway_address_central + where csr_hostname = csr_name_central; + + update caas_cellsiterouter + set mgmt_subnet = mgmt_subnet_central + where csr_hostname = csr_name_central; + + update caas_cellsiterouter + set mgmt_default_gateway = mgmt_gateway_address_central + where csr_hostname = csr_name_central; + + update caas_cluster + set oam_vip_hostname = oam_vip_hostname_central + where cluster_name = cluster_name_central; + + update caas_cluster + set oam_vip_address = oam_floating_address_central + where cluster_name = cluster_name_central; + + update caas_cluster + set mgmt_address_range_start = mgmt_start_address_central + where cluster_name = cluster_name_central; + + update caas_cluster + set mgmt_address_range_end = mgmt_end_address_central + where cluster_name = cluster_name_central; + + update caas_server + set oam_hostname = oam_hostname_central + where ilo_hostname = ilo_hostname_central; + + update caas_server + set oam_host_address = oam_host_address_central + where ilo_hostname = ilo_hostname_central; + + update caas_server + set ilo_host_address = ilo_host_address_central + where ilo_hostname = ilo_hostname_central; +end $$; diff --git a/sql/caas/adhoc/wclab-dracut.sql b/sql/caas/adhoc/wclab-dracut.sql new file mode 100644 index 0000000..579fb27 --- /dev/null +++ b/sql/caas/adhoc/wclab-dracut.sql @@ -0,0 +1,159 @@ +-- oam amd mgmt subnets are swapped to create the dracut condition. +do $$ +declare + csr_name_central character varying := 'ye-olde-csr-hostname-1'; + cluster_name_central character varying := 'walnutcr-d0000000-001'; + oam_vip_hostname_central character varying := 'walnutcr-0000000-nh-pe1e910-001'; + ilo_gateway_address_central character varying := 'fd00:4888:2000:7f3:528:23::'; + ilo_subnet_central character varying := 'fd00:4888:2000:7f3:528:'; + oam_subnet_central character varying := 'fd00:4888:2000:07fd::'; + oam_floating_address_central character varying := 'fd00:4888:2000:07fd::290'; + mgmt_start_address_central character varying := 'fd00:4888:2000:1100::a'; + mgmt_end_address_central character varying := 'fd00:4888:2000:1100::2a'; + mgmt_subnet_central character varying := 'fd00:4888:2000:1100::'; + mgmt_gateway_address_central character varying := 'fd00:4888:2000:1100:524:23::'; + csr_name_remote character varying := 'ye-olde-csr-hostname-2'; + cluster_name_remote character varying := 'walnutcr-d9999999-001'; + ilo_subnet_remote character varying := 'fd00:4888:2000:1205::'; + ilo_gateway_address_remote character varying := 'fd00:4888:2000:1205::1'; + oam_floating_address_remote character varying := 'fd00:4888:2000:1209::a'; + oam_gateway_address_remote character varying := 'fd00:4888:2000:1209::1'; + oam_subnet_remote character varying := 'fd00:4888:2000:1209::'; + mgmt_start_address_remote character varying := 'fd00:4888:2000:120a::10'; + mgmt_end_address_remote character varying := 'fd00:4888:2000:120a::1f'; + mgmt_gateway_address_remote character varying := 'fd00:4888:2000:120a::1'; + mgmt_subnet_remote character varying := 'fd00:4888:2000:120a::'; + + oam_hostname_central_0 character varying := 'walnutcr-0000000-nh-pe2e910-001'; + ilo_host_address_central_0 character varying := 'fd00:4888:2000:7f3:528:ff2:0:8'; + oam_host_address_central_0 character varying := 'fd00:4888:2000:07fd::292'; + + oam_hostname_central_1 character varying := 'walnutcr-0000000-nh-pe2e910-002'; + ilo_host_address_central_1 character varying := 'fd00:4888:2000:7f3:528:ff2:0:7'; + oam_host_address_central_1 character varying := 'fd00:4888:2000:07fd::291'; + + oam_hostname_central_2 character varying := 'walnutcr-0000000-nh-pe2e910-003'; + ilo_host_address_central_2 character varying := 'fd00:4888:2000:7f3:528:ff2:0:9'; + oam_host_address_central_2 character varying := 'fd00:4888:2000:07fd::293'; + + ilo_host_address_remote_0 character varying := 'fd00:4888:2000:1205::26'; + oam_host_address_remote_0 character varying := 'fd00:4888:2000:120a::b'; +begin + update caas_cellsiterouter + set ilo_subnet = ilo_subnet_central + where csr_hostname = csr_name_central; + + update caas_cellsiterouter + set ilo_default_gateway = ilo_gateway_address_central + where csr_hostname = csr_name_central; + + update caas_cellsiterouter + set oam_subnet = oam_subnet_central + where csr_hostname = csr_name_central; + + update caas_cellsiterouter + set oam_subnet = oam_subnet_remote + where csr_hostname = csr_name_remote; + + update caas_cellsiterouter + set oam_default_gateway = oam_gateway_address_remote + where csr_hostname = csr_name_remote; + + update caas_cellsiterouter + set mgmt_subnet = mgmt_subnet_central + where csr_hostname = csr_name_central; + + update caas_cellsiterouter + set mgmt_default_gateway = mgmt_gateway_address_central + where csr_hostname = csr_name_central; + + update caas_cellsiterouter + set mgmt_subnet = mgmt_subnet_remote + where csr_hostname = csr_name_remote; + + update caas_cellsiterouter + set mgmt_default_gateway = mgmt_gateway_address_remote + where csr_hostname = csr_name_remote; + + update caas_cellsiterouter + set ilo_subnet = ilo_subnet_remote + where csr_hostname = csr_name_remote; + + update caas_cellsiterouter + set ilo_default_gateway = ilo_gateway_address_remote + where csr_hostname = csr_name_remote; + + update caas_cluster + set oam_vip_hostname = oam_vip_hostname_central + where cluster_name = cluster_name_central; + + update caas_cluster + set oam_vip_address = oam_floating_address_central + where cluster_name = cluster_name_central; + + update caas_cluster + set mgmt_address_range_start = mgmt_start_address_central + where cluster_name = cluster_name_central; + + update caas_cluster + set mgmt_address_range_end = mgmt_end_address_central + where cluster_name = cluster_name_central; + + update caas_cluster + set oam_vip_address = oam_floating_address_remote + where cluster_name = cluster_name_remote; + + update caas_cluster + set mgmt_address_range_start = mgmt_start_address_remote + where cluster_name = cluster_name_remote; + + update caas_cluster + set mgmt_address_range_end = mgmt_end_address_remote + where cluster_name = cluster_name_remote; + + update caas_server + set oam_hostname = oam_hostname_central_0 + where ilo_host_address = ilo_host_address_central_0; + + update caas_server + set oam_host_address = oam_host_address_remote_0 + where ilo_host_address = ilo_host_address_remote_0; + + update caas_server + set oam_hostname = oam_hostname_central_1 + where ilo_host_address = ilo_host_address_central_1; + + update caas_server + set oam_host_address = oam_host_address_central_1 + where ilo_host_address = ilo_host_address_central_1; + + update caas_server + set oam_hostname = oam_hostname_central_2 + where ilo_host_address = ilo_host_address_central_2; + + update caas_server + set oam_host_address = oam_host_address_central_2 + where ilo_host_address = ilo_host_address_central_2; + + update caas_server + set oam_host_address = oam_host_address_remote_0 + where ilo_host_address = ilo_host_address_remote_0; +end $$; + +/* + +truncate table caas_blade cascade; +truncate table caas_cellsiterouter cascade; +truncate table caas_chassis cascade; +truncate table caas_cluster cascade; +truncate table caas_credential cascade; +truncate table caas_firmwareupgradeschedule cascade; +truncate table caas_location cascade; +truncate table caas_namespace cascade; +truncate table caas_sapclli cascade; +truncate table caas_server cascade; +truncate table caas_vendor cascade; +truncate table caas_vlan cascade; +truncate table caas_wrinstallschedule cascade; + +*/ diff --git a/sql/caas/adhoc/wclab-nominal.sql b/sql/caas/adhoc/wclab-nominal.sql new file mode 100644 index 0000000..0db2f9e --- /dev/null +++ b/sql/caas/adhoc/wclab-nominal.sql @@ -0,0 +1,158 @@ +do $$ +declare + csr_name_central character varying := 'ye-olde-csr-hostname-1'; + cluster_name_central character varying := 'walnutcr-d0000000-001'; + oam_vip_hostname_central character varying := 'walnutcr-0000000-nh-pe1e910-001'; + ilo_gateway_address_central character varying := 'fd00:4888:2000:7f3:528:23::'; + ilo_subnet_central character varying := 'fd00:4888:2000:7f3::'; + oam_subnet_central character varying := 'fd00:4888:2000:07fd::'; + oam_floating_address_central character varying := 'fd00:4888:2000:07fd::290'; + mgmt_start_address_central character varying := 'fd00:4888:2000:1100::a'; + mgmt_end_address_central character varying := 'fd00:4888:2000:1100::2a'; + mgmt_subnet_central character varying := 'fd00:4888:2000:1100::'; + mgmt_gateway_address_central character varying := 'fd00:4888:2000:1100:524:23::'; + csr_name_remote character varying := 'ye-olde-csr-hostname-2'; + cluster_name_remote character varying := 'walnutcr-d9999999-001'; + ilo_subnet_remote character varying := 'fd00:4888:2000:1205::'; + ilo_gateway_address_remote character varying := 'fd00:4888:2000:1205::1'; + oam_floating_address_remote character varying := 'fd00:4888:2000:120a::a'; + oam_gateway_address_remote character varying := 'fd00:4888:2000:120a::1'; + oam_subnet_remote character varying := 'fd00:4888:2000:120a::'; + mgmt_start_address_remote character varying := 'fd00:4888:2000:1209::10'; + mgmt_end_address_remote character varying := 'fd00:4888:2000:1209::1f'; + mgmt_gateway_address_remote character varying := 'fd00:4888:2000:1209::1'; + mgmt_subnet_remote character varying := 'fd00:4888:2000:1209::'; + + oam_hostname_central_0 character varying := 'walnutcr-0000000-nh-pe2e910-001'; + ilo_host_address_central_0 character varying := 'fd00:4888:2000:7f3:528:ff2:0:8'; + oam_host_address_central_0 character varying := 'fd00:4888:2000:07fd::292'; + + oam_hostname_central_1 character varying := 'walnutcr-0000000-nh-pe2e910-002'; + ilo_host_address_central_1 character varying := 'fd00:4888:2000:7f3:528:ff2:0:7'; + oam_host_address_central_1 character varying := 'fd00:4888:2000:07fd::291'; + + oam_hostname_central_2 character varying := 'walnutcr-0000000-nh-pe2e910-003'; + ilo_host_address_central_2 character varying := 'fd00:4888:2000:7f3:528:ff2:0:9'; + oam_host_address_central_2 character varying := 'fd00:4888:2000:07fd::293'; + + ilo_host_address_remote_0 character varying := 'fd00:4888:2000:1205::26'; + oam_host_address_remote_0 character varying := 'fd00:4888:2000:120a::b'; +begin + update caas_cellsiterouter + set ilo_subnet = ilo_subnet_central + where csr_hostname = csr_name_central; + + update caas_cellsiterouter + set ilo_default_gateway = ilo_gateway_address_central + where csr_hostname = csr_name_central; + + update caas_cellsiterouter + set oam_subnet = oam_subnet_central + where csr_hostname = csr_name_central; + + update caas_cellsiterouter + set oam_subnet = oam_subnet_remote + where csr_hostname = csr_name_remote; + + update caas_cellsiterouter + set oam_default_gateway = oam_gateway_address_remote + where csr_hostname = csr_name_remote; + + update caas_cellsiterouter + set mgmt_subnet = mgmt_subnet_central + where csr_hostname = csr_name_central; + + update caas_cellsiterouter + set mgmt_default_gateway = mgmt_gateway_address_central + where csr_hostname = csr_name_central; + + update caas_cellsiterouter + set mgmt_subnet = mgmt_subnet_remote + where csr_hostname = csr_name_remote; + + update caas_cellsiterouter + set mgmt_default_gateway = mgmt_gateway_address_remote + where csr_hostname = csr_name_remote; + + update caas_cellsiterouter + set ilo_subnet = ilo_subnet_remote + where csr_hostname = csr_name_remote; + + update caas_cellsiterouter + set ilo_default_gateway = ilo_gateway_address_remote + where csr_hostname = csr_name_remote; + + update caas_cluster + set oam_vip_hostname = oam_vip_hostname_central + where cluster_name = cluster_name_central; + + update caas_cluster + set oam_vip_address = oam_floating_address_central + where cluster_name = cluster_name_central; + + update caas_cluster + set mgmt_address_range_start = mgmt_start_address_central + where cluster_name = cluster_name_central; + + update caas_cluster + set mgmt_address_range_end = mgmt_end_address_central + where cluster_name = cluster_name_central; + + update caas_cluster + set oam_vip_address = oam_floating_address_remote + where cluster_name = cluster_name_remote; + + update caas_cluster + set mgmt_address_range_start = mgmt_start_address_remote + where cluster_name = cluster_name_remote; + + update caas_cluster + set mgmt_address_range_end = mgmt_end_address_remote + where cluster_name = cluster_name_remote; + + update caas_server + set oam_hostname = oam_hostname_central_0 + where ilo_host_address = ilo_host_address_central_0; + + update caas_server + set oam_host_address = oam_host_address_remote_0 + where ilo_host_address = ilo_host_address_remote_0; + + update caas_server + set oam_hostname = oam_hostname_central_1 + where ilo_host_address = ilo_host_address_central_1; + + update caas_server + set oam_host_address = oam_host_address_central_1 + where ilo_host_address = ilo_host_address_central_1; + + update caas_server + set oam_hostname = oam_hostname_central_2 + where ilo_host_address = ilo_host_address_central_2; + + update caas_server + set oam_host_address = oam_host_address_central_2 + where ilo_host_address = ilo_host_address_central_2; + + update caas_server + set oam_host_address = oam_host_address_remote_0 + where ilo_host_address = ilo_host_address_remote_0; +end $$; + +/* + +truncate table caas_blade cascade; +truncate table caas_cellsiterouter cascade; +truncate table caas_chassis cascade; +truncate table caas_cluster cascade; +truncate table caas_credential cascade; +truncate table caas_firmwareupgradeschedule cascade; +truncate table caas_location cascade; +truncate table caas_namespace cascade; +truncate table caas_sapclli cascade; +truncate table caas_server cascade; +truncate table caas_vendor cascade; +truncate table caas_vlan cascade; +truncate table caas_wrinstallschedule cascade; + +*/ diff --git a/sql/schema/create-database.sql b/sql/schema/create-database.sql new file mode 100644 index 0000000..088893f --- /dev/null +++ b/sql/schema/create-database.sql @@ -0,0 +1,5 @@ +CREATE DATABASE IF NOT EXISTS `faredge` /*!40100 DEFAULT CHARACTER SET utf8 */; + +GRANT ALL PRIVILEGES ON faredge.* TO faredge@'%' IDENTIFIED BY 'password_changeme'; +GRANT ALL PRIVILEGES ON faredge.* TO faredge@localhost IDENTIFIED BY 'password_changeme'; +FLUSH PRIVILEGES; diff --git a/sql/schema/faredge.sql.example b/sql/schema/faredge.sql.example index e324d8a..e31606b 100644 --- a/sql/schema/faredge.sql.example +++ b/sql/schema/faredge.sql.example @@ -17,30 +17,3 @@ GRANT ALL PRIVILEGES ON faredge.* TO faredge@'%' IDENTIFIED BY 'password_changem GRANT ALL PRIVILEGES ON faredge.* TO faredge@localhost IDENTIFIED BY 'password_changeme'; FLUSH PRIVILEGES; -USE `faredge`; - -DROP TABLE IF EXISTS orch_image_sync; -CREATE TABLE orch_image_sync ( - id int(10) unsigned NOT NULL AUTO_INCREMENT, - remote_region_name varchar(64) not null, - docker_image text not null, - upload_start_time datetime not null, - upload_end_time datetime, - upload_status enum('STARTED', 'UPLOADING', 'COMPLETE', 'FAILED'), - upload_message varchar(255), - PRIMARY KEY (id) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; - -DROP TABLE IF EXISTS orch_remote_region_setup; -CREATE TABLE orch_remote_region_setup ( - id int(10) unsigned NOT NULL AUTO_INCREMENT, - caas_vendor_version varchar(20) not null, - kubernetes_version varchar(20) not null, - central_region_name varchar(64) not null, - remote_region_name varchar(64) not null, - kubernetes_namespace varchar(64) not null, - serviceaccount varchar(64) not null, - kubeconfig mediumtext, - PRIMARY KEY (id) -) ENGINE=InnoDB DEFAULT CHARSET=utf8; - diff --git a/sql/schema/orchestration.testdata b/sql/schema/orchestration.testdata new file mode 100644 index 0000000..74ade22 --- /dev/null +++ b/sql/schema/orchestration.testdata @@ -0,0 +1,4 @@ +use faredge; +insert into orchestration_centraltoremotemap(central_region_name, remote_region_name) values ("fd00:4888:2000:07f7::290", "fd00:4888:2000:120c::290"); +insert into orchestration_centraltoremotemap(central_region_name, remote_region_name) values ("fd00:4888:2000:07f7::290", "fd00:4888:2000:120e::290"); +insert into orchestration_centraltoremotemap(central_region_name, remote_region_name) values ("fd00:4888:2000:07fd::290", "fd00:4888:2000:120a::a");
\ No newline at end of file diff --git a/sql/schema/orchestration_test.sql b/sql/schema/orchestration_test.sql new file mode 100644 index 0000000..62bc981 --- /dev/null +++ b/sql/schema/orchestration_test.sql @@ -0,0 +1,27 @@ +INSERT INTO orch_image_sync(transaction_id, remote_region_name, docker_image, upload_start_time, upload_status, upload_message) values('dd99eaa604db4b46b33196dac06b9685', 'wsbomagj-d654321-001', 'cmp:1.0.0', '2020-05-26 00:00:00', 'STARTED','Uploading started'); +INSERT INTO orch_image_sync(transaction_id, remote_region_name, docker_image, upload_start_time, upload_status, upload_message) values('dd99eaa604db4b46b33196dac06b9685', 'wsbomagj-d654321-001', 'dmp:1.0.0', '2020-05-26 00:00:00', 'UPLOADING','Uploading'); +INSERT INTO orch_image_sync(transaction_id, remote_region_name, docker_image, upload_start_time, upload_status, upload_message) values('dd99eaa604db4b46b33196dac06b9685', 'wsbomagj-d654321-001', 'pmp:1.0.0', '2020-05-26 00:00:00', 'COMPLETE','Uploading successful'); +INSERT INTO orch_image_sync(transaction_id, remote_region_name, docker_image, upload_start_time, upload_status, upload_message) values('dd99eaa604db4b46b33196dac06b9685', 'wsbomagj-d654321-001', 'rmp:1.0.0', '2020-05-26 00:00:00', 'FAILED','Can not find image'); +INSERT INTO orch_image_sync(transaction_id, remote_region_name, docker_image, upload_start_time, upload_status, upload_message) values('dd99eaa604db4b46b33196dac06b9685', 'wsbomagj-d654321-001', 'dip:1.0.0', '2020-05-26 00:00:00', 'STARTED','Uploading started'); +INSERT INTO orch_image_sync(transaction_id, remote_region_name, docker_image, upload_start_time, upload_status, upload_message) values('dd99eaa604db4b46b33196dac06b9685', 'wsbomagj-d654321-001', 'dpp:1.0.0', '2020-05-26 00:00:00', 'STARTED','Uploading started'); + +INSERT INTO orch_image_sync(transaction_id, remote_region_name, docker_image, upload_start_time, upload_status, upload_message) values('dd99eaa604db4b46b33196dac06b9685', 'bbtpnj33-d123456-001', 'cmp:1.0.0', '2020-05-26 00:00:00', 'STARTED','Uploading started'); +INSERT INTO orch_image_sync(transaction_id, remote_region_name, docker_image, upload_start_time, upload_status, upload_message) values('dd99eaa604db4b46b33196dac06b9685', 'bbtpnj33-d123456-001', 'dmp:1.0.0', '2020-05-26 00:00:00', 'UPLOADING','Uploading'); +INSERT INTO orch_image_sync(transaction_id, remote_region_name, docker_image, upload_start_time, upload_status, upload_message) values('dd99eaa604db4b46b33196dac06b9685', 'bbtpnj33-d123456-001', 'pmp:1.0.0', '2020-05-26 00:00:00', 'COMPLETE','Uploading successful'); +INSERT INTO orch_image_sync(transaction_id, remote_region_name, docker_image, upload_start_time, upload_status, upload_message) values('dd99eaa604db4b46b33196dac06b9685', 'bbtpnj33-d123456-001', 'rmp:1.0.0', '2020-05-26 00:00:00', 'FAILED','Can not find image'); +INSERT INTO orch_image_sync(transaction_id, remote_region_name, docker_image, upload_start_time, upload_status, upload_message) values('dd99eaa604db4b46b33196dac06b9685', 'bbtpnj33-d123456-001', 'dip:1.0.0', '2020-05-26 00:00:00', 'STARTED','Uploading started'); +INSERT INTO orch_image_sync(transaction_id, remote_region_name, docker_image, upload_start_time, upload_status, upload_message) values('dd99eaa604db4b46b33196dac06b9685', 'bbtpnj33-d123456-001', 'dpp:1.0.0', '2020-05-26 00:00:00', 'STARTED','Uploading started'); + +INSERT INTO orch_image_sync(transaction_id, remote_region_name, docker_image, upload_start_time, upload_status, upload_message) values('940483182efe40e4ab8dd066ee0c9444', 'wsbomagj-d654321-002', 'cmp:1.0.0', '2020-05-25 14:29:36', 'STARTED','uploading started'); +INSERT INTO orch_image_sync(transaction_id, remote_region_name, docker_image, upload_start_time, upload_status, upload_message) values('940483182efe40e4ab8dd066ee0c9444', 'wsbomagj-d654321-002', 'dmp:1.0.0', '2020-05-25 14:29:36', 'UPLOADING','uploading'); +INSERT INTO orch_image_sync(transaction_id, remote_region_name, docker_image, upload_start_time, upload_status, upload_message) values('940483182efe40e4ab8dd066ee0c9444', 'wsbomagj-d654321-002', 'pmp:1.0.0', '2020-05-25 14:29:36', 'COMPLETE','uploading successful'); +INSERT INTO orch_image_sync(transaction_id, remote_region_name, docker_image, upload_start_time, upload_status, upload_message) values('940483182efe40e4ab8dd066ee0c9444', 'wsbomagj-d654321-002', 'rmp:1.0.0', '2020-05-25 14:29:36', 'FAILED','can not find image'); +INSERT INTO orch_image_sync(transaction_id, remote_region_name, docker_image, upload_start_time, upload_status, upload_message) values('940483182efe40e4ab8dd066ee0c9444', 'wsbomagj-d654321-002', 'dip:1.0.0', '2020-05-25 14:29:36', 'STARTED','uploading started'); +INSERT INTO orch_image_sync(transaction_id, remote_region_name, docker_image, upload_start_time, upload_status, upload_message) values('940483182efe40e4ab8dd066ee0c9444', 'wsbomagj-d654321-002', 'dpp:1.0.0', '2020-05-25 14:29:36', 'STARTED','uploading started'); + +INSERT INTO orch_image_sync(transaction_id, remote_region_name, docker_image, upload_start_time, upload_status, upload_message) values('940483182efe40e4ab8dd066ee0c9444', 'bbtpnj33-d123456-002', 'cmp:1.0.0', '2020-05-25 14:29:36', 'STARTED','uploading started'); +INSERT INTO orch_image_sync(transaction_id, remote_region_name, docker_image, upload_start_time, upload_status, upload_message) values('940483182efe40e4ab8dd066ee0c9444', 'bbtpnj33-d123456-002', 'dmp:1.0.0', '2020-05-25 14:29:36', 'UPLOADING','uploading'); +INSERT INTO orch_image_sync(transaction_id, remote_region_name, docker_image, upload_start_time, upload_status, upload_message) values('940483182efe40e4ab8dd066ee0c9444', 'bbtpnj33-d123456-002', 'pmp:1.0.0', '2020-05-25 14:29:36', 'COMPLETE','uploading successful'); +INSERT INTO orch_image_sync(transaction_id, remote_region_name, docker_image, upload_start_time, upload_status, upload_message) values('940483182efe40e4ab8dd066ee0c9444', 'bbtpnj33-d123456-002', 'rmp:1.0.0', '2020-05-25 14:29:36', 'FAILED','can not find image'); +INSERT INTO orch_image_sync(transaction_id, remote_region_name, docker_image, upload_start_time, upload_status, upload_message) values('940483182efe40e4ab8dd066ee0c9444', 'bbtpnj33-d123456-002', 'dip:1.0.0', '2020-05-25 14:29:36', 'STARTED','uploading started'); +INSERT INTO orch_image_sync(transaction_id, remote_region_name, docker_image, upload_start_time, upload_status, upload_message) values('940483182efe40e4ab8dd066ee0c9444', 'bbtpnj33-d123456-002', 'dpp:1.0.0', '2020-05-25 14:29:36', 'STARTED','uploading started'); |
