├── CONTRIBUTING.md ├── LICENSE ├── OWNERS ├── README.md ├── cli_tools ├── common │ ├── assert │ │ ├── assert.go │ │ ├── assert_test.go │ │ └── doc.go │ ├── deleter │ │ ├── resource_deleter.go │ │ └── resource_deleter_test.go │ ├── disk │ │ ├── disk.go │ │ ├── disk_test.go │ │ ├── inspect.go │ │ ├── inspect_test.go │ │ └── mocks │ │ │ └── mock_inspect.go │ ├── distro │ │ ├── distro.go │ │ └── distro_test.go │ ├── domain │ │ └── interfaces.go │ ├── gcsfuse │ │ └── client.go │ ├── image │ │ ├── image.go │ │ └── image_test.go │ ├── imagefile │ │ ├── inspector.go │ │ ├── inspector_test.go │ │ ├── qemu_img.go │ │ └── qemu_img_test.go │ ├── mount │ │ ├── inspector.go │ │ ├── inspector_test.go │ │ └── mock_mount_inspector.go │ └── utils │ │ ├── collections │ │ ├── collections_utils.go │ │ └── collections_utils_test.go │ │ ├── compute │ │ ├── metadata_gce.go │ │ ├── node_affinity_label_parser.go │ │ ├── node_affinity_label_parser_test.go │ │ ├── zone_validator.go │ │ └── zone_validator_test.go │ │ ├── daisyutils │ │ ├── daisy_utils.go │ │ ├── daisy_utils_test.go │ │ ├── daisy_worker.go │ │ ├── daisy_worker_test.go │ │ ├── daisy_worker_testing.go │ │ ├── io.go │ │ ├── io_test.go │ │ ├── test_data │ │ │ └── test.wf.json │ │ ├── workflow_hook.go │ │ ├── workflow_hook_fallback_pd.go │ │ ├── workflow_hook_fallback_pd_test.go │ │ ├── workflow_hook_logging.go │ │ ├── workflow_hook_logging_test.go │ │ ├── workflow_hook_no_external_ip.go │ │ ├── workflow_hook_no_external_ip_test.go │ │ ├── workflow_hook_resource_labeler.go │ │ ├── workflow_hook_resource_labeler_test.go │ │ ├── workflow_hook_workflow_properties.go │ │ ├── workflow_hook_workflow_properties_test.go │ │ ├── workflow_hook_workflow_vars.go │ │ └── workflow_hook_workflow_vars_test.go │ │ ├── files │ │ ├── files.go │ │ └── files_test.go │ │ ├── flags │ │ ├── key_value_flag.go │ │ ├── key_value_flag_test.go │ │ ├── string_array_flag.go │ │ ├── string_utils.go │ │ └── string_utils_test.go │ │ ├── logging │ │ ├── logger.go │ │ ├── logger_test.go │ │ └── service │ │ │ ├── literal_loggable.go │ │ │ ├── literal_loggable_test.go │ │ │ ├── log_entry.go │ │ │ ├── logger.go │ │ │ ├── logger_test.go │ │ │ ├── outputinfo_loggable.go │ │ │ └── outputinfo_loggable_test.go │ │ ├── param │ │ ├── key_value_parser.go │ │ ├── key_value_parser_test.go │ │ ├── network_resolver.go │ │ ├── network_resolver_test.go │ │ ├── param_utils.go │ │ ├── param_utils_test.go │ │ ├── populator.go │ │ └── populator_test.go │ │ ├── paramhelper │ │ ├── network.go │ │ ├── network_test.go │ │ ├── region.go │ │ ├── resources.go │ │ ├── resources_test.go │ │ ├── subnet.go │ │ └── subnet_test.go │ │ ├── path │ │ └── path_utils.go │ │ ├── shell │ │ └── executor.go │ │ ├── storage │ │ ├── bucket_iterator.go │ │ ├── buffered_writer.go │ │ ├── buffered_writer_test.go │ │ ├── object_iterator.go │ │ ├── resource_location_retriever.go │ │ ├── resource_location_retriever_test.go │ │ ├── scratch_bucket_creator.go │ │ ├── scratch_bucket_creator_test.go │ │ ├── storage_client.go │ │ ├── storage_client_test.go │ │ ├── storage_object.go │ │ ├── tar_gcs_extractor.go │ │ └── tar_gcs_extractor_test.go │ │ ├── string │ │ ├── string_utils.go │ │ └── string_utils_test.go │ │ ├── test │ │ └── test_utils.go │ │ └── validation │ │ ├── validation_utils.go │ │ └── validation_utils_test.go ├── diagnostics │ ├── main.go │ ├── main_windows.go │ ├── main_windows_test.go │ ├── packaging │ │ └── googet │ │ │ └── google-compute-engine-diagnostics.goospec │ ├── rdp_status.ps1 │ ├── stub_linux.go │ └── wmi_windows.go ├── gce_export │ ├── README.md │ ├── main.go │ ├── main_linux.go │ └── main_windows.go ├── gce_image_publish │ ├── main.go │ └── publish │ │ ├── publish.go │ │ └── publish_test.go ├── gce_windows_upgrade │ ├── main.go │ ├── upgrade_script.ps1 │ └── upgrader │ │ ├── test_common_test.go │ │ ├── upgrade_paths.go │ │ ├── upgrade_paths_test.go │ │ ├── upgrader.go │ │ ├── upgrader_test.go │ │ ├── utils.go │ │ ├── utils_test.go │ │ ├── validators.go │ │ ├── validators_test.go │ │ ├── workflows.go │ │ └── workflows_test.go ├── go.mod ├── go.sum ├── mocks │ ├── README.md │ ├── mock_bucket_iterator.go │ ├── mock_bucket_iterator_creator.go │ ├── mock_compute_client.go │ ├── mock_compute_service.go │ ├── mock_daisy_logger.go │ ├── mock_daisy_worker.go │ ├── mock_http_client.go │ ├── mock_image_deleter.go │ ├── mock_logger.go │ ├── mock_metadata_gce.go │ ├── mock_network_resolver.go │ ├── mock_object_iterator.go │ ├── mock_object_iterator_creator.go │ ├── mock_param_populator.go │ ├── mock_reader_closer.go │ ├── mock_resource_location_retriever.go │ ├── mock_scratch_bucket_creator.go │ ├── mock_shell_exececutor.go │ ├── mock_storage_client.go │ ├── mock_storage_object.go │ ├── mock_storage_object_creator.go │ ├── mock_tar_gcs_extractor.go │ ├── mock_workflow_hook.go │ └── mock_zone_validator.go └── test_data │ ├── test_tar.tar │ └── test_tar_with_dir.tar ├── cli_tools_cloudbuild.yaml ├── cli_tools_tests ├── e2e │ ├── README.md │ ├── assert.go │ ├── gce_windows_upgrade │ │ ├── main.go │ │ └── test_suites │ │ │ └── windows_upgrade │ │ │ └── windows_upgrade_test_suite.go │ ├── utils.go │ └── variables.go ├── go.mod └── go.sum ├── common ├── gcp │ ├── image.go │ ├── instance.go │ └── storage.go ├── go.mod ├── go.sum ├── logging │ └── logging.go └── runtime │ └── config.go ├── daisy └── README.md ├── daisy_workflows ├── README.md ├── build-publish │ ├── README.md │ ├── debian │ │ ├── debian_11.publish.json │ │ ├── debian_11.wf.json │ │ ├── debian_11_worker.publish.json │ │ ├── debian_11_worker.wf.json │ │ ├── debian_12.publish.json │ │ ├── debian_12.wf.json │ │ ├── debian_12_arm64.publish.json │ │ ├── debian_12_arm64.wf.json │ │ ├── debian_12_worker.publish.json │ │ ├── debian_12_worker.wf.json │ │ ├── debian_12_worker_arm64.publish.json │ │ ├── debian_12_worker_arm64.wf.json │ │ ├── debian_13.publish.json │ │ ├── debian_13.wf.json │ │ ├── debian_13_arm64.publish.json │ │ ├── debian_13_arm64.wf.json │ │ ├── debian_13_worker.publish.json │ │ ├── debian_13_worker.wf.json │ │ ├── debian_13_worker_arm64.publish.json │ │ └── debian_13_worker_arm64.wf.json │ ├── enterprise_linux │ │ ├── almalinux_8.publish.json │ │ ├── almalinux_8.wf.json │ │ ├── almalinux_9.publish.json │ │ ├── almalinux_9.wf.json │ │ ├── almalinux_9_arm64.publish.json │ │ ├── almalinux_9_arm64.wf.json │ │ ├── centos_stream_10.publish.json │ │ ├── centos_stream_10.wf.json │ │ ├── centos_stream_10_arm64.publish.json │ │ ├── centos_stream_10_arm64.wf.json │ │ ├── centos_stream_9.publish.json │ │ ├── centos_stream_9.wf.json │ │ ├── centos_stream_9_arm64.publish.json │ │ ├── centos_stream_9_arm64.wf.json │ │ ├── rhel_10.publish.json │ │ ├── rhel_10.wf.json │ │ ├── rhel_10_0_eus.publish.json │ │ ├── rhel_10_0_eus.wf.json │ │ ├── rhel_10_0_eus_arm64.publish.json │ │ ├── rhel_10_0_eus_arm64.wf.json │ │ ├── rhel_10_0_eus_byos.publish.json │ │ ├── rhel_10_0_eus_byos.wf.json │ │ ├── rhel_10_0_eus_byos_arm64.publish.json │ │ ├── rhel_10_0_eus_byos_arm64.wf.json │ │ ├── rhel_10_arm64.publish.json │ │ ├── rhel_10_arm64.wf.json │ │ ├── rhel_10_byos.publish.json │ │ ├── rhel_10_byos.wf.json │ │ ├── rhel_10_byos_arm64.publish.json │ │ ├── rhel_10_byos_arm64.wf.json │ │ ├── rhel_8.publish.json │ │ ├── rhel_8.wf.json │ │ ├── rhel_8_10_sap.publish.json │ │ ├── rhel_8_10_sap.wf.json │ │ ├── rhel_8_10_sap_byos.publish.json │ │ ├── rhel_8_10_sap_byos.wf.json │ │ ├── rhel_8_4_sap.publish.json │ │ ├── rhel_8_4_sap.wf.json │ │ ├── rhel_8_4_sap_byos.publish.json │ │ ├── rhel_8_4_sap_byos.wf.json │ │ ├── rhel_8_6_sap.publish.json │ │ ├── rhel_8_6_sap.wf.json │ │ ├── rhel_8_6_sap_byos.publish.json │ │ ├── rhel_8_6_sap_byos.wf.json │ │ ├── rhel_8_8_sap.publish.json │ │ ├── rhel_8_8_sap.wf.json │ │ ├── rhel_8_8_sap_byos.publish.json │ │ ├── rhel_8_8_sap_byos.wf.json │ │ ├── rhel_8_arm64.publish.json │ │ ├── rhel_8_arm64.wf.json │ │ ├── rhel_8_byos.publish.json │ │ ├── rhel_8_byos.wf.json │ │ ├── rhel_8_byos_arm64.publish.json │ │ ├── rhel_8_byos_arm64.wf.json │ │ ├── rhel_9.publish.json │ │ ├── rhel_9.wf.json │ │ ├── rhel_9_0_sap.publish.json │ │ ├── rhel_9_0_sap.wf.json │ │ ├── rhel_9_0_sap_byos.publish.json │ │ ├── rhel_9_0_sap_byos.wf.json │ │ ├── rhel_9_2_sap.publish.json │ │ ├── rhel_9_2_sap.wf.json │ │ ├── rhel_9_2_sap_byos.publish.json │ │ ├── rhel_9_2_sap_byos.wf.json │ │ ├── rhel_9_4_eus.publish.json │ │ ├── rhel_9_4_eus.wf.json │ │ ├── rhel_9_4_eus_arm64.publish.json │ │ ├── rhel_9_4_eus_arm64.wf.json │ │ ├── rhel_9_4_eus_byos.publish.json │ │ ├── rhel_9_4_eus_byos.wf.json │ │ ├── rhel_9_4_eus_byos_arm64.publish.json │ │ ├── rhel_9_4_eus_byos_arm64.wf.json │ │ ├── rhel_9_4_sap.publish.json │ │ ├── rhel_9_4_sap.wf.json │ │ ├── rhel_9_4_sap_byos.publish.json │ │ ├── rhel_9_4_sap_byos.wf.json │ │ ├── rhel_9_6_eus.publish.json │ │ ├── rhel_9_6_eus.wf.json │ │ ├── rhel_9_6_eus_arm64.publish.json │ │ ├── rhel_9_6_eus_arm64.wf.json │ │ ├── rhel_9_6_eus_byos.publish.json │ │ ├── rhel_9_6_eus_byos.wf.json │ │ ├── rhel_9_6_eus_byos_arm64.publish.json │ │ ├── rhel_9_6_eus_byos_arm64.wf.json │ │ ├── rhel_9_6_sap.publish.json │ │ ├── rhel_9_6_sap.wf.json │ │ ├── rhel_9_6_sap_byos.publish.json │ │ ├── rhel_9_6_sap_byos.wf.json │ │ ├── rhel_9_arm64.publish.json │ │ ├── rhel_9_arm64.wf.json │ │ ├── rhel_9_byos.publish.json │ │ ├── rhel_9_byos.wf.json │ │ ├── rhel_9_byos_arm64.publish.json │ │ ├── rhel_9_byos_arm64.wf.json │ │ ├── rocky_linux_8.publish.json │ │ ├── rocky_linux_8.wf.json │ │ ├── rocky_linux_8_optimized_gcp.publish.json │ │ ├── rocky_linux_8_optimized_gcp.wf.json │ │ ├── rocky_linux_8_optimized_gcp_arm64.publish.json │ │ ├── rocky_linux_8_optimized_gcp_arm64.wf.json │ │ ├── rocky_linux_8_optimized_gcp_nvidia_550.publish.json │ │ ├── rocky_linux_8_optimized_gcp_nvidia_550.wf.json │ │ ├── rocky_linux_8_optimized_gcp_nvidia_570.publish.json │ │ ├── rocky_linux_8_optimized_gcp_nvidia_570.wf.json │ │ ├── rocky_linux_8_optimized_gcp_nvidia_latest.publish.json │ │ ├── rocky_linux_8_optimized_gcp_nvidia_latest.wf.json │ │ ├── rocky_linux_9.publish.json │ │ ├── rocky_linux_9.wf.json │ │ ├── rocky_linux_9_arm64.publish.json │ │ ├── rocky_linux_9_arm64.wf.json │ │ ├── rocky_linux_9_optimized_gcp.publish.json │ │ ├── rocky_linux_9_optimized_gcp.wf.json │ │ ├── rocky_linux_9_optimized_gcp_arm64.publish.json │ │ ├── rocky_linux_9_optimized_gcp_arm64.wf.json │ │ ├── rocky_linux_9_optimized_gcp_nvidia_550.publish.json │ │ ├── rocky_linux_9_optimized_gcp_nvidia_550.wf.json │ │ ├── rocky_linux_9_optimized_gcp_nvidia_570.publish.json │ │ ├── rocky_linux_9_optimized_gcp_nvidia_570.wf.json │ │ ├── rocky_linux_9_optimized_gcp_nvidia_latest.publish.json │ │ └── rocky_linux_9_optimized_gcp_nvidia_latest.wf.json │ ├── kokoro │ │ ├── build.sh │ │ └── kokoro.wf.json │ ├── sqlserver │ │ ├── sql-2014-enterprise-windows-2012-r2-dc-uefi.publish.json │ │ ├── sql-2014-enterprise-windows-2012-r2-dc.wf.json │ │ ├── sql-2014-enterprise-windows-2012-r2-uefi.publish.json │ │ ├── sql-2014-enterprise-windows-2012-r2.wf.json │ │ ├── sql-2014-enterprise-windows-2016-dc-uefi.publish.json │ │ ├── sql-2014-enterprise-windows-2016-dc.wf.json │ │ ├── sql-2014-enterprise-windows-2016-uefi.publish.json │ │ ├── sql-2014-enterprise-windows-2016.wf.json │ │ ├── sql-2014-standard-windows-2012-r2-dc-uefi.publish.json │ │ ├── sql-2014-standard-windows-2012-r2-dc.wf.json │ │ ├── sql-2014-standard-windows-2012-r2-uefi.publish.json │ │ ├── sql-2014-standard-windows-2012-r2.wf.json │ │ ├── sql-2014-web-windows-2012-r2-dc-uefi.publish.json │ │ ├── sql-2014-web-windows-2012-r2-dc.wf.json │ │ ├── sql-2014-web-windows-2012-r2-uefi.publish.json │ │ ├── sql-2014-web-windows-2012-r2.wf.json │ │ ├── sql-2016-enterprise-windows-2012-r2-dc-uefi.publish.json │ │ ├── sql-2016-enterprise-windows-2012-r2-dc.wf.json │ │ ├── sql-2016-enterprise-windows-2012-r2-uefi.publish.json │ │ ├── sql-2016-enterprise-windows-2012-r2.wf.json │ │ ├── sql-2016-enterprise-windows-2016-dc-uefi.publish.json │ │ ├── sql-2016-enterprise-windows-2016-dc.wf.json │ │ ├── sql-2016-enterprise-windows-2016-uefi.publish.json │ │ ├── sql-2016-enterprise-windows-2016.wf.json │ │ ├── sql-2016-enterprise-windows-2019-dc-uefi.publish.json │ │ ├── sql-2016-enterprise-windows-2019-dc.wf.json │ │ ├── sql-2016-enterprise-windows-2019-uefi.publish.json │ │ ├── sql-2016-enterprise-windows-2019.wf.json │ │ ├── sql-2016-standard-windows-2012-r2-dc-uefi.publish.json │ │ ├── sql-2016-standard-windows-2012-r2-dc.wf.json │ │ ├── sql-2016-standard-windows-2012-r2-uefi.publish.json │ │ ├── sql-2016-standard-windows-2012-r2.wf.json │ │ ├── sql-2016-standard-windows-2016-dc-uefi.publish.json │ │ ├── sql-2016-standard-windows-2016-dc.wf.json │ │ ├── sql-2016-standard-windows-2016-uefi.publish.json │ │ ├── sql-2016-standard-windows-2016.wf.json │ │ ├── sql-2016-standard-windows-2019-dc-uefi.publish.json │ │ ├── sql-2016-standard-windows-2019-dc.wf.json │ │ ├── sql-2016-standard-windows-2019-uefi.publish.json │ │ ├── sql-2016-standard-windows-2019.wf.json │ │ ├── sql-2016-web-windows-2012-r2-dc-uefi.publish.json │ │ ├── sql-2016-web-windows-2012-r2-dc.wf.json │ │ ├── sql-2016-web-windows-2012-r2-uefi.publish.json │ │ ├── sql-2016-web-windows-2012-r2.wf.json │ │ ├── sql-2016-web-windows-2016-dc-uefi.publish.json │ │ ├── sql-2016-web-windows-2016-dc.wf.json │ │ ├── sql-2016-web-windows-2016-uefi.publish.json │ │ ├── sql-2016-web-windows-2016.wf.json │ │ ├── sql-2016-web-windows-2019-dc-uefi.publish.json │ │ ├── sql-2016-web-windows-2019-dc.wf.json │ │ ├── sql-2016-web-windows-2019-uefi.publish.json │ │ ├── sql-2016-web-windows-2019.wf.json │ │ ├── sql-2017-enterprise-windows-2016-dc-uefi.publish.json │ │ ├── sql-2017-enterprise-windows-2016-dc.wf.json │ │ ├── sql-2017-enterprise-windows-2016-uefi.publish.json │ │ ├── sql-2017-enterprise-windows-2016.wf.json │ │ ├── sql-2017-enterprise-windows-2019-dc-uefi.publish.json │ │ ├── sql-2017-enterprise-windows-2019-dc.wf.json │ │ ├── sql-2017-enterprise-windows-2019-uefi.publish.json │ │ ├── sql-2017-enterprise-windows-2019.wf.json │ │ ├── sql-2017-enterprise-windows-2022-dc-uefi.publish.json │ │ ├── sql-2017-enterprise-windows-2022-dc.wf.json │ │ ├── sql-2017-enterprise-windows-2022-uefi.publish.json │ │ ├── sql-2017-enterprise-windows-2022.wf.json │ │ ├── sql-2017-enterprise-windows-2025-dc-uefi.publish.json │ │ ├── sql-2017-enterprise-windows-2025-dc.wf.json │ │ ├── sql-2017-express-windows-2012-r2-dc-uefi.publish.json │ │ ├── sql-2017-express-windows-2012-r2-dc.wf.json │ │ ├── sql-2017-express-windows-2012-r2-uefi.publish.json │ │ ├── sql-2017-express-windows-2012-r2.wf.json │ │ ├── sql-2017-express-windows-2016-dc-uefi.publish.json │ │ ├── sql-2017-express-windows-2016-dc.wf.json │ │ ├── sql-2017-express-windows-2016-uefi.publish.json │ │ ├── sql-2017-express-windows-2016.wf.json │ │ ├── sql-2017-express-windows-2019-dc-uefi.publish.json │ │ ├── sql-2017-express-windows-2019-dc.wf.json │ │ ├── sql-2017-express-windows-2019-uefi.publish.json │ │ ├── sql-2017-express-windows-2019.wf.json │ │ ├── sql-2017-standard-windows-2016-dc-uefi.publish.json │ │ ├── sql-2017-standard-windows-2016-dc.wf.json │ │ ├── sql-2017-standard-windows-2016-uefi.publish.json │ │ ├── sql-2017-standard-windows-2016.wf.json │ │ ├── sql-2017-standard-windows-2019-dc-uefi.publish.json │ │ ├── sql-2017-standard-windows-2019-dc.wf.json │ │ ├── sql-2017-standard-windows-2019-uefi.publish.json │ │ ├── sql-2017-standard-windows-2019.wf.json │ │ ├── sql-2017-standard-windows-2022-dc-uefi.publish.json │ │ ├── sql-2017-standard-windows-2022-dc.wf.json │ │ ├── sql-2017-standard-windows-2022-uefi.publish.json │ │ ├── sql-2017-standard-windows-2022.wf.json │ │ ├── sql-2017-standard-windows-2025-dc-uefi.publish.json │ │ ├── sql-2017-standard-windows-2025-dc.wf.json │ │ ├── sql-2017-web-windows-2016-dc-uefi.publish.json │ │ ├── sql-2017-web-windows-2016-dc.wf.json │ │ ├── sql-2017-web-windows-2016-uefi.publish.json │ │ ├── sql-2017-web-windows-2016.wf.json │ │ ├── sql-2017-web-windows-2019-dc-uefi.publish.json │ │ ├── sql-2017-web-windows-2019-dc.wf.json │ │ ├── sql-2017-web-windows-2019-uefi.publish.json │ │ ├── sql-2017-web-windows-2019.wf.json │ │ ├── sql-2017-web-windows-2022-dc-uefi.publish.json │ │ ├── sql-2017-web-windows-2022-dc.wf.json │ │ ├── sql-2017-web-windows-2022-uefi.publish.json │ │ ├── sql-2017-web-windows-2022.wf.json │ │ ├── sql-2017-web-windows-2025-dc-uefi.publish.json │ │ ├── sql-2017-web-windows-2025-dc.wf.json │ │ ├── sql-2019-enterprise-windows-2019-dc-uefi.publish.json │ │ ├── sql-2019-enterprise-windows-2019-dc.wf.json │ │ ├── sql-2019-enterprise-windows-2019-uefi.publish.json │ │ ├── sql-2019-enterprise-windows-2019.wf.json │ │ ├── sql-2019-enterprise-windows-2022-dc-uefi.publish.json │ │ ├── sql-2019-enterprise-windows-2022-dc.wf.json │ │ ├── sql-2019-enterprise-windows-2022-uefi.publish.json │ │ ├── sql-2019-enterprise-windows-2022.wf.json │ │ ├── sql-2019-enterprise-windows-2025-dc-uefi.publish.json │ │ ├── sql-2019-enterprise-windows-2025-dc.wf.json │ │ ├── sql-2019-standard-windows-2019-dc-uefi.publish.json │ │ ├── sql-2019-standard-windows-2019-dc.wf.json │ │ ├── sql-2019-standard-windows-2019-uefi.publish.json │ │ ├── sql-2019-standard-windows-2019.wf.json │ │ ├── sql-2019-standard-windows-2022-dc-uefi.publish.json │ │ ├── sql-2019-standard-windows-2022-dc.wf.json │ │ ├── sql-2019-standard-windows-2022-uefi.publish.json │ │ ├── sql-2019-standard-windows-2022.wf.json │ │ ├── sql-2019-standard-windows-2025-dc-uefi.publish.json │ │ ├── sql-2019-standard-windows-2025-dc.wf.json │ │ ├── sql-2019-web-windows-2019-dc-uefi.publish.json │ │ ├── sql-2019-web-windows-2019-dc.wf.json │ │ ├── sql-2019-web-windows-2019-uefi.publish.json │ │ ├── sql-2019-web-windows-2019.wf.json │ │ ├── sql-2019-web-windows-2022-dc-uefi.publish.json │ │ ├── sql-2019-web-windows-2022-dc.wf.json │ │ ├── sql-2019-web-windows-2022-uefi.publish.json │ │ ├── sql-2019-web-windows-2022.wf.json │ │ ├── sql-2019-web-windows-2025-dc-uefi.publish.json │ │ ├── sql-2019-web-windows-2025-dc.wf.json │ │ ├── sql-2022-enterprise-windows-2019-dc-uefi.publish.json │ │ ├── sql-2022-enterprise-windows-2019-dc.wf.json │ │ ├── sql-2022-enterprise-windows-2019-uefi.publish.json │ │ ├── sql-2022-enterprise-windows-2019.wf.json │ │ ├── sql-2022-enterprise-windows-2022-dc-uefi.publish.json │ │ ├── sql-2022-enterprise-windows-2022-dc.wf.json │ │ ├── sql-2022-enterprise-windows-2022-uefi.publish.json │ │ ├── sql-2022-enterprise-windows-2022.wf.json │ │ ├── sql-2022-enterprise-windows-2025-dc-uefi.publish.json │ │ ├── sql-2022-enterprise-windows-2025-dc.wf.json │ │ ├── sql-2022-express-windows-2022-dc-uefi.publish.json │ │ ├── sql-2022-express-windows-2022-dc.wf.json │ │ ├── sql-2022-express-windows-2025-dc-uefi.publish.json │ │ ├── sql-2022-express-windows-2025-dc.wf.json │ │ ├── sql-2022-preview-windows-2022-dc-uefi.publish.json │ │ ├── sql-2022-preview-windows-2022-dc.wf.json │ │ ├── sql-2022-preview-windows-2022-uefi.publish.json │ │ ├── sql-2022-preview-windows-2022.wf.json │ │ ├── sql-2022-standard-windows-2019-dc-uefi.publish.json │ │ ├── sql-2022-standard-windows-2019-dc.wf.json │ │ ├── sql-2022-standard-windows-2019-uefi.publish.json │ │ ├── sql-2022-standard-windows-2019.wf.json │ │ ├── sql-2022-standard-windows-2022-dc-uefi.publish.json │ │ ├── sql-2022-standard-windows-2022-dc.wf.json │ │ ├── sql-2022-standard-windows-2022-uefi.publish.json │ │ ├── sql-2022-standard-windows-2022.wf.json │ │ ├── sql-2022-standard-windows-2025-dc-uefi.publish.json │ │ ├── sql-2022-standard-windows-2025-dc.wf.json │ │ ├── sql-2022-web-windows-2019-dc-uefi.publish.json │ │ ├── sql-2022-web-windows-2019-dc.wf.json │ │ ├── sql-2022-web-windows-2019-uefi.publish.json │ │ ├── sql-2022-web-windows-2019.wf.json │ │ ├── sql-2022-web-windows-2022-dc-uefi.publish.json │ │ ├── sql-2022-web-windows-2022-dc.wf.json │ │ ├── sql-2022-web-windows-2022-uefi.publish.json │ │ ├── sql-2022-web-windows-2022.wf.json │ │ ├── sql-2022-web-windows-2025-dc-uefi.publish.json │ │ ├── sql-2022-web-windows-2025-dc.wf.json │ │ ├── sql-2025-enterprise-windows-2019-dc-uefi.publish.json │ │ ├── sql-2025-enterprise-windows-2019-dc.wf.json │ │ ├── sql-2025-enterprise-windows-2022-dc-uefi.publish.json │ │ ├── sql-2025-enterprise-windows-2022-dc.wf.json │ │ ├── sql-2025-enterprise-windows-2025-dc-uefi.publish.json │ │ ├── sql-2025-enterprise-windows-2025-dc.wf.json │ │ ├── sql-2025-standard-windows-2019-dc-uefi.publish.json │ │ ├── sql-2025-standard-windows-2019-dc.wf.json │ │ ├── sql-2025-standard-windows-2022-dc-uefi.publish.json │ │ ├── sql-2025-standard-windows-2022-dc.wf.json │ │ ├── sql-2025-standard-windows-2025-dc-uefi.publish.json │ │ └── sql-2025-standard-windows-2025-dc.wf.json │ ├── test-workflow.json │ ├── windows │ │ ├── windows-10-21h2-ent-x64-uefi.publish.json │ │ ├── windows-10-21h2-ent-x64-uefi.wf.json │ │ ├── windows-10-21h2-ent-x86-bios.publish.json │ │ ├── windows-10-21h2-ent-x86-bios.wf.json │ │ ├── windows-10-22h2-ent-x64-uefi.publish.json │ │ ├── windows-10-22h2-ent-x64-uefi.wf.json │ │ ├── windows-10-22h2-ent-x86-bios.publish.json │ │ ├── windows-10-22h2-ent-x86-bios.wf.json │ │ ├── windows-10-next-ent-x64-uefi.publish.json │ │ ├── windows-10-next-ent-x64-uefi.wf.json │ │ ├── windows-11-21h2-ent-x64-uefi.publish.json │ │ ├── windows-11-21h2-ent-x64-uefi.wf.json │ │ ├── windows-11-22h2-ent-x64-uefi.publish.json │ │ ├── windows-11-22h2-ent-x64-uefi.wf.json │ │ ├── windows-11-23h2-ent-x64-uefi.publish.json │ │ ├── windows-11-23h2-ent-x64-uefi.wf.json │ │ ├── windows-11-24h2-ent-x64-uefi.publish.json │ │ ├── windows-11-24h2-ent-x64-uefi.wf.json │ │ ├── windows-11-25h2-ent-x64-uefi.publish.json │ │ ├── windows-11-25h2-ent-x64-uefi.wf.json │ │ ├── windows-11-preview-ent-x64-uefi.publish.json │ │ ├── windows-11-preview-ent-x64-uefi.wf.json │ │ ├── windows-81-ent-x64-uefi.publish.json │ │ ├── windows-81-ent-x64-uefi.wf.json │ │ ├── windows-install-media.publish.json │ │ ├── windows-install-media.wf.json │ │ ├── windows-server-2012-r2-core-uefi.publish.json │ │ ├── windows-server-2012-r2-core-uefi.wf.json │ │ ├── windows-server-2012-r2-dc-bios.publish.json │ │ ├── windows-server-2012-r2-dc-bios.wf.json │ │ ├── windows-server-2012-r2-dc-core-uefi.publish.json │ │ ├── windows-server-2012-r2-dc-core-uefi.wf.json │ │ ├── windows-server-2012-r2-dc-uefi.publish.json │ │ ├── windows-server-2012-r2-dc-uefi.wf.json │ │ ├── windows-server-2012-r2-uefi.publish.json │ │ ├── windows-server-2012-r2-uefi.wf.json │ │ ├── windows-server-2016-core-uefi.publish.json │ │ ├── windows-server-2016-core-uefi.wf.json │ │ ├── windows-server-2016-dc-bios.publish.json │ │ ├── windows-server-2016-dc-bios.wf.json │ │ ├── windows-server-2016-dc-core-uefi.publish.json │ │ ├── windows-server-2016-dc-core-uefi.wf.json │ │ ├── windows-server-2016-dc-uefi.publish.json │ │ ├── windows-server-2016-dc-uefi.wf.json │ │ ├── windows-server-2016-uefi.publish.json │ │ ├── windows-server-2016-uefi.wf.json │ │ ├── windows-server-2019-core-uefi.publish.json │ │ ├── windows-server-2019-core-uefi.wf.json │ │ ├── windows-server-2019-dc-bios.publish.json │ │ ├── windows-server-2019-dc-bios.wf.json │ │ ├── windows-server-2019-dc-core-uefi.publish.json │ │ ├── windows-server-2019-dc-core-uefi.wf.json │ │ ├── windows-server-2019-dc-uefi.publish.json │ │ ├── windows-server-2019-dc-uefi.wf.json │ │ ├── windows-server-2019-uefi.publish.json │ │ ├── windows-server-2019-uefi.wf.json │ │ ├── windows-server-2022-core-uefi.publish.json │ │ ├── windows-server-2022-core-uefi.wf.json │ │ ├── windows-server-2022-dc-bios.publish.json │ │ ├── windows-server-2022-dc-bios.wf.json │ │ ├── windows-server-2022-dc-core-uefi.publish.json │ │ ├── windows-server-2022-dc-core-uefi.wf.json │ │ ├── windows-server-2022-dc-uefi.publish.json │ │ ├── windows-server-2022-dc-uefi.wf.json │ │ ├── windows-server-2022-uefi.publish.json │ │ ├── windows-server-2022-uefi.wf.json │ │ ├── windows-server-2025-core-uefi.publish.json │ │ ├── windows-server-2025-core-uefi.wf.json │ │ ├── windows-server-2025-dc-core-uefi.publish.json │ │ ├── windows-server-2025-dc-core-uefi.wf.json │ │ ├── windows-server-2025-dc-uefi.publish.json │ │ ├── windows-server-2025-dc-uefi.wf.json │ │ ├── windows-server-2025-uefi.publish.json │ │ ├── windows-server-2025-uefi.wf.json │ │ ├── windows-server-next-dc-uefi.publish.json │ │ ├── windows-server-next-dc-uefi.wf.json │ │ └── windows_export.wf.json │ └── windows_container │ │ ├── windows-2019-core-for-containers-uefi.wf.json │ │ ├── windows-2019-dc-core-for-containers-ce-uefi.wf.json │ │ ├── windows-2019-dc-core-for-containers-uefi.wf.json │ │ ├── windows-2019-dc-for-containers-ce-uefi.wf.json │ │ ├── windows-2019-dc-for-containers-uefi.wf.json │ │ ├── windows-2019-for-containers-uefi.wf.json │ │ ├── windows-server-2019-core-for-containers-uefi.publish.json │ │ ├── windows-server-2019-dc-core-for-containers-ce-uefi.publish.json │ │ ├── windows-server-2019-dc-core-for-containers-uefi.publish.json │ │ ├── windows-server-2019-dc-for-containers-ce-uefi.publish.json │ │ ├── windows-server-2019-dc-for-containers-uefi.publish.json │ │ └── windows-server-2019-for-containers-uefi.publish.json ├── export │ ├── README.md │ ├── disk_export.wf.json │ ├── disk_export_ext.wf.json │ ├── disk_export_hyperdisk.wf.json │ ├── disk_resizing_mon.sh │ ├── export_disk.sh │ ├── export_disk_ext.sh │ ├── image_export.wf.json │ └── image_export_ext.wf.json ├── export_metadata │ ├── export-metadata.ps1 │ ├── export-metadata.py │ ├── export_metadata.wf.json │ └── export_metadata_windows.wf.json ├── image_build │ ├── README.md │ ├── debian │ │ ├── README.md │ │ ├── build_fai.py │ │ ├── debian_11_fai.wf.json │ │ ├── debian_11_worker.wf.json │ │ ├── debian_12_arm64.wf.json │ │ ├── debian_12_fai.wf.json │ │ ├── debian_12_worker.wf.json │ │ ├── debian_12_worker_arm64.wf.json │ │ ├── debian_13_arm64.wf.json │ │ ├── debian_13_fai.wf.json │ │ ├── debian_13_worker.wf.json │ │ ├── debian_13_worker_arm64.wf.json │ │ ├── debian_fai.wf.json │ │ ├── debian_worker.sh │ │ └── fai_config │ │ │ ├── class │ │ │ └── GCE_SPECIFIC.var │ │ │ ├── files │ │ │ └── etc │ │ │ │ ├── apt │ │ │ │ ├── keyrings │ │ │ │ │ └── google-keyring.gpg │ │ │ │ │ │ └── TRIXIE │ │ │ │ ├── sources.list.d │ │ │ │ │ └── google-cloud.list │ │ │ │ │ │ ├── GCE_SPECIFIC │ │ │ │ │ │ └── TRIXIE │ │ │ │ └── sources.list │ │ │ │ │ ├── BULLSEYE │ │ │ │ │ └── BUSTER │ │ │ │ └── systemd │ │ │ │ └── timesyncd.conf.d │ │ │ │ └── 01_debian_cloud.conf │ │ │ │ └── GCE_SPECIFIC │ │ │ ├── hooks │ │ │ ├── configure.GCE_SPECIFIC │ │ │ ├── repository.GCE_SPECIFIC │ │ │ └── repository.TRIXIE │ │ │ ├── package_config │ │ │ ├── BOOKWORM │ │ │ ├── BULLSEYE │ │ │ ├── GCE_SPECIFIC │ │ │ ├── GCE_SPECIFIC.asc │ │ │ └── TRIXIE │ │ │ └── scripts │ │ │ ├── BOOKWORM │ │ │ └── 10-clean │ │ │ ├── GCE_CLEAN │ │ │ └── 10-gce-clean │ │ │ └── GCE_SPECIFIC │ │ │ └── 12-sshd │ ├── enterprise_linux │ │ ├── README.md │ │ ├── almalinux_8.wf.json │ │ ├── almalinux_9.wf.json │ │ ├── almalinux_9_arm64.wf.json │ │ ├── build_installer.py │ │ ├── centos_stream_10.wf.json │ │ ├── centos_stream_10_arm64.wf.json │ │ ├── centos_stream_9.wf.json │ │ ├── centos_stream_9_arm64.wf.json │ │ ├── enterprise_linux.wf.json │ │ ├── kickstart │ │ │ ├── almalinux_8.cfg │ │ │ ├── almalinux_9.cfg │ │ │ ├── almalinux_9_arm64.cfg │ │ │ ├── centos_stream_10.cfg │ │ │ ├── centos_stream_10_arm64.cfg │ │ │ ├── centos_stream_9.cfg │ │ │ ├── centos_stream_9_arm64.cfg │ │ │ ├── rhel_10.cfg │ │ │ ├── rhel_10_0_eus.cfg │ │ │ ├── rhel_10_0_eus_arm64.cfg │ │ │ ├── rhel_10_0_eus_byos.cfg │ │ │ ├── rhel_10_0_eus_byos_arm64.cfg │ │ │ ├── rhel_10_arm64.cfg │ │ │ ├── rhel_10_byos.cfg │ │ │ ├── rhel_10_byos_arm64.cfg │ │ │ ├── rhel_8.cfg │ │ │ ├── rhel_8_10_sap.cfg │ │ │ ├── rhel_8_10_sap_byos.cfg │ │ │ ├── rhel_8_4_sap.cfg │ │ │ ├── rhel_8_4_sap_byos.cfg │ │ │ ├── rhel_8_6_sap.cfg │ │ │ ├── rhel_8_6_sap_byos.cfg │ │ │ ├── rhel_8_8_sap.cfg │ │ │ ├── rhel_8_8_sap_byos.cfg │ │ │ ├── rhel_8_arm64.cfg │ │ │ ├── rhel_8_byos.cfg │ │ │ ├── rhel_8_byos_arm64.cfg │ │ │ ├── rhel_9.cfg │ │ │ ├── rhel_9_0_sap.cfg │ │ │ ├── rhel_9_0_sap_byos.cfg │ │ │ ├── rhel_9_2_sap.cfg │ │ │ ├── rhel_9_2_sap_byos.cfg │ │ │ ├── rhel_9_4_eus.cfg │ │ │ ├── rhel_9_4_eus_arm64.cfg │ │ │ ├── rhel_9_4_eus_byos.cfg │ │ │ ├── rhel_9_4_eus_byos_arm64.cfg │ │ │ ├── rhel_9_4_sap.cfg │ │ │ ├── rhel_9_4_sap_byos.cfg │ │ │ ├── rhel_9_6_eus.cfg │ │ │ ├── rhel_9_6_eus_arm64.cfg │ │ │ ├── rhel_9_6_eus_byos.cfg │ │ │ ├── rhel_9_6_eus_byos_arm64.cfg │ │ │ ├── rhel_9_6_sap.cfg │ │ │ ├── rhel_9_6_sap_byos.cfg │ │ │ ├── rhel_9_arm64.cfg │ │ │ ├── rhel_9_byos.cfg │ │ │ ├── rhel_9_byos_arm64.cfg │ │ │ ├── rocky_linux_8.cfg │ │ │ ├── rocky_linux_8_optimized_gcp.cfg │ │ │ ├── rocky_linux_8_optimized_gcp_accelerator.cfg │ │ │ ├── rocky_linux_8_optimized_gcp_accelerator_550.cfg │ │ │ ├── rocky_linux_8_optimized_gcp_accelerator_570.cfg │ │ │ ├── rocky_linux_8_optimized_gcp_arm64.cfg │ │ │ ├── rocky_linux_9.cfg │ │ │ ├── rocky_linux_9_arm64.cfg │ │ │ ├── rocky_linux_9_optimized_gcp.cfg │ │ │ ├── rocky_linux_9_optimized_gcp_accelerator.cfg │ │ │ ├── rocky_linux_9_optimized_gcp_accelerator_550.cfg │ │ │ ├── rocky_linux_9_optimized_gcp_accelerator_570.cfg │ │ │ └── rocky_linux_9_optimized_gcp_arm64.cfg │ │ ├── rhel_10.wf.json │ │ ├── rhel_10_0_eus.wf.json │ │ ├── rhel_10_0_eus_arm64.wf.json │ │ ├── rhel_10_0_eus_byos.wf.json │ │ ├── rhel_10_0_eus_byos_arm64.wf.json │ │ ├── rhel_10_arm64.wf.json │ │ ├── rhel_10_byos.wf.json │ │ ├── rhel_10_byos_arm64.wf.json │ │ ├── rhel_8.wf.json │ │ ├── rhel_8_10_sap.wf.json │ │ ├── rhel_8_10_sap_byos.wf.json │ │ ├── rhel_8_4_sap.wf.json │ │ ├── rhel_8_4_sap_byos.wf.json │ │ ├── rhel_8_6_sap.wf.json │ │ ├── rhel_8_6_sap_byos.wf.json │ │ ├── rhel_8_8_sap.wf.json │ │ ├── rhel_8_8_sap_byos.wf.json │ │ ├── rhel_8_arm64.wf.json │ │ ├── rhel_8_byos.wf.json │ │ ├── rhel_8_byos_arm64.wf.json │ │ ├── rhel_9.wf.json │ │ ├── rhel_9_0_sap.wf.json │ │ ├── rhel_9_0_sap_byos.wf.json │ │ ├── rhel_9_2_sap.wf.json │ │ ├── rhel_9_2_sap_byos.wf.json │ │ ├── rhel_9_4_eus.wf.json │ │ ├── rhel_9_4_eus_arm64.wf.json │ │ ├── rhel_9_4_eus_byos.wf.json │ │ ├── rhel_9_4_eus_byos_arm64.wf.json │ │ ├── rhel_9_4_sap.wf.json │ │ ├── rhel_9_4_sap_byos.wf.json │ │ ├── rhel_9_6_eus.wf.json │ │ ├── rhel_9_6_eus_arm64.wf.json │ │ ├── rhel_9_6_eus_byos.wf.json │ │ ├── rhel_9_6_eus_byos_arm64.wf.json │ │ ├── rhel_9_6_sap.wf.json │ │ ├── rhel_9_6_sap_byos.wf.json │ │ ├── rhel_9_arm64.wf.json │ │ ├── rhel_9_byos.wf.json │ │ ├── rhel_9_byos_arm64.wf.json │ │ ├── rocky_accelerated.wf.json │ │ ├── rocky_linux_8.wf.json │ │ ├── rocky_linux_8_optimized_gcp.wf.json │ │ ├── rocky_linux_8_optimized_gcp_arm64.wf.json │ │ ├── rocky_linux_8_optimized_gcp_nvidia_550.wf.json │ │ ├── rocky_linux_8_optimized_gcp_nvidia_570.wf.json │ │ ├── rocky_linux_8_optimized_gcp_nvidia_latest.wf.json │ │ ├── rocky_linux_9.wf.json │ │ ├── rocky_linux_9_arm64.wf.json │ │ ├── rocky_linux_9_optimized_gcp.wf.json │ │ ├── rocky_linux_9_optimized_gcp_arm64.wf.json │ │ ├── rocky_linux_9_optimized_gcp_nvidia_550.wf.json │ │ ├── rocky_linux_9_optimized_gcp_nvidia_570.wf.json │ │ └── rocky_linux_9_optimized_gcp_nvidia_latest.wf.json │ ├── install_package │ │ ├── cos │ │ │ ├── install_package_cos.wf.json │ │ │ ├── package_replacement │ │ │ │ ├── compile_debian_package.sh │ │ │ │ ├── dev_cloudbuild.yaml │ │ │ │ ├── disable_auto_updates.sh │ │ │ │ ├── disable_readonly_rootfs.sh │ │ │ │ ├── enable_readonly_rootfs.sh │ │ │ │ ├── install_go.sh │ │ │ │ └── preload.sh │ │ │ └── replacepackage.sh │ │ ├── install_package.wf.json │ │ ├── installpackage.py │ │ └── windows │ │ │ ├── install_package.wf.json │ │ │ └── installpackage.ps1 │ ├── sqlserver │ │ ├── README.md │ │ ├── configs │ │ │ ├── sql_server_2012.ini │ │ │ ├── sql_server_2012_core.ini │ │ │ ├── sql_server_2014.ini │ │ │ ├── sql_server_2014_core.ini │ │ │ ├── sql_server_2016.ini │ │ │ ├── sql_server_2016_core.ini │ │ │ ├── sql_server_2017.ini │ │ │ ├── sql_server_2017_core.ini │ │ │ ├── sql_server_2019.ini │ │ │ ├── sql_server_2022.ini │ │ │ └── sql_server_2025.ini │ │ ├── sql-2012-enterprise-windows-2012-r2-dc.wf.json │ │ ├── sql-2012-enterprise-windows-2012-r2.wf.json │ │ ├── sql-2012-standard-windows-2012-r2-dc.wf.json │ │ ├── sql-2012-standard-windows-2012-r2.wf.json │ │ ├── sql-2012-web-windows-2012-r2-dc.wf.json │ │ ├── sql-2012-web-windows-2012-r2.wf.json │ │ ├── sql-2014-enterprise-windows-2012-r2-dc.wf.json │ │ ├── sql-2014-enterprise-windows-2012-r2.wf.json │ │ ├── sql-2014-enterprise-windows-2016-dc.wf.json │ │ ├── sql-2014-enterprise-windows-2016.wf.json │ │ ├── sql-2014-standard-windows-2012-r2-dc.wf.json │ │ ├── sql-2014-standard-windows-2012-r2.wf.json │ │ ├── sql-2014-web-windows-2012-r2-dc.wf.json │ │ ├── sql-2014-web-windows-2012-r2.wf.json │ │ ├── sql-2016-enterprise-windows-2012-r2-dc.wf.json │ │ ├── sql-2016-enterprise-windows-2012-r2.wf.json │ │ ├── sql-2016-enterprise-windows-2016-dc.wf.json │ │ ├── sql-2016-enterprise-windows-2016.wf.json │ │ ├── sql-2016-enterprise-windows-2019-dc.wf.json │ │ ├── sql-2016-enterprise-windows-2019.wf.json │ │ ├── sql-2016-standard-windows-2012-r2-dc.wf.json │ │ ├── sql-2016-standard-windows-2012-r2.wf.json │ │ ├── sql-2016-standard-windows-2016-dc.wf.json │ │ ├── sql-2016-standard-windows-2016.wf.json │ │ ├── sql-2016-standard-windows-2019-dc.wf.json │ │ ├── sql-2016-standard-windows-2019.wf.json │ │ ├── sql-2016-web-windows-2012-r2-dc.wf.json │ │ ├── sql-2016-web-windows-2012-r2.wf.json │ │ ├── sql-2016-web-windows-2016-dc.wf.json │ │ ├── sql-2016-web-windows-2016.wf.json │ │ ├── sql-2016-web-windows-2019-dc.wf.json │ │ ├── sql-2016-web-windows-2019.wf.json │ │ ├── sql-2017-enterprise-windows-2016-dc.wf.json │ │ ├── sql-2017-enterprise-windows-2016.wf.json │ │ ├── sql-2017-enterprise-windows-2019-dc.wf.json │ │ ├── sql-2017-enterprise-windows-2019.wf.json │ │ ├── sql-2017-enterprise-windows-2022-dc.wf.json │ │ ├── sql-2017-enterprise-windows-2022.wf.json │ │ ├── sql-2017-enterprise-windows-2025-dc.wf.json │ │ ├── sql-2017-express-windows-2012-r2-dc.wf.json │ │ ├── sql-2017-express-windows-2012-r2.wf.json │ │ ├── sql-2017-express-windows-2016-dc.wf.json │ │ ├── sql-2017-express-windows-2016.wf.json │ │ ├── sql-2017-express-windows-2019-dc.wf.json │ │ ├── sql-2017-express-windows-2019.wf.json │ │ ├── sql-2017-express-windows-2022-dc.wf.json │ │ ├── sql-2017-express-windows-2025-dc.wf.json │ │ ├── sql-2017-standard-windows-2016-dc.wf.json │ │ ├── sql-2017-standard-windows-2016.wf.json │ │ ├── sql-2017-standard-windows-2019-dc.wf.json │ │ ├── sql-2017-standard-windows-2019.wf.json │ │ ├── sql-2017-standard-windows-2022-dc.wf.json │ │ ├── sql-2017-standard-windows-2022.wf.json │ │ ├── sql-2017-standard-windows-2025-dc.wf.json │ │ ├── sql-2017-web-windows-2016-dc.wf.json │ │ ├── sql-2017-web-windows-2016.wf.json │ │ ├── sql-2017-web-windows-2019-dc.wf.json │ │ ├── sql-2017-web-windows-2019.wf.json │ │ ├── sql-2017-web-windows-2022-dc.wf.json │ │ ├── sql-2017-web-windows-2022.wf.json │ │ ├── sql-2017-web-windows-2025-dc.wf.json │ │ ├── sql-2019-enterprise-windows-2019-dc.wf.json │ │ ├── sql-2019-enterprise-windows-2019.wf.json │ │ ├── sql-2019-enterprise-windows-2022-dc.wf.json │ │ ├── sql-2019-enterprise-windows-2022.wf.json │ │ ├── sql-2019-enterprise-windows-2025-dc.wf.json │ │ ├── sql-2019-standard-windows-2019-dc.wf.json │ │ ├── sql-2019-standard-windows-2019.wf.json │ │ ├── sql-2019-standard-windows-2022-dc.wf.json │ │ ├── sql-2019-standard-windows-2022.wf.json │ │ ├── sql-2019-standard-windows-2025-dc.wf.json │ │ ├── sql-2019-web-windows-2019-dc.wf.json │ │ ├── sql-2019-web-windows-2019.wf.json │ │ ├── sql-2019-web-windows-2022-dc.wf.json │ │ ├── sql-2019-web-windows-2022.wf.json │ │ ├── sql-2019-web-windows-2025-dc.wf.json │ │ ├── sql-2022-enterprise-windows-2019-dc.wf.json │ │ ├── sql-2022-enterprise-windows-2019.wf.json │ │ ├── sql-2022-enterprise-windows-2022-dc.wf.json │ │ ├── sql-2022-enterprise-windows-2022.wf.json │ │ ├── sql-2022-enterprise-windows-2025-dc.wf.json │ │ ├── sql-2022-express-windows-2022-dc.wf.json │ │ ├── sql-2022-express-windows-2025-dc.wf.json │ │ ├── sql-2022-preview-windows-2022-dc.wf.json │ │ ├── sql-2022-preview-windows-2022.wf.json │ │ ├── sql-2022-standard-windows-2019-dc.wf.json │ │ ├── sql-2022-standard-windows-2019.wf.json │ │ ├── sql-2022-standard-windows-2022-dc.wf.json │ │ ├── sql-2022-standard-windows-2022.wf.json │ │ ├── sql-2022-standard-windows-2025-dc.wf.json │ │ ├── sql-2022-web-windows-2019-dc.wf.json │ │ ├── sql-2022-web-windows-2019.wf.json │ │ ├── sql-2022-web-windows-2022-dc.wf.json │ │ ├── sql-2022-web-windows-2022.wf.json │ │ ├── sql-2022-web-windows-2025-dc.wf.json │ │ ├── sql-2025-enterprise-windows-2019-dc.wf.json │ │ ├── sql-2025-enterprise-windows-2022-dc.wf.json │ │ ├── sql-2025-enterprise-windows-2025-dc.wf.json │ │ ├── sql-2025-standard-windows-2019-dc.wf.json │ │ ├── sql-2025-standard-windows-2022-dc.wf.json │ │ ├── sql-2025-standard-windows-2025-dc.wf.json │ │ ├── sql_install.ps1 │ │ └── sqlserver.wf.json │ ├── windows │ │ ├── README.md │ │ ├── bootstrap_install.ps1 │ │ ├── components │ │ │ ├── Autounattend-template.xml │ │ │ └── SetupComplete.cmd │ │ ├── post_install.ps1 │ │ ├── windows-10-20h2-ent-x64-uefi.wf.json │ │ ├── windows-10-20h2-ent-x86-bios.wf.json │ │ ├── windows-10-21h2-ent-x64-uefi.wf.json │ │ ├── windows-10-21h2-ent-x86-bios.wf.json │ │ ├── windows-10-22h2-ent-x64-uefi.wf.json │ │ ├── windows-10-22h2-ent-x86-bios.wf.json │ │ ├── windows-11-21h2-ent-x64-uefi.wf.json │ │ ├── windows-11-22h2-ent-x64-uefi.wf.json │ │ ├── windows-11-23h2-ent-x64-uefi.wf.json │ │ ├── windows-11-24h2-ent-x64-uefi.wf.json │ │ ├── windows-11-25h2-ent-x64-uefi.wf.json │ │ ├── windows-11-preview-ent-x64-uefi.wf.json │ │ ├── windows-81-ent-x64-uefi-byol.wf.json │ │ ├── windows-build-bios.wf.json │ │ ├── windows-build-uefi.wf.json │ │ ├── windows-server-2012-r2-core-uefi-byol.wf.json │ │ ├── windows-server-2012-r2-core-uefi-payg.wf.json │ │ ├── windows-server-2012-r2-dc-bios.wf.json │ │ ├── windows-server-2012-r2-dc-core-uefi-byol.wf.json │ │ ├── windows-server-2012-r2-dc-core-uefi-payg.wf.json │ │ ├── windows-server-2012-r2-dc-uefi-byol.wf.json │ │ ├── windows-server-2012-r2-dc-uefi-payg.wf.json │ │ ├── windows-server-2012-r2-uefi-byol.wf.json │ │ ├── windows-server-2012-r2-uefi-payg.wf.json │ │ ├── windows-server-2016-core-uefi-byol.wf.json │ │ ├── windows-server-2016-core-uefi-payg.wf.json │ │ ├── windows-server-2016-dc-bios.wf.json │ │ ├── windows-server-2016-dc-core-uefi-byol.wf.json │ │ ├── windows-server-2016-dc-core-uefi-payg.wf.json │ │ ├── windows-server-2016-dc-uefi-byol.wf.json │ │ ├── windows-server-2016-dc-uefi-payg.wf.json │ │ ├── windows-server-2016-uefi-byol.wf.json │ │ ├── windows-server-2016-uefi-payg.wf.json │ │ ├── windows-server-2019-core-uefi-byol.wf.json │ │ ├── windows-server-2019-core-uefi-payg.wf.json │ │ ├── windows-server-2019-dc-bios.wf.json │ │ ├── windows-server-2019-dc-core-uefi-byol.wf.json │ │ ├── windows-server-2019-dc-core-uefi-payg.wf.json │ │ ├── windows-server-2019-dc-uefi-byol.wf.json │ │ ├── windows-server-2019-dc-uefi-payg.wf.json │ │ ├── windows-server-2019-uefi-byol.wf.json │ │ ├── windows-server-2019-uefi-payg.wf.json │ │ ├── windows-server-2022-core-uefi-byol.wf.json │ │ ├── windows-server-2022-core-uefi-payg.wf.json │ │ ├── windows-server-2022-dc-bios.wf.json │ │ ├── windows-server-2022-dc-core-uefi-byol.wf.json │ │ ├── windows-server-2022-dc-core-uefi-payg.wf.json │ │ ├── windows-server-2022-dc-uefi-payg.wf.json │ │ ├── windows-server-2022-uefi-payg.wf.json │ │ ├── windows-server-2025-core-uefi-byol.wf.json │ │ ├── windows-server-2025-core-uefi-payg.wf.json │ │ ├── windows-server-2025-dc-core-uefi-byol.wf.json │ │ ├── windows-server-2025-dc-core-uefi-payg.wf.json │ │ ├── windows-server-2025-dc-uefi-byol.wf.json │ │ ├── windows-server-2025-dc-uefi-payg.wf.json │ │ ├── windows-server-2025-uefi-byol.wf.json │ │ ├── windows-server-2025-uefi-payg.wf.json │ │ ├── windows-server-preview-dc-uefi-payg.wf.json │ │ └── windows_install_media │ │ │ ├── components │ │ │ ├── 2012_R2_64Bit │ │ │ │ ├── install_unattend.xml │ │ │ │ ├── unattend │ │ │ │ │ ├── upgrade_unattend.xml │ │ │ │ │ └── upgrade_unattend_core.xml │ │ │ │ └── upgrade.ps1 │ │ │ ├── 2016_64Bit │ │ │ │ └── upgrade.ps1 │ │ │ ├── 2019_64Bit │ │ │ │ └── upgrade.ps1 │ │ │ ├── 2022_64Bit │ │ │ │ └── upgrade.ps1 │ │ │ ├── 2025_64Bit │ │ │ │ └── upgrade.ps1 │ │ │ └── common │ │ │ │ ├── config.psm1 │ │ │ │ ├── logging.psm1 │ │ │ │ └── setup-logger.ps1 │ │ │ └── prepare_install_media.ps1 │ └── windows_for_containers │ │ ├── container_image_install.ps1 │ │ ├── container_image_install_ce.ps1 │ │ ├── windows-2019-core-for-containers-uefi.wf.json │ │ ├── windows-2019-core-for-containers.wf.json │ │ ├── windows-2019-dc-core-for-containers-ce-uefi.wf.json │ │ ├── windows-2019-dc-core-for-containers-uefi.wf.json │ │ ├── windows-2019-dc-core-for-containers.wf.json │ │ ├── windows-2019-dc-for-containers-ce-uefi.wf.json │ │ ├── windows-2019-dc-for-containers-uefi.wf.json │ │ ├── windows-2019-dc-for-containers.wf.json │ │ ├── windows-2019-for-containers-uefi.wf.json │ │ └── windows-2019-for-containers.wf.json ├── kernel_commit_query │ ├── debian.sh │ ├── kcq.py │ ├── kernel_commit_query.wf.json │ ├── rhel.sh │ ├── rocky.sh │ ├── suse.sh │ └── ubuntu.sh ├── linux_common │ ├── bootstrap.sh │ ├── pyproject.toml │ ├── setup.py │ ├── tests │ │ ├── __init__.py │ │ ├── test_apt.py │ │ ├── test_configs.py │ │ └── test_guestfsprocess.py │ └── utils │ │ ├── __init__.py │ │ ├── apt.py │ │ ├── common.py │ │ ├── configs.py │ │ ├── diskutils.py │ │ └── guestfsprocess.py ├── ovf_import │ ├── create_gmi.wf.json │ ├── create_instance.wf.json │ ├── import_ovf_to_instance.wf.json │ └── import_ovf_to_machine_image.wf.json └── sbom_validation │ ├── README.md │ ├── enterprise_sbom_test.wf.json │ ├── test_sbom_export.sh │ └── windows_sbom_validation.wf.json ├── gce_export.Dockerfile ├── gce_image_publish.Dockerfile ├── gce_recovery_scripts ├── README.md ├── recover_windows_instance.sh └── reinstall-gvnic-gq.ps1 ├── gce_windows_upgrade.Dockerfile ├── gce_windows_upgrade_tests.Dockerfile ├── go └── e2e_test_utils │ ├── go.mod │ ├── go.sum │ ├── junitxml │ └── junitxml.go │ ├── launcher.go │ └── test_config │ └── project_config.go ├── image_test ├── README.md ├── boot │ ├── README.md │ ├── boot.bat │ ├── boot.sh │ └── boot.wf.json ├── configuration │ ├── README.md │ ├── linux-configuration.wf.json │ ├── linux │ │ ├── centos.py │ │ ├── configuration-test.py │ │ ├── debian.py │ │ ├── freebsd.py │ │ ├── generic_distro.py │ │ ├── redhat.py │ │ ├── suse.py │ │ └── ubuntu.py │ ├── windows-configuration.wf.json │ └── windows │ │ └── test_config.ps1 ├── disk │ ├── README.md │ ├── disk-local-ssd.bat │ ├── disk-local-ssd.sh │ ├── disk-testee.bat │ ├── disk-testee.sh │ └── disk.wf.json ├── linux_images.test.gotmpl ├── metadata-script │ ├── README.md │ ├── junk.ps1 │ ├── metadata-script-inc │ │ ├── create-instance-no-scope.wf.json │ │ ├── create-instance.wf.json │ │ ├── shutdown-check.wf.json │ │ ├── startup-check.wf.json │ │ └── wait-message.wf.json │ ├── metadata-script-test-shutdown-hash.ps1 │ ├── metadata-script-test-shutdown-hash.sh │ ├── metadata-script-test-startup-hash.ps1 │ ├── metadata-script-test-startup-hash.sh │ ├── shutdown-script-integrity.wf.json │ ├── shutdown-script-junk.wf.json │ ├── shutdown-script-linux.wf.json │ ├── shutdown-script-noscript.wf.json │ ├── shutdown-script-windows.wf.json │ ├── shutdown-script.wf.json │ ├── startup-script-for-shutdown-tests.ps1 │ ├── startup-script-for-shutdown-tests.sh │ ├── startup-script-integrity.wf.json │ ├── startup-script-junk.wf.json │ ├── startup-script-linux.wf.json │ ├── startup-script-noscript.wf.json │ ├── startup-script-windows.wf.json │ ├── startup-script.wf.json │ ├── sysprep-script-integrity.wf.json │ ├── sysprep-script-junk.wf.json │ ├── sysprep-script-noscript.wf.json │ ├── sysprep-script-windows.wf.json │ └── sysprep-script.wf.json ├── metadata-ssh │ ├── README.md │ ├── metadata-ssh-tester.py │ └── metadata-ssh.wf.json ├── multi-nic │ ├── README.md │ ├── multi-nic-master.bat │ ├── multi-nic-master.sh │ ├── multi-nic-slave.bat │ ├── multi-nic-slave.sh │ └── multi-nic.wf.json ├── network │ ├── README.md │ ├── network-testee-checker.bat │ ├── network-testee-checker.sh │ ├── network-testee.ps1 │ ├── network-testee.sh │ ├── network-tester.py │ └── network.wf.json ├── oslogin-ssh │ ├── README.md │ ├── oslogin-ssh-master-tester.py │ ├── oslogin-ssh.wf.json │ └── oslogin_slave_tester.sh └── windows_images.test.gotmpl ├── proto ├── README ├── go │ ├── go.mod │ ├── go.sum │ ├── pb │ │ ├── inspect.pb.go │ │ └── output_info.pb.go │ └── pbtesting │ │ ├── assert_matcher.go │ │ └── gomock_matcher.go ├── inspect.proto ├── output_info.proto ├── py │ ├── compute_image_tools_proto │ │ ├── inspect_pb2.py │ │ ├── inspect_pb2.pyi │ │ ├── output_info_pb2.py │ │ └── output_info_pb2.pyi │ └── setup.py └── updatepb.sh ├── prowjobs_cloudbuild.yaml ├── rollout ├── cli_tools_cloudbuild_build.yaml ├── cli_tools_cloudbuild_build_prepare.yaml ├── cli_tools_cloudbuild_deploy.yaml ├── cli_tools_cloudbuild_release_workflow.yaml └── cli_tools_cloudbuild_rollback.yaml └── run_e2e.sh /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/LICENSE -------------------------------------------------------------------------------- /OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/OWNERS -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/README.md -------------------------------------------------------------------------------- /cli_tools/common/assert/assert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/common/assert/assert.go -------------------------------------------------------------------------------- /cli_tools/common/assert/assert_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/common/assert/assert_test.go -------------------------------------------------------------------------------- /cli_tools/common/assert/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/common/assert/doc.go -------------------------------------------------------------------------------- /cli_tools/common/deleter/resource_deleter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/common/deleter/resource_deleter.go -------------------------------------------------------------------------------- /cli_tools/common/deleter/resource_deleter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/common/deleter/resource_deleter_test.go -------------------------------------------------------------------------------- /cli_tools/common/disk/disk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/common/disk/disk.go -------------------------------------------------------------------------------- /cli_tools/common/disk/disk_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/common/disk/disk_test.go -------------------------------------------------------------------------------- /cli_tools/common/disk/inspect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/common/disk/inspect.go -------------------------------------------------------------------------------- /cli_tools/common/disk/inspect_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/common/disk/inspect_test.go -------------------------------------------------------------------------------- /cli_tools/common/disk/mocks/mock_inspect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/common/disk/mocks/mock_inspect.go -------------------------------------------------------------------------------- /cli_tools/common/distro/distro.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/common/distro/distro.go -------------------------------------------------------------------------------- /cli_tools/common/distro/distro_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/common/distro/distro_test.go -------------------------------------------------------------------------------- /cli_tools/common/domain/interfaces.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/common/domain/interfaces.go -------------------------------------------------------------------------------- /cli_tools/common/gcsfuse/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/common/gcsfuse/client.go -------------------------------------------------------------------------------- /cli_tools/common/image/image.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/common/image/image.go -------------------------------------------------------------------------------- /cli_tools/common/image/image_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/common/image/image_test.go -------------------------------------------------------------------------------- /cli_tools/common/imagefile/inspector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/common/imagefile/inspector.go -------------------------------------------------------------------------------- /cli_tools/common/imagefile/inspector_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/common/imagefile/inspector_test.go -------------------------------------------------------------------------------- /cli_tools/common/imagefile/qemu_img.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/common/imagefile/qemu_img.go -------------------------------------------------------------------------------- /cli_tools/common/imagefile/qemu_img_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/common/imagefile/qemu_img_test.go -------------------------------------------------------------------------------- /cli_tools/common/mount/inspector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/common/mount/inspector.go -------------------------------------------------------------------------------- /cli_tools/common/mount/inspector_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/common/mount/inspector_test.go -------------------------------------------------------------------------------- /cli_tools/common/mount/mock_mount_inspector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/common/mount/mock_mount_inspector.go -------------------------------------------------------------------------------- /cli_tools/common/utils/collections/collections_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/common/utils/collections/collections_utils.go -------------------------------------------------------------------------------- /cli_tools/common/utils/collections/collections_utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/common/utils/collections/collections_utils_test.go -------------------------------------------------------------------------------- /cli_tools/common/utils/compute/metadata_gce.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/common/utils/compute/metadata_gce.go -------------------------------------------------------------------------------- /cli_tools/common/utils/compute/node_affinity_label_parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/common/utils/compute/node_affinity_label_parser.go -------------------------------------------------------------------------------- /cli_tools/common/utils/compute/node_affinity_label_parser_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/common/utils/compute/node_affinity_label_parser_test.go -------------------------------------------------------------------------------- /cli_tools/common/utils/compute/zone_validator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/common/utils/compute/zone_validator.go -------------------------------------------------------------------------------- /cli_tools/common/utils/compute/zone_validator_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/common/utils/compute/zone_validator_test.go -------------------------------------------------------------------------------- /cli_tools/common/utils/daisyutils/daisy_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/common/utils/daisyutils/daisy_utils.go -------------------------------------------------------------------------------- /cli_tools/common/utils/daisyutils/daisy_utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/common/utils/daisyutils/daisy_utils_test.go -------------------------------------------------------------------------------- /cli_tools/common/utils/daisyutils/daisy_worker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/common/utils/daisyutils/daisy_worker.go -------------------------------------------------------------------------------- /cli_tools/common/utils/daisyutils/daisy_worker_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/common/utils/daisyutils/daisy_worker_test.go -------------------------------------------------------------------------------- /cli_tools/common/utils/daisyutils/daisy_worker_testing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/common/utils/daisyutils/daisy_worker_testing.go -------------------------------------------------------------------------------- /cli_tools/common/utils/daisyutils/io.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/common/utils/daisyutils/io.go -------------------------------------------------------------------------------- /cli_tools/common/utils/daisyutils/io_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/common/utils/daisyutils/io_test.go -------------------------------------------------------------------------------- /cli_tools/common/utils/daisyutils/test_data/test.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/common/utils/daisyutils/test_data/test.wf.json -------------------------------------------------------------------------------- /cli_tools/common/utils/daisyutils/workflow_hook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/common/utils/daisyutils/workflow_hook.go -------------------------------------------------------------------------------- /cli_tools/common/utils/daisyutils/workflow_hook_fallback_pd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/common/utils/daisyutils/workflow_hook_fallback_pd.go -------------------------------------------------------------------------------- /cli_tools/common/utils/daisyutils/workflow_hook_fallback_pd_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/common/utils/daisyutils/workflow_hook_fallback_pd_test.go -------------------------------------------------------------------------------- /cli_tools/common/utils/daisyutils/workflow_hook_logging.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/common/utils/daisyutils/workflow_hook_logging.go -------------------------------------------------------------------------------- /cli_tools/common/utils/daisyutils/workflow_hook_logging_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/common/utils/daisyutils/workflow_hook_logging_test.go -------------------------------------------------------------------------------- /cli_tools/common/utils/daisyutils/workflow_hook_no_external_ip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/common/utils/daisyutils/workflow_hook_no_external_ip.go -------------------------------------------------------------------------------- /cli_tools/common/utils/daisyutils/workflow_hook_no_external_ip_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/common/utils/daisyutils/workflow_hook_no_external_ip_test.go -------------------------------------------------------------------------------- /cli_tools/common/utils/daisyutils/workflow_hook_resource_labeler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/common/utils/daisyutils/workflow_hook_resource_labeler.go -------------------------------------------------------------------------------- /cli_tools/common/utils/daisyutils/workflow_hook_resource_labeler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/common/utils/daisyutils/workflow_hook_resource_labeler_test.go -------------------------------------------------------------------------------- /cli_tools/common/utils/daisyutils/workflow_hook_workflow_properties.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/common/utils/daisyutils/workflow_hook_workflow_properties.go -------------------------------------------------------------------------------- /cli_tools/common/utils/daisyutils/workflow_hook_workflow_properties_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/common/utils/daisyutils/workflow_hook_workflow_properties_test.go -------------------------------------------------------------------------------- /cli_tools/common/utils/daisyutils/workflow_hook_workflow_vars.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/common/utils/daisyutils/workflow_hook_workflow_vars.go -------------------------------------------------------------------------------- /cli_tools/common/utils/daisyutils/workflow_hook_workflow_vars_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/common/utils/daisyutils/workflow_hook_workflow_vars_test.go -------------------------------------------------------------------------------- /cli_tools/common/utils/files/files.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/common/utils/files/files.go -------------------------------------------------------------------------------- /cli_tools/common/utils/files/files_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/common/utils/files/files_test.go -------------------------------------------------------------------------------- /cli_tools/common/utils/flags/key_value_flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/common/utils/flags/key_value_flag.go -------------------------------------------------------------------------------- /cli_tools/common/utils/flags/key_value_flag_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/common/utils/flags/key_value_flag_test.go -------------------------------------------------------------------------------- /cli_tools/common/utils/flags/string_array_flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/common/utils/flags/string_array_flag.go -------------------------------------------------------------------------------- /cli_tools/common/utils/flags/string_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/common/utils/flags/string_utils.go -------------------------------------------------------------------------------- /cli_tools/common/utils/flags/string_utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/common/utils/flags/string_utils_test.go -------------------------------------------------------------------------------- /cli_tools/common/utils/logging/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/common/utils/logging/logger.go -------------------------------------------------------------------------------- /cli_tools/common/utils/logging/logger_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/common/utils/logging/logger_test.go -------------------------------------------------------------------------------- /cli_tools/common/utils/logging/service/literal_loggable.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/common/utils/logging/service/literal_loggable.go -------------------------------------------------------------------------------- /cli_tools/common/utils/logging/service/literal_loggable_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/common/utils/logging/service/literal_loggable_test.go -------------------------------------------------------------------------------- /cli_tools/common/utils/logging/service/log_entry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/common/utils/logging/service/log_entry.go -------------------------------------------------------------------------------- /cli_tools/common/utils/logging/service/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/common/utils/logging/service/logger.go -------------------------------------------------------------------------------- /cli_tools/common/utils/logging/service/logger_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/common/utils/logging/service/logger_test.go -------------------------------------------------------------------------------- /cli_tools/common/utils/logging/service/outputinfo_loggable.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/common/utils/logging/service/outputinfo_loggable.go -------------------------------------------------------------------------------- /cli_tools/common/utils/logging/service/outputinfo_loggable_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/common/utils/logging/service/outputinfo_loggable_test.go -------------------------------------------------------------------------------- /cli_tools/common/utils/param/key_value_parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/common/utils/param/key_value_parser.go -------------------------------------------------------------------------------- /cli_tools/common/utils/param/key_value_parser_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/common/utils/param/key_value_parser_test.go -------------------------------------------------------------------------------- /cli_tools/common/utils/param/network_resolver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/common/utils/param/network_resolver.go -------------------------------------------------------------------------------- /cli_tools/common/utils/param/network_resolver_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/common/utils/param/network_resolver_test.go -------------------------------------------------------------------------------- /cli_tools/common/utils/param/param_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/common/utils/param/param_utils.go -------------------------------------------------------------------------------- /cli_tools/common/utils/param/param_utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/common/utils/param/param_utils_test.go -------------------------------------------------------------------------------- /cli_tools/common/utils/param/populator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/common/utils/param/populator.go -------------------------------------------------------------------------------- /cli_tools/common/utils/param/populator_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/common/utils/param/populator_test.go -------------------------------------------------------------------------------- /cli_tools/common/utils/paramhelper/network.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/common/utils/paramhelper/network.go -------------------------------------------------------------------------------- /cli_tools/common/utils/paramhelper/network_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/common/utils/paramhelper/network_test.go -------------------------------------------------------------------------------- /cli_tools/common/utils/paramhelper/region.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/common/utils/paramhelper/region.go -------------------------------------------------------------------------------- /cli_tools/common/utils/paramhelper/resources.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/common/utils/paramhelper/resources.go -------------------------------------------------------------------------------- /cli_tools/common/utils/paramhelper/resources_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/common/utils/paramhelper/resources_test.go -------------------------------------------------------------------------------- /cli_tools/common/utils/paramhelper/subnet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/common/utils/paramhelper/subnet.go -------------------------------------------------------------------------------- /cli_tools/common/utils/paramhelper/subnet_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/common/utils/paramhelper/subnet_test.go -------------------------------------------------------------------------------- /cli_tools/common/utils/path/path_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/common/utils/path/path_utils.go -------------------------------------------------------------------------------- /cli_tools/common/utils/shell/executor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/common/utils/shell/executor.go -------------------------------------------------------------------------------- /cli_tools/common/utils/storage/bucket_iterator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/common/utils/storage/bucket_iterator.go -------------------------------------------------------------------------------- /cli_tools/common/utils/storage/buffered_writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/common/utils/storage/buffered_writer.go -------------------------------------------------------------------------------- /cli_tools/common/utils/storage/buffered_writer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/common/utils/storage/buffered_writer_test.go -------------------------------------------------------------------------------- /cli_tools/common/utils/storage/object_iterator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/common/utils/storage/object_iterator.go -------------------------------------------------------------------------------- /cli_tools/common/utils/storage/resource_location_retriever.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/common/utils/storage/resource_location_retriever.go -------------------------------------------------------------------------------- /cli_tools/common/utils/storage/resource_location_retriever_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/common/utils/storage/resource_location_retriever_test.go -------------------------------------------------------------------------------- /cli_tools/common/utils/storage/scratch_bucket_creator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/common/utils/storage/scratch_bucket_creator.go -------------------------------------------------------------------------------- /cli_tools/common/utils/storage/scratch_bucket_creator_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/common/utils/storage/scratch_bucket_creator_test.go -------------------------------------------------------------------------------- /cli_tools/common/utils/storage/storage_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/common/utils/storage/storage_client.go -------------------------------------------------------------------------------- /cli_tools/common/utils/storage/storage_client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/common/utils/storage/storage_client_test.go -------------------------------------------------------------------------------- /cli_tools/common/utils/storage/storage_object.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/common/utils/storage/storage_object.go -------------------------------------------------------------------------------- /cli_tools/common/utils/storage/tar_gcs_extractor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/common/utils/storage/tar_gcs_extractor.go -------------------------------------------------------------------------------- /cli_tools/common/utils/storage/tar_gcs_extractor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/common/utils/storage/tar_gcs_extractor_test.go -------------------------------------------------------------------------------- /cli_tools/common/utils/string/string_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/common/utils/string/string_utils.go -------------------------------------------------------------------------------- /cli_tools/common/utils/string/string_utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/common/utils/string/string_utils_test.go -------------------------------------------------------------------------------- /cli_tools/common/utils/test/test_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/common/utils/test/test_utils.go -------------------------------------------------------------------------------- /cli_tools/common/utils/validation/validation_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/common/utils/validation/validation_utils.go -------------------------------------------------------------------------------- /cli_tools/common/utils/validation/validation_utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/common/utils/validation/validation_utils_test.go -------------------------------------------------------------------------------- /cli_tools/diagnostics/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/diagnostics/main.go -------------------------------------------------------------------------------- /cli_tools/diagnostics/main_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/diagnostics/main_windows.go -------------------------------------------------------------------------------- /cli_tools/diagnostics/main_windows_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/diagnostics/main_windows_test.go -------------------------------------------------------------------------------- /cli_tools/diagnostics/rdp_status.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/diagnostics/rdp_status.ps1 -------------------------------------------------------------------------------- /cli_tools/diagnostics/stub_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/diagnostics/stub_linux.go -------------------------------------------------------------------------------- /cli_tools/diagnostics/wmi_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/diagnostics/wmi_windows.go -------------------------------------------------------------------------------- /cli_tools/gce_export/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/gce_export/README.md -------------------------------------------------------------------------------- /cli_tools/gce_export/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/gce_export/main.go -------------------------------------------------------------------------------- /cli_tools/gce_export/main_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/gce_export/main_linux.go -------------------------------------------------------------------------------- /cli_tools/gce_export/main_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/gce_export/main_windows.go -------------------------------------------------------------------------------- /cli_tools/gce_image_publish/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/gce_image_publish/main.go -------------------------------------------------------------------------------- /cli_tools/gce_image_publish/publish/publish.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/gce_image_publish/publish/publish.go -------------------------------------------------------------------------------- /cli_tools/gce_image_publish/publish/publish_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/gce_image_publish/publish/publish_test.go -------------------------------------------------------------------------------- /cli_tools/gce_windows_upgrade/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/gce_windows_upgrade/main.go -------------------------------------------------------------------------------- /cli_tools/gce_windows_upgrade/upgrade_script.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/gce_windows_upgrade/upgrade_script.ps1 -------------------------------------------------------------------------------- /cli_tools/gce_windows_upgrade/upgrader/test_common_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/gce_windows_upgrade/upgrader/test_common_test.go -------------------------------------------------------------------------------- /cli_tools/gce_windows_upgrade/upgrader/upgrade_paths.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/gce_windows_upgrade/upgrader/upgrade_paths.go -------------------------------------------------------------------------------- /cli_tools/gce_windows_upgrade/upgrader/upgrade_paths_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/gce_windows_upgrade/upgrader/upgrade_paths_test.go -------------------------------------------------------------------------------- /cli_tools/gce_windows_upgrade/upgrader/upgrader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/gce_windows_upgrade/upgrader/upgrader.go -------------------------------------------------------------------------------- /cli_tools/gce_windows_upgrade/upgrader/upgrader_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/gce_windows_upgrade/upgrader/upgrader_test.go -------------------------------------------------------------------------------- /cli_tools/gce_windows_upgrade/upgrader/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/gce_windows_upgrade/upgrader/utils.go -------------------------------------------------------------------------------- /cli_tools/gce_windows_upgrade/upgrader/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/gce_windows_upgrade/upgrader/utils_test.go -------------------------------------------------------------------------------- /cli_tools/gce_windows_upgrade/upgrader/validators.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/gce_windows_upgrade/upgrader/validators.go -------------------------------------------------------------------------------- /cli_tools/gce_windows_upgrade/upgrader/validators_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/gce_windows_upgrade/upgrader/validators_test.go -------------------------------------------------------------------------------- /cli_tools/gce_windows_upgrade/upgrader/workflows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/gce_windows_upgrade/upgrader/workflows.go -------------------------------------------------------------------------------- /cli_tools/gce_windows_upgrade/upgrader/workflows_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/gce_windows_upgrade/upgrader/workflows_test.go -------------------------------------------------------------------------------- /cli_tools/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/go.mod -------------------------------------------------------------------------------- /cli_tools/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/go.sum -------------------------------------------------------------------------------- /cli_tools/mocks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/mocks/README.md -------------------------------------------------------------------------------- /cli_tools/mocks/mock_bucket_iterator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/mocks/mock_bucket_iterator.go -------------------------------------------------------------------------------- /cli_tools/mocks/mock_bucket_iterator_creator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/mocks/mock_bucket_iterator_creator.go -------------------------------------------------------------------------------- /cli_tools/mocks/mock_compute_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/mocks/mock_compute_client.go -------------------------------------------------------------------------------- /cli_tools/mocks/mock_compute_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/mocks/mock_compute_service.go -------------------------------------------------------------------------------- /cli_tools/mocks/mock_daisy_logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/mocks/mock_daisy_logger.go -------------------------------------------------------------------------------- /cli_tools/mocks/mock_daisy_worker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/mocks/mock_daisy_worker.go -------------------------------------------------------------------------------- /cli_tools/mocks/mock_http_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/mocks/mock_http_client.go -------------------------------------------------------------------------------- /cli_tools/mocks/mock_image_deleter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/mocks/mock_image_deleter.go -------------------------------------------------------------------------------- /cli_tools/mocks/mock_logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/mocks/mock_logger.go -------------------------------------------------------------------------------- /cli_tools/mocks/mock_metadata_gce.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/mocks/mock_metadata_gce.go -------------------------------------------------------------------------------- /cli_tools/mocks/mock_network_resolver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/mocks/mock_network_resolver.go -------------------------------------------------------------------------------- /cli_tools/mocks/mock_object_iterator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/mocks/mock_object_iterator.go -------------------------------------------------------------------------------- /cli_tools/mocks/mock_object_iterator_creator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/mocks/mock_object_iterator_creator.go -------------------------------------------------------------------------------- /cli_tools/mocks/mock_param_populator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/mocks/mock_param_populator.go -------------------------------------------------------------------------------- /cli_tools/mocks/mock_reader_closer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/mocks/mock_reader_closer.go -------------------------------------------------------------------------------- /cli_tools/mocks/mock_resource_location_retriever.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/mocks/mock_resource_location_retriever.go -------------------------------------------------------------------------------- /cli_tools/mocks/mock_scratch_bucket_creator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/mocks/mock_scratch_bucket_creator.go -------------------------------------------------------------------------------- /cli_tools/mocks/mock_shell_exececutor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/mocks/mock_shell_exececutor.go -------------------------------------------------------------------------------- /cli_tools/mocks/mock_storage_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/mocks/mock_storage_client.go -------------------------------------------------------------------------------- /cli_tools/mocks/mock_storage_object.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/mocks/mock_storage_object.go -------------------------------------------------------------------------------- /cli_tools/mocks/mock_storage_object_creator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/mocks/mock_storage_object_creator.go -------------------------------------------------------------------------------- /cli_tools/mocks/mock_tar_gcs_extractor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/mocks/mock_tar_gcs_extractor.go -------------------------------------------------------------------------------- /cli_tools/mocks/mock_workflow_hook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/mocks/mock_workflow_hook.go -------------------------------------------------------------------------------- /cli_tools/mocks/mock_zone_validator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/mocks/mock_zone_validator.go -------------------------------------------------------------------------------- /cli_tools/test_data/test_tar.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/test_data/test_tar.tar -------------------------------------------------------------------------------- /cli_tools/test_data/test_tar_with_dir.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools/test_data/test_tar_with_dir.tar -------------------------------------------------------------------------------- /cli_tools_cloudbuild.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools_cloudbuild.yaml -------------------------------------------------------------------------------- /cli_tools_tests/e2e/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools_tests/e2e/README.md -------------------------------------------------------------------------------- /cli_tools_tests/e2e/assert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools_tests/e2e/assert.go -------------------------------------------------------------------------------- /cli_tools_tests/e2e/gce_windows_upgrade/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools_tests/e2e/gce_windows_upgrade/main.go -------------------------------------------------------------------------------- /cli_tools_tests/e2e/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools_tests/e2e/utils.go -------------------------------------------------------------------------------- /cli_tools_tests/e2e/variables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools_tests/e2e/variables.go -------------------------------------------------------------------------------- /cli_tools_tests/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools_tests/go.mod -------------------------------------------------------------------------------- /cli_tools_tests/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/cli_tools_tests/go.sum -------------------------------------------------------------------------------- /common/gcp/image.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/common/gcp/image.go -------------------------------------------------------------------------------- /common/gcp/instance.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/common/gcp/instance.go -------------------------------------------------------------------------------- /common/gcp/storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/common/gcp/storage.go -------------------------------------------------------------------------------- /common/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/common/go.mod -------------------------------------------------------------------------------- /common/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/common/go.sum -------------------------------------------------------------------------------- /common/logging/logging.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/common/logging/logging.go -------------------------------------------------------------------------------- /common/runtime/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/common/runtime/config.go -------------------------------------------------------------------------------- /daisy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy/README.md -------------------------------------------------------------------------------- /daisy_workflows/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/README.md -------------------------------------------------------------------------------- /daisy_workflows/build-publish/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/README.md -------------------------------------------------------------------------------- /daisy_workflows/build-publish/debian/debian_11.publish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/debian/debian_11.publish.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/debian/debian_11.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/debian/debian_11.wf.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/debian/debian_11_worker.publish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/debian/debian_11_worker.publish.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/debian/debian_11_worker.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/debian/debian_11_worker.wf.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/debian/debian_12.publish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/debian/debian_12.publish.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/debian/debian_12.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/debian/debian_12.wf.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/debian/debian_12_arm64.publish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/debian/debian_12_arm64.publish.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/debian/debian_12_arm64.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/debian/debian_12_arm64.wf.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/debian/debian_12_worker.publish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/debian/debian_12_worker.publish.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/debian/debian_12_worker.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/debian/debian_12_worker.wf.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/debian/debian_12_worker_arm64.publish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/debian/debian_12_worker_arm64.publish.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/debian/debian_12_worker_arm64.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/debian/debian_12_worker_arm64.wf.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/debian/debian_13.publish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/debian/debian_13.publish.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/debian/debian_13.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/debian/debian_13.wf.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/debian/debian_13_arm64.publish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/debian/debian_13_arm64.publish.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/debian/debian_13_arm64.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/debian/debian_13_arm64.wf.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/debian/debian_13_worker.publish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/debian/debian_13_worker.publish.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/debian/debian_13_worker.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/debian/debian_13_worker.wf.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/debian/debian_13_worker_arm64.publish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/debian/debian_13_worker_arm64.publish.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/debian/debian_13_worker_arm64.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/debian/debian_13_worker_arm64.wf.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/enterprise_linux/almalinux_8.publish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/enterprise_linux/almalinux_8.publish.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/enterprise_linux/almalinux_8.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/enterprise_linux/almalinux_8.wf.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/enterprise_linux/almalinux_9.publish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/enterprise_linux/almalinux_9.publish.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/enterprise_linux/almalinux_9.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/enterprise_linux/almalinux_9.wf.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/enterprise_linux/almalinux_9_arm64.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/enterprise_linux/almalinux_9_arm64.wf.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/enterprise_linux/centos_stream_10.publish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/enterprise_linux/centos_stream_10.publish.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/enterprise_linux/centos_stream_10.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/enterprise_linux/centos_stream_10.wf.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/enterprise_linux/centos_stream_9.publish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/enterprise_linux/centos_stream_9.publish.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/enterprise_linux/centos_stream_9.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/enterprise_linux/centos_stream_9.wf.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/enterprise_linux/centos_stream_9_arm64.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/enterprise_linux/centos_stream_9_arm64.wf.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/enterprise_linux/rhel_10.publish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/enterprise_linux/rhel_10.publish.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/enterprise_linux/rhel_10.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/enterprise_linux/rhel_10.wf.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/enterprise_linux/rhel_10_0_eus.publish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/enterprise_linux/rhel_10_0_eus.publish.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/enterprise_linux/rhel_10_0_eus.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/enterprise_linux/rhel_10_0_eus.wf.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/enterprise_linux/rhel_10_0_eus_arm64.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/enterprise_linux/rhel_10_0_eus_arm64.wf.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/enterprise_linux/rhel_10_0_eus_byos.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/enterprise_linux/rhel_10_0_eus_byos.wf.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/enterprise_linux/rhel_10_arm64.publish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/enterprise_linux/rhel_10_arm64.publish.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/enterprise_linux/rhel_10_arm64.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/enterprise_linux/rhel_10_arm64.wf.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/enterprise_linux/rhel_10_byos.publish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/enterprise_linux/rhel_10_byos.publish.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/enterprise_linux/rhel_10_byos.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/enterprise_linux/rhel_10_byos.wf.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/enterprise_linux/rhel_10_byos_arm64.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/enterprise_linux/rhel_10_byos_arm64.wf.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/enterprise_linux/rhel_8.publish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/enterprise_linux/rhel_8.publish.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/enterprise_linux/rhel_8.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/enterprise_linux/rhel_8.wf.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/enterprise_linux/rhel_8_10_sap.publish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/enterprise_linux/rhel_8_10_sap.publish.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/enterprise_linux/rhel_8_10_sap.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/enterprise_linux/rhel_8_10_sap.wf.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/enterprise_linux/rhel_8_10_sap_byos.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/enterprise_linux/rhel_8_10_sap_byos.wf.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/enterprise_linux/rhel_8_4_sap.publish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/enterprise_linux/rhel_8_4_sap.publish.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/enterprise_linux/rhel_8_4_sap.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/enterprise_linux/rhel_8_4_sap.wf.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/enterprise_linux/rhel_8_4_sap_byos.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/enterprise_linux/rhel_8_4_sap_byos.wf.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/enterprise_linux/rhel_8_6_sap.publish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/enterprise_linux/rhel_8_6_sap.publish.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/enterprise_linux/rhel_8_6_sap.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/enterprise_linux/rhel_8_6_sap.wf.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/enterprise_linux/rhel_8_6_sap_byos.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/enterprise_linux/rhel_8_6_sap_byos.wf.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/enterprise_linux/rhel_8_8_sap.publish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/enterprise_linux/rhel_8_8_sap.publish.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/enterprise_linux/rhel_8_8_sap.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/enterprise_linux/rhel_8_8_sap.wf.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/enterprise_linux/rhel_8_8_sap_byos.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/enterprise_linux/rhel_8_8_sap_byos.wf.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/enterprise_linux/rhel_8_arm64.publish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/enterprise_linux/rhel_8_arm64.publish.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/enterprise_linux/rhel_8_arm64.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/enterprise_linux/rhel_8_arm64.wf.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/enterprise_linux/rhel_8_byos.publish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/enterprise_linux/rhel_8_byos.publish.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/enterprise_linux/rhel_8_byos.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/enterprise_linux/rhel_8_byos.wf.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/enterprise_linux/rhel_8_byos_arm64.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/enterprise_linux/rhel_8_byos_arm64.wf.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/enterprise_linux/rhel_9.publish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/enterprise_linux/rhel_9.publish.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/enterprise_linux/rhel_9.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/enterprise_linux/rhel_9.wf.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/enterprise_linux/rhel_9_0_sap.publish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/enterprise_linux/rhel_9_0_sap.publish.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/enterprise_linux/rhel_9_0_sap.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/enterprise_linux/rhel_9_0_sap.wf.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/enterprise_linux/rhel_9_0_sap_byos.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/enterprise_linux/rhel_9_0_sap_byos.wf.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/enterprise_linux/rhel_9_2_sap.publish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/enterprise_linux/rhel_9_2_sap.publish.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/enterprise_linux/rhel_9_2_sap.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/enterprise_linux/rhel_9_2_sap.wf.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/enterprise_linux/rhel_9_2_sap_byos.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/enterprise_linux/rhel_9_2_sap_byos.wf.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/enterprise_linux/rhel_9_4_eus.publish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/enterprise_linux/rhel_9_4_eus.publish.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/enterprise_linux/rhel_9_4_eus.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/enterprise_linux/rhel_9_4_eus.wf.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/enterprise_linux/rhel_9_4_eus_arm64.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/enterprise_linux/rhel_9_4_eus_arm64.wf.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/enterprise_linux/rhel_9_4_eus_byos.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/enterprise_linux/rhel_9_4_eus_byos.wf.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/enterprise_linux/rhel_9_4_sap.publish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/enterprise_linux/rhel_9_4_sap.publish.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/enterprise_linux/rhel_9_4_sap.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/enterprise_linux/rhel_9_4_sap.wf.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/enterprise_linux/rhel_9_4_sap_byos.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/enterprise_linux/rhel_9_4_sap_byos.wf.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/enterprise_linux/rhel_9_6_eus.publish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/enterprise_linux/rhel_9_6_eus.publish.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/enterprise_linux/rhel_9_6_eus.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/enterprise_linux/rhel_9_6_eus.wf.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/enterprise_linux/rhel_9_6_eus_arm64.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/enterprise_linux/rhel_9_6_eus_arm64.wf.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/enterprise_linux/rhel_9_6_eus_byos.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/enterprise_linux/rhel_9_6_eus_byos.wf.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/enterprise_linux/rhel_9_6_sap.publish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/enterprise_linux/rhel_9_6_sap.publish.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/enterprise_linux/rhel_9_6_sap.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/enterprise_linux/rhel_9_6_sap.wf.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/enterprise_linux/rhel_9_6_sap_byos.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/enterprise_linux/rhel_9_6_sap_byos.wf.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/enterprise_linux/rhel_9_arm64.publish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/enterprise_linux/rhel_9_arm64.publish.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/enterprise_linux/rhel_9_arm64.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/enterprise_linux/rhel_9_arm64.wf.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/enterprise_linux/rhel_9_byos.publish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/enterprise_linux/rhel_9_byos.publish.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/enterprise_linux/rhel_9_byos.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/enterprise_linux/rhel_9_byos.wf.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/enterprise_linux/rhel_9_byos_arm64.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/enterprise_linux/rhel_9_byos_arm64.wf.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/enterprise_linux/rocky_linux_8.publish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/enterprise_linux/rocky_linux_8.publish.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/enterprise_linux/rocky_linux_8.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/enterprise_linux/rocky_linux_8.wf.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/enterprise_linux/rocky_linux_9.publish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/enterprise_linux/rocky_linux_9.publish.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/enterprise_linux/rocky_linux_9.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/enterprise_linux/rocky_linux_9.wf.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/enterprise_linux/rocky_linux_9_arm64.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/enterprise_linux/rocky_linux_9_arm64.wf.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/kokoro/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/kokoro/build.sh -------------------------------------------------------------------------------- /daisy_workflows/build-publish/kokoro/kokoro.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/kokoro/kokoro.wf.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/sqlserver/sql-2014-web-windows-2012-r2.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/sqlserver/sql-2014-web-windows-2012-r2.wf.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/sqlserver/sql-2016-web-windows-2012-r2.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/sqlserver/sql-2016-web-windows-2012-r2.wf.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/sqlserver/sql-2016-web-windows-2016-dc.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/sqlserver/sql-2016-web-windows-2016-dc.wf.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/sqlserver/sql-2016-web-windows-2016.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/sqlserver/sql-2016-web-windows-2016.wf.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/sqlserver/sql-2016-web-windows-2019-dc.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/sqlserver/sql-2016-web-windows-2019-dc.wf.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/sqlserver/sql-2016-web-windows-2019.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/sqlserver/sql-2016-web-windows-2019.wf.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/sqlserver/sql-2017-web-windows-2016-dc.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/sqlserver/sql-2017-web-windows-2016-dc.wf.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/sqlserver/sql-2017-web-windows-2016.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/sqlserver/sql-2017-web-windows-2016.wf.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/sqlserver/sql-2017-web-windows-2019-dc.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/sqlserver/sql-2017-web-windows-2019-dc.wf.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/sqlserver/sql-2017-web-windows-2019.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/sqlserver/sql-2017-web-windows-2019.wf.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/sqlserver/sql-2017-web-windows-2022-dc.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/sqlserver/sql-2017-web-windows-2022-dc.wf.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/sqlserver/sql-2017-web-windows-2022.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/sqlserver/sql-2017-web-windows-2022.wf.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/sqlserver/sql-2017-web-windows-2025-dc.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/sqlserver/sql-2017-web-windows-2025-dc.wf.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/sqlserver/sql-2019-web-windows-2019-dc.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/sqlserver/sql-2019-web-windows-2019-dc.wf.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/sqlserver/sql-2019-web-windows-2019.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/sqlserver/sql-2019-web-windows-2019.wf.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/sqlserver/sql-2019-web-windows-2022-dc.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/sqlserver/sql-2019-web-windows-2022-dc.wf.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/sqlserver/sql-2019-web-windows-2022.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/sqlserver/sql-2019-web-windows-2022.wf.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/sqlserver/sql-2019-web-windows-2025-dc.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/sqlserver/sql-2019-web-windows-2025-dc.wf.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/sqlserver/sql-2022-web-windows-2019-dc.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/sqlserver/sql-2022-web-windows-2019-dc.wf.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/sqlserver/sql-2022-web-windows-2019.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/sqlserver/sql-2022-web-windows-2019.wf.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/sqlserver/sql-2022-web-windows-2022-dc.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/sqlserver/sql-2022-web-windows-2022-dc.wf.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/sqlserver/sql-2022-web-windows-2022.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/sqlserver/sql-2022-web-windows-2022.wf.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/sqlserver/sql-2022-web-windows-2025-dc.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/sqlserver/sql-2022-web-windows-2025-dc.wf.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/test-workflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/test-workflow.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/windows/windows-10-21h2-ent-x64-uefi.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/windows/windows-10-21h2-ent-x64-uefi.wf.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/windows/windows-10-21h2-ent-x86-bios.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/windows/windows-10-21h2-ent-x86-bios.wf.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/windows/windows-10-22h2-ent-x64-uefi.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/windows/windows-10-22h2-ent-x64-uefi.wf.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/windows/windows-10-22h2-ent-x86-bios.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/windows/windows-10-22h2-ent-x86-bios.wf.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/windows/windows-10-next-ent-x64-uefi.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/windows/windows-10-next-ent-x64-uefi.wf.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/windows/windows-11-21h2-ent-x64-uefi.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/windows/windows-11-21h2-ent-x64-uefi.wf.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/windows/windows-11-22h2-ent-x64-uefi.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/windows/windows-11-22h2-ent-x64-uefi.wf.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/windows/windows-11-23h2-ent-x64-uefi.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/windows/windows-11-23h2-ent-x64-uefi.wf.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/windows/windows-11-24h2-ent-x64-uefi.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/windows/windows-11-24h2-ent-x64-uefi.wf.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/windows/windows-11-25h2-ent-x64-uefi.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/windows/windows-11-25h2-ent-x64-uefi.wf.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/windows/windows-81-ent-x64-uefi.publish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/windows/windows-81-ent-x64-uefi.publish.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/windows/windows-81-ent-x64-uefi.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/windows/windows-81-ent-x64-uefi.wf.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/windows/windows-install-media.publish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/windows/windows-install-media.publish.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/windows/windows-install-media.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/windows/windows-install-media.wf.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/windows/windows-server-2012-r2-dc-bios.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/windows/windows-server-2012-r2-dc-bios.wf.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/windows/windows-server-2012-r2-dc-uefi.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/windows/windows-server-2012-r2-dc-uefi.wf.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/windows/windows-server-2012-r2-uefi.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/windows/windows-server-2012-r2-uefi.wf.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/windows/windows-server-2016-core-uefi.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/windows/windows-server-2016-core-uefi.wf.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/windows/windows-server-2016-dc-bios.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/windows/windows-server-2016-dc-bios.wf.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/windows/windows-server-2016-dc-uefi.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/windows/windows-server-2016-dc-uefi.wf.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/windows/windows-server-2016-uefi.publish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/windows/windows-server-2016-uefi.publish.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/windows/windows-server-2016-uefi.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/windows/windows-server-2016-uefi.wf.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/windows/windows-server-2019-core-uefi.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/windows/windows-server-2019-core-uefi.wf.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/windows/windows-server-2019-dc-bios.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/windows/windows-server-2019-dc-bios.wf.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/windows/windows-server-2019-dc-uefi.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/windows/windows-server-2019-dc-uefi.wf.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/windows/windows-server-2019-uefi.publish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/windows/windows-server-2019-uefi.publish.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/windows/windows-server-2019-uefi.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/windows/windows-server-2019-uefi.wf.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/windows/windows-server-2022-core-uefi.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/windows/windows-server-2022-core-uefi.wf.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/windows/windows-server-2022-dc-bios.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/windows/windows-server-2022-dc-bios.wf.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/windows/windows-server-2022-dc-uefi.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/windows/windows-server-2022-dc-uefi.wf.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/windows/windows-server-2022-uefi.publish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/windows/windows-server-2022-uefi.publish.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/windows/windows-server-2022-uefi.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/windows/windows-server-2022-uefi.wf.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/windows/windows-server-2025-core-uefi.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/windows/windows-server-2025-core-uefi.wf.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/windows/windows-server-2025-dc-uefi.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/windows/windows-server-2025-dc-uefi.wf.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/windows/windows-server-2025-uefi.publish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/windows/windows-server-2025-uefi.publish.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/windows/windows-server-2025-uefi.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/windows/windows-server-2025-uefi.wf.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/windows/windows-server-next-dc-uefi.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/windows/windows-server-next-dc-uefi.wf.json -------------------------------------------------------------------------------- /daisy_workflows/build-publish/windows/windows_export.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/build-publish/windows/windows_export.wf.json -------------------------------------------------------------------------------- /daisy_workflows/export/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/export/README.md -------------------------------------------------------------------------------- /daisy_workflows/export/disk_export.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/export/disk_export.wf.json -------------------------------------------------------------------------------- /daisy_workflows/export/disk_export_ext.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/export/disk_export_ext.wf.json -------------------------------------------------------------------------------- /daisy_workflows/export/disk_export_hyperdisk.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/export/disk_export_hyperdisk.wf.json -------------------------------------------------------------------------------- /daisy_workflows/export/disk_resizing_mon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/export/disk_resizing_mon.sh -------------------------------------------------------------------------------- /daisy_workflows/export/export_disk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/export/export_disk.sh -------------------------------------------------------------------------------- /daisy_workflows/export/export_disk_ext.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/export/export_disk_ext.sh -------------------------------------------------------------------------------- /daisy_workflows/export/image_export.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/export/image_export.wf.json -------------------------------------------------------------------------------- /daisy_workflows/export/image_export_ext.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/export/image_export_ext.wf.json -------------------------------------------------------------------------------- /daisy_workflows/export_metadata/export-metadata.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/export_metadata/export-metadata.ps1 -------------------------------------------------------------------------------- /daisy_workflows/export_metadata/export-metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/export_metadata/export-metadata.py -------------------------------------------------------------------------------- /daisy_workflows/export_metadata/export_metadata.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/export_metadata/export_metadata.wf.json -------------------------------------------------------------------------------- /daisy_workflows/export_metadata/export_metadata_windows.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/export_metadata/export_metadata_windows.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/README.md -------------------------------------------------------------------------------- /daisy_workflows/image_build/debian/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/debian/README.md -------------------------------------------------------------------------------- /daisy_workflows/image_build/debian/build_fai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/debian/build_fai.py -------------------------------------------------------------------------------- /daisy_workflows/image_build/debian/debian_11_fai.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/debian/debian_11_fai.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/debian/debian_11_worker.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/debian/debian_11_worker.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/debian/debian_12_arm64.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/debian/debian_12_arm64.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/debian/debian_12_fai.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/debian/debian_12_fai.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/debian/debian_12_worker.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/debian/debian_12_worker.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/debian/debian_12_worker_arm64.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/debian/debian_12_worker_arm64.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/debian/debian_13_arm64.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/debian/debian_13_arm64.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/debian/debian_13_fai.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/debian/debian_13_fai.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/debian/debian_13_worker.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/debian/debian_13_worker.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/debian/debian_13_worker_arm64.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/debian/debian_13_worker_arm64.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/debian/debian_fai.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/debian/debian_fai.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/debian/debian_worker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/debian/debian_worker.sh -------------------------------------------------------------------------------- /daisy_workflows/image_build/debian/fai_config/class/GCE_SPECIFIC.var: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/debian/fai_config/class/GCE_SPECIFIC.var -------------------------------------------------------------------------------- /daisy_workflows/image_build/debian/fai_config/hooks/configure.GCE_SPECIFIC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/debian/fai_config/hooks/configure.GCE_SPECIFIC -------------------------------------------------------------------------------- /daisy_workflows/image_build/debian/fai_config/hooks/repository.GCE_SPECIFIC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/debian/fai_config/hooks/repository.GCE_SPECIFIC -------------------------------------------------------------------------------- /daisy_workflows/image_build/debian/fai_config/hooks/repository.TRIXIE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/debian/fai_config/hooks/repository.TRIXIE -------------------------------------------------------------------------------- /daisy_workflows/image_build/debian/fai_config/package_config/BOOKWORM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/debian/fai_config/package_config/BOOKWORM -------------------------------------------------------------------------------- /daisy_workflows/image_build/debian/fai_config/package_config/BULLSEYE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/debian/fai_config/package_config/BULLSEYE -------------------------------------------------------------------------------- /daisy_workflows/image_build/debian/fai_config/package_config/GCE_SPECIFIC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/debian/fai_config/package_config/GCE_SPECIFIC -------------------------------------------------------------------------------- /daisy_workflows/image_build/debian/fai_config/package_config/TRIXIE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/debian/fai_config/package_config/TRIXIE -------------------------------------------------------------------------------- /daisy_workflows/image_build/debian/fai_config/scripts/BOOKWORM/10-clean: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | rm -f $target/etc/hostname 4 | -------------------------------------------------------------------------------- /daisy_workflows/image_build/debian/fai_config/scripts/GCE_CLEAN/10-gce-clean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/debian/fai_config/scripts/GCE_CLEAN/10-gce-clean -------------------------------------------------------------------------------- /daisy_workflows/image_build/debian/fai_config/scripts/GCE_SPECIFIC/12-sshd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/debian/fai_config/scripts/GCE_SPECIFIC/12-sshd -------------------------------------------------------------------------------- /daisy_workflows/image_build/enterprise_linux/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/enterprise_linux/README.md -------------------------------------------------------------------------------- /daisy_workflows/image_build/enterprise_linux/almalinux_8.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/enterprise_linux/almalinux_8.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/enterprise_linux/almalinux_9.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/enterprise_linux/almalinux_9.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/enterprise_linux/almalinux_9_arm64.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/enterprise_linux/almalinux_9_arm64.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/enterprise_linux/build_installer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/enterprise_linux/build_installer.py -------------------------------------------------------------------------------- /daisy_workflows/image_build/enterprise_linux/centos_stream_10.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/enterprise_linux/centos_stream_10.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/enterprise_linux/centos_stream_10_arm64.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/enterprise_linux/centos_stream_10_arm64.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/enterprise_linux/centos_stream_9.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/enterprise_linux/centos_stream_9.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/enterprise_linux/centos_stream_9_arm64.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/enterprise_linux/centos_stream_9_arm64.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/enterprise_linux/enterprise_linux.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/enterprise_linux/enterprise_linux.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/enterprise_linux/kickstart/almalinux_8.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/enterprise_linux/kickstart/almalinux_8.cfg -------------------------------------------------------------------------------- /daisy_workflows/image_build/enterprise_linux/kickstart/almalinux_9.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/enterprise_linux/kickstart/almalinux_9.cfg -------------------------------------------------------------------------------- /daisy_workflows/image_build/enterprise_linux/kickstart/almalinux_9_arm64.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/enterprise_linux/kickstart/almalinux_9_arm64.cfg -------------------------------------------------------------------------------- /daisy_workflows/image_build/enterprise_linux/kickstart/centos_stream_10.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/enterprise_linux/kickstart/centos_stream_10.cfg -------------------------------------------------------------------------------- /daisy_workflows/image_build/enterprise_linux/kickstart/centos_stream_9.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/enterprise_linux/kickstart/centos_stream_9.cfg -------------------------------------------------------------------------------- /daisy_workflows/image_build/enterprise_linux/kickstart/rhel_10.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/enterprise_linux/kickstart/rhel_10.cfg -------------------------------------------------------------------------------- /daisy_workflows/image_build/enterprise_linux/kickstart/rhel_10_0_eus.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/enterprise_linux/kickstart/rhel_10_0_eus.cfg -------------------------------------------------------------------------------- /daisy_workflows/image_build/enterprise_linux/kickstart/rhel_10_arm64.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/enterprise_linux/kickstart/rhel_10_arm64.cfg -------------------------------------------------------------------------------- /daisy_workflows/image_build/enterprise_linux/kickstart/rhel_10_byos.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/enterprise_linux/kickstart/rhel_10_byos.cfg -------------------------------------------------------------------------------- /daisy_workflows/image_build/enterprise_linux/kickstart/rhel_8.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/enterprise_linux/kickstart/rhel_8.cfg -------------------------------------------------------------------------------- /daisy_workflows/image_build/enterprise_linux/kickstart/rhel_8_10_sap.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/enterprise_linux/kickstart/rhel_8_10_sap.cfg -------------------------------------------------------------------------------- /daisy_workflows/image_build/enterprise_linux/kickstart/rhel_8_4_sap.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/enterprise_linux/kickstart/rhel_8_4_sap.cfg -------------------------------------------------------------------------------- /daisy_workflows/image_build/enterprise_linux/kickstart/rhel_8_4_sap_byos.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/enterprise_linux/kickstart/rhel_8_4_sap_byos.cfg -------------------------------------------------------------------------------- /daisy_workflows/image_build/enterprise_linux/kickstart/rhel_8_6_sap.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/enterprise_linux/kickstart/rhel_8_6_sap.cfg -------------------------------------------------------------------------------- /daisy_workflows/image_build/enterprise_linux/kickstart/rhel_8_6_sap_byos.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/enterprise_linux/kickstart/rhel_8_6_sap_byos.cfg -------------------------------------------------------------------------------- /daisy_workflows/image_build/enterprise_linux/kickstart/rhel_8_8_sap.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/enterprise_linux/kickstart/rhel_8_8_sap.cfg -------------------------------------------------------------------------------- /daisy_workflows/image_build/enterprise_linux/kickstart/rhel_8_8_sap_byos.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/enterprise_linux/kickstart/rhel_8_8_sap_byos.cfg -------------------------------------------------------------------------------- /daisy_workflows/image_build/enterprise_linux/kickstart/rhel_8_arm64.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/enterprise_linux/kickstart/rhel_8_arm64.cfg -------------------------------------------------------------------------------- /daisy_workflows/image_build/enterprise_linux/kickstart/rhel_8_byos.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/enterprise_linux/kickstart/rhel_8_byos.cfg -------------------------------------------------------------------------------- /daisy_workflows/image_build/enterprise_linux/kickstart/rhel_8_byos_arm64.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/enterprise_linux/kickstart/rhel_8_byos_arm64.cfg -------------------------------------------------------------------------------- /daisy_workflows/image_build/enterprise_linux/kickstart/rhel_9.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/enterprise_linux/kickstart/rhel_9.cfg -------------------------------------------------------------------------------- /daisy_workflows/image_build/enterprise_linux/kickstart/rhel_9_0_sap.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/enterprise_linux/kickstart/rhel_9_0_sap.cfg -------------------------------------------------------------------------------- /daisy_workflows/image_build/enterprise_linux/kickstart/rhel_9_0_sap_byos.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/enterprise_linux/kickstart/rhel_9_0_sap_byos.cfg -------------------------------------------------------------------------------- /daisy_workflows/image_build/enterprise_linux/kickstart/rhel_9_2_sap.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/enterprise_linux/kickstart/rhel_9_2_sap.cfg -------------------------------------------------------------------------------- /daisy_workflows/image_build/enterprise_linux/kickstart/rhel_9_2_sap_byos.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/enterprise_linux/kickstart/rhel_9_2_sap_byos.cfg -------------------------------------------------------------------------------- /daisy_workflows/image_build/enterprise_linux/kickstart/rhel_9_4_eus.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/enterprise_linux/kickstart/rhel_9_4_eus.cfg -------------------------------------------------------------------------------- /daisy_workflows/image_build/enterprise_linux/kickstart/rhel_9_4_eus_byos.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/enterprise_linux/kickstart/rhel_9_4_eus_byos.cfg -------------------------------------------------------------------------------- /daisy_workflows/image_build/enterprise_linux/kickstart/rhel_9_4_sap.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/enterprise_linux/kickstart/rhel_9_4_sap.cfg -------------------------------------------------------------------------------- /daisy_workflows/image_build/enterprise_linux/kickstart/rhel_9_4_sap_byos.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/enterprise_linux/kickstart/rhel_9_4_sap_byos.cfg -------------------------------------------------------------------------------- /daisy_workflows/image_build/enterprise_linux/kickstart/rhel_9_6_eus.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/enterprise_linux/kickstart/rhel_9_6_eus.cfg -------------------------------------------------------------------------------- /daisy_workflows/image_build/enterprise_linux/kickstart/rhel_9_6_eus_byos.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/enterprise_linux/kickstart/rhel_9_6_eus_byos.cfg -------------------------------------------------------------------------------- /daisy_workflows/image_build/enterprise_linux/kickstart/rhel_9_6_sap.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/enterprise_linux/kickstart/rhel_9_6_sap.cfg -------------------------------------------------------------------------------- /daisy_workflows/image_build/enterprise_linux/kickstart/rhel_9_6_sap_byos.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/enterprise_linux/kickstart/rhel_9_6_sap_byos.cfg -------------------------------------------------------------------------------- /daisy_workflows/image_build/enterprise_linux/kickstart/rhel_9_arm64.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/enterprise_linux/kickstart/rhel_9_arm64.cfg -------------------------------------------------------------------------------- /daisy_workflows/image_build/enterprise_linux/kickstart/rhel_9_byos.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/enterprise_linux/kickstart/rhel_9_byos.cfg -------------------------------------------------------------------------------- /daisy_workflows/image_build/enterprise_linux/kickstart/rhel_9_byos_arm64.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/enterprise_linux/kickstart/rhel_9_byos_arm64.cfg -------------------------------------------------------------------------------- /daisy_workflows/image_build/enterprise_linux/kickstart/rocky_linux_8.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/enterprise_linux/kickstart/rocky_linux_8.cfg -------------------------------------------------------------------------------- /daisy_workflows/image_build/enterprise_linux/kickstart/rocky_linux_9.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/enterprise_linux/kickstart/rocky_linux_9.cfg -------------------------------------------------------------------------------- /daisy_workflows/image_build/enterprise_linux/rhel_10.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/enterprise_linux/rhel_10.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/enterprise_linux/rhel_10_0_eus.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/enterprise_linux/rhel_10_0_eus.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/enterprise_linux/rhel_10_0_eus_arm64.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/enterprise_linux/rhel_10_0_eus_arm64.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/enterprise_linux/rhel_10_0_eus_byos.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/enterprise_linux/rhel_10_0_eus_byos.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/enterprise_linux/rhel_10_arm64.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/enterprise_linux/rhel_10_arm64.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/enterprise_linux/rhel_10_byos.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/enterprise_linux/rhel_10_byos.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/enterprise_linux/rhel_10_byos_arm64.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/enterprise_linux/rhel_10_byos_arm64.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/enterprise_linux/rhel_8.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/enterprise_linux/rhel_8.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/enterprise_linux/rhel_8_10_sap.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/enterprise_linux/rhel_8_10_sap.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/enterprise_linux/rhel_8_10_sap_byos.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/enterprise_linux/rhel_8_10_sap_byos.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/enterprise_linux/rhel_8_4_sap.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/enterprise_linux/rhel_8_4_sap.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/enterprise_linux/rhel_8_4_sap_byos.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/enterprise_linux/rhel_8_4_sap_byos.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/enterprise_linux/rhel_8_6_sap.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/enterprise_linux/rhel_8_6_sap.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/enterprise_linux/rhel_8_6_sap_byos.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/enterprise_linux/rhel_8_6_sap_byos.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/enterprise_linux/rhel_8_8_sap.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/enterprise_linux/rhel_8_8_sap.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/enterprise_linux/rhel_8_8_sap_byos.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/enterprise_linux/rhel_8_8_sap_byos.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/enterprise_linux/rhel_8_arm64.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/enterprise_linux/rhel_8_arm64.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/enterprise_linux/rhel_8_byos.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/enterprise_linux/rhel_8_byos.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/enterprise_linux/rhel_8_byos_arm64.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/enterprise_linux/rhel_8_byos_arm64.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/enterprise_linux/rhel_9.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/enterprise_linux/rhel_9.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/enterprise_linux/rhel_9_0_sap.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/enterprise_linux/rhel_9_0_sap.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/enterprise_linux/rhel_9_0_sap_byos.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/enterprise_linux/rhel_9_0_sap_byos.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/enterprise_linux/rhel_9_2_sap.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/enterprise_linux/rhel_9_2_sap.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/enterprise_linux/rhel_9_2_sap_byos.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/enterprise_linux/rhel_9_2_sap_byos.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/enterprise_linux/rhel_9_4_eus.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/enterprise_linux/rhel_9_4_eus.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/enterprise_linux/rhel_9_4_eus_arm64.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/enterprise_linux/rhel_9_4_eus_arm64.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/enterprise_linux/rhel_9_4_eus_byos.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/enterprise_linux/rhel_9_4_eus_byos.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/enterprise_linux/rhel_9_4_eus_byos_arm64.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/enterprise_linux/rhel_9_4_eus_byos_arm64.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/enterprise_linux/rhel_9_4_sap.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/enterprise_linux/rhel_9_4_sap.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/enterprise_linux/rhel_9_4_sap_byos.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/enterprise_linux/rhel_9_4_sap_byos.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/enterprise_linux/rhel_9_6_eus.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/enterprise_linux/rhel_9_6_eus.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/enterprise_linux/rhel_9_6_eus_arm64.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/enterprise_linux/rhel_9_6_eus_arm64.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/enterprise_linux/rhel_9_6_eus_byos.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/enterprise_linux/rhel_9_6_eus_byos.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/enterprise_linux/rhel_9_6_eus_byos_arm64.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/enterprise_linux/rhel_9_6_eus_byos_arm64.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/enterprise_linux/rhel_9_6_sap.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/enterprise_linux/rhel_9_6_sap.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/enterprise_linux/rhel_9_6_sap_byos.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/enterprise_linux/rhel_9_6_sap_byos.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/enterprise_linux/rhel_9_arm64.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/enterprise_linux/rhel_9_arm64.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/enterprise_linux/rhel_9_byos.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/enterprise_linux/rhel_9_byos.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/enterprise_linux/rhel_9_byos_arm64.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/enterprise_linux/rhel_9_byos_arm64.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/enterprise_linux/rocky_accelerated.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/enterprise_linux/rocky_accelerated.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/enterprise_linux/rocky_linux_8.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/enterprise_linux/rocky_linux_8.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/enterprise_linux/rocky_linux_9.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/enterprise_linux/rocky_linux_9.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/enterprise_linux/rocky_linux_9_arm64.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/enterprise_linux/rocky_linux_9_arm64.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/install_package/cos/install_package_cos.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/install_package/cos/install_package_cos.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/install_package/cos/replacepackage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/install_package/cos/replacepackage.sh -------------------------------------------------------------------------------- /daisy_workflows/image_build/install_package/install_package.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/install_package/install_package.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/install_package/installpackage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/install_package/installpackage.py -------------------------------------------------------------------------------- /daisy_workflows/image_build/install_package/windows/install_package.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/install_package/windows/install_package.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/install_package/windows/installpackage.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/install_package/windows/installpackage.ps1 -------------------------------------------------------------------------------- /daisy_workflows/image_build/sqlserver/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/sqlserver/README.md -------------------------------------------------------------------------------- /daisy_workflows/image_build/sqlserver/configs/sql_server_2012.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/sqlserver/configs/sql_server_2012.ini -------------------------------------------------------------------------------- /daisy_workflows/image_build/sqlserver/configs/sql_server_2012_core.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/sqlserver/configs/sql_server_2012_core.ini -------------------------------------------------------------------------------- /daisy_workflows/image_build/sqlserver/configs/sql_server_2014.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/sqlserver/configs/sql_server_2014.ini -------------------------------------------------------------------------------- /daisy_workflows/image_build/sqlserver/configs/sql_server_2014_core.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/sqlserver/configs/sql_server_2014_core.ini -------------------------------------------------------------------------------- /daisy_workflows/image_build/sqlserver/configs/sql_server_2016.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/sqlserver/configs/sql_server_2016.ini -------------------------------------------------------------------------------- /daisy_workflows/image_build/sqlserver/configs/sql_server_2016_core.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/sqlserver/configs/sql_server_2016_core.ini -------------------------------------------------------------------------------- /daisy_workflows/image_build/sqlserver/configs/sql_server_2017.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/sqlserver/configs/sql_server_2017.ini -------------------------------------------------------------------------------- /daisy_workflows/image_build/sqlserver/configs/sql_server_2017_core.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/sqlserver/configs/sql_server_2017_core.ini -------------------------------------------------------------------------------- /daisy_workflows/image_build/sqlserver/configs/sql_server_2019.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/sqlserver/configs/sql_server_2019.ini -------------------------------------------------------------------------------- /daisy_workflows/image_build/sqlserver/configs/sql_server_2022.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/sqlserver/configs/sql_server_2022.ini -------------------------------------------------------------------------------- /daisy_workflows/image_build/sqlserver/configs/sql_server_2025.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/sqlserver/configs/sql_server_2025.ini -------------------------------------------------------------------------------- /daisy_workflows/image_build/sqlserver/sql-2012-web-windows-2012-r2.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/sqlserver/sql-2012-web-windows-2012-r2.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/sqlserver/sql-2014-web-windows-2012-r2.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/sqlserver/sql-2014-web-windows-2012-r2.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/sqlserver/sql-2016-standard-windows-2016.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/sqlserver/sql-2016-standard-windows-2016.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/sqlserver/sql-2016-standard-windows-2019.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/sqlserver/sql-2016-standard-windows-2019.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/sqlserver/sql-2016-web-windows-2012-r2.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/sqlserver/sql-2016-web-windows-2012-r2.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/sqlserver/sql-2016-web-windows-2016-dc.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/sqlserver/sql-2016-web-windows-2016-dc.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/sqlserver/sql-2016-web-windows-2016.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/sqlserver/sql-2016-web-windows-2016.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/sqlserver/sql-2016-web-windows-2019-dc.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/sqlserver/sql-2016-web-windows-2019-dc.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/sqlserver/sql-2016-web-windows-2019.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/sqlserver/sql-2016-web-windows-2019.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/sqlserver/sql-2017-express-windows-2016.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/sqlserver/sql-2017-express-windows-2016.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/sqlserver/sql-2017-express-windows-2019.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/sqlserver/sql-2017-express-windows-2019.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/sqlserver/sql-2017-standard-windows-2016.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/sqlserver/sql-2017-standard-windows-2016.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/sqlserver/sql-2017-standard-windows-2019.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/sqlserver/sql-2017-standard-windows-2019.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/sqlserver/sql-2017-standard-windows-2022.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/sqlserver/sql-2017-standard-windows-2022.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/sqlserver/sql-2017-web-windows-2016-dc.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/sqlserver/sql-2017-web-windows-2016-dc.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/sqlserver/sql-2017-web-windows-2016.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/sqlserver/sql-2017-web-windows-2016.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/sqlserver/sql-2017-web-windows-2019-dc.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/sqlserver/sql-2017-web-windows-2019-dc.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/sqlserver/sql-2017-web-windows-2019.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/sqlserver/sql-2017-web-windows-2019.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/sqlserver/sql-2017-web-windows-2022-dc.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/sqlserver/sql-2017-web-windows-2022-dc.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/sqlserver/sql-2017-web-windows-2022.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/sqlserver/sql-2017-web-windows-2022.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/sqlserver/sql-2017-web-windows-2025-dc.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/sqlserver/sql-2017-web-windows-2025-dc.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/sqlserver/sql-2019-standard-windows-2019.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/sqlserver/sql-2019-standard-windows-2019.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/sqlserver/sql-2019-standard-windows-2022.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/sqlserver/sql-2019-standard-windows-2022.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/sqlserver/sql-2019-web-windows-2019-dc.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/sqlserver/sql-2019-web-windows-2019-dc.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/sqlserver/sql-2019-web-windows-2019.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/sqlserver/sql-2019-web-windows-2019.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/sqlserver/sql-2019-web-windows-2022-dc.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/sqlserver/sql-2019-web-windows-2022-dc.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/sqlserver/sql-2019-web-windows-2022.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/sqlserver/sql-2019-web-windows-2022.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/sqlserver/sql-2019-web-windows-2025-dc.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/sqlserver/sql-2019-web-windows-2025-dc.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/sqlserver/sql-2022-preview-windows-2022.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/sqlserver/sql-2022-preview-windows-2022.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/sqlserver/sql-2022-standard-windows-2019.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/sqlserver/sql-2022-standard-windows-2019.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/sqlserver/sql-2022-standard-windows-2022.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/sqlserver/sql-2022-standard-windows-2022.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/sqlserver/sql-2022-web-windows-2019-dc.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/sqlserver/sql-2022-web-windows-2019-dc.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/sqlserver/sql-2022-web-windows-2019.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/sqlserver/sql-2022-web-windows-2019.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/sqlserver/sql-2022-web-windows-2022-dc.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/sqlserver/sql-2022-web-windows-2022-dc.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/sqlserver/sql-2022-web-windows-2022.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/sqlserver/sql-2022-web-windows-2022.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/sqlserver/sql-2022-web-windows-2025-dc.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/sqlserver/sql-2022-web-windows-2025-dc.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/sqlserver/sql_install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/sqlserver/sql_install.ps1 -------------------------------------------------------------------------------- /daisy_workflows/image_build/sqlserver/sqlserver.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/sqlserver/sqlserver.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/windows/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/windows/README.md -------------------------------------------------------------------------------- /daisy_workflows/image_build/windows/bootstrap_install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/windows/bootstrap_install.ps1 -------------------------------------------------------------------------------- /daisy_workflows/image_build/windows/components/Autounattend-template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/windows/components/Autounattend-template.xml -------------------------------------------------------------------------------- /daisy_workflows/image_build/windows/components/SetupComplete.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/windows/components/SetupComplete.cmd -------------------------------------------------------------------------------- /daisy_workflows/image_build/windows/post_install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/windows/post_install.ps1 -------------------------------------------------------------------------------- /daisy_workflows/image_build/windows/windows-10-20h2-ent-x64-uefi.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/windows/windows-10-20h2-ent-x64-uefi.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/windows/windows-10-20h2-ent-x86-bios.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/windows/windows-10-20h2-ent-x86-bios.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/windows/windows-10-21h2-ent-x64-uefi.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/windows/windows-10-21h2-ent-x64-uefi.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/windows/windows-10-21h2-ent-x86-bios.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/windows/windows-10-21h2-ent-x86-bios.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/windows/windows-10-22h2-ent-x64-uefi.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/windows/windows-10-22h2-ent-x64-uefi.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/windows/windows-10-22h2-ent-x86-bios.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/windows/windows-10-22h2-ent-x86-bios.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/windows/windows-11-21h2-ent-x64-uefi.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/windows/windows-11-21h2-ent-x64-uefi.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/windows/windows-11-22h2-ent-x64-uefi.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/windows/windows-11-22h2-ent-x64-uefi.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/windows/windows-11-23h2-ent-x64-uefi.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/windows/windows-11-23h2-ent-x64-uefi.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/windows/windows-11-24h2-ent-x64-uefi.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/windows/windows-11-24h2-ent-x64-uefi.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/windows/windows-11-25h2-ent-x64-uefi.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/windows/windows-11-25h2-ent-x64-uefi.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/windows/windows-11-preview-ent-x64-uefi.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/windows/windows-11-preview-ent-x64-uefi.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/windows/windows-81-ent-x64-uefi-byol.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/windows/windows-81-ent-x64-uefi-byol.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/windows/windows-build-bios.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/windows/windows-build-bios.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/windows/windows-build-uefi.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/windows/windows-build-uefi.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/windows/windows-server-2012-r2-dc-bios.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/windows/windows-server-2012-r2-dc-bios.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/windows/windows-server-2012-r2-uefi-byol.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/windows/windows-server-2012-r2-uefi-byol.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/windows/windows-server-2016-dc-bios.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/windows/windows-server-2016-dc-bios.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/windows/windows-server-2016-uefi-byol.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/windows/windows-server-2016-uefi-byol.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/windows/windows-server-2016-uefi-payg.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/windows/windows-server-2016-uefi-payg.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/windows/windows-server-2019-dc-bios.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/windows/windows-server-2019-dc-bios.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/windows/windows-server-2019-uefi-byol.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/windows/windows-server-2019-uefi-byol.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/windows/windows-server-2019-uefi-payg.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/windows/windows-server-2019-uefi-payg.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/windows/windows-server-2022-dc-bios.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/windows/windows-server-2022-dc-bios.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/windows/windows-server-2022-uefi-payg.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/windows/windows-server-2022-uefi-payg.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/windows/windows-server-2025-uefi-byol.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/windows/windows-server-2025-uefi-byol.wf.json -------------------------------------------------------------------------------- /daisy_workflows/image_build/windows/windows-server-2025-uefi-payg.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/image_build/windows/windows-server-2025-uefi-payg.wf.json -------------------------------------------------------------------------------- /daisy_workflows/kernel_commit_query/debian.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/kernel_commit_query/debian.sh -------------------------------------------------------------------------------- /daisy_workflows/kernel_commit_query/kcq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/kernel_commit_query/kcq.py -------------------------------------------------------------------------------- /daisy_workflows/kernel_commit_query/kernel_commit_query.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/kernel_commit_query/kernel_commit_query.wf.json -------------------------------------------------------------------------------- /daisy_workflows/kernel_commit_query/rhel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/kernel_commit_query/rhel.sh -------------------------------------------------------------------------------- /daisy_workflows/kernel_commit_query/rocky.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/kernel_commit_query/rocky.sh -------------------------------------------------------------------------------- /daisy_workflows/kernel_commit_query/suse.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/kernel_commit_query/suse.sh -------------------------------------------------------------------------------- /daisy_workflows/kernel_commit_query/ubuntu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/kernel_commit_query/ubuntu.sh -------------------------------------------------------------------------------- /daisy_workflows/linux_common/bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/linux_common/bootstrap.sh -------------------------------------------------------------------------------- /daisy_workflows/linux_common/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/linux_common/pyproject.toml -------------------------------------------------------------------------------- /daisy_workflows/linux_common/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/linux_common/setup.py -------------------------------------------------------------------------------- /daisy_workflows/linux_common/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /daisy_workflows/linux_common/tests/test_apt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/linux_common/tests/test_apt.py -------------------------------------------------------------------------------- /daisy_workflows/linux_common/tests/test_configs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/linux_common/tests/test_configs.py -------------------------------------------------------------------------------- /daisy_workflows/linux_common/tests/test_guestfsprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/linux_common/tests/test_guestfsprocess.py -------------------------------------------------------------------------------- /daisy_workflows/linux_common/utils/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | 3 | from .common import * # noqa: F401,F403 4 | -------------------------------------------------------------------------------- /daisy_workflows/linux_common/utils/apt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/linux_common/utils/apt.py -------------------------------------------------------------------------------- /daisy_workflows/linux_common/utils/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/linux_common/utils/common.py -------------------------------------------------------------------------------- /daisy_workflows/linux_common/utils/configs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/linux_common/utils/configs.py -------------------------------------------------------------------------------- /daisy_workflows/linux_common/utils/diskutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/linux_common/utils/diskutils.py -------------------------------------------------------------------------------- /daisy_workflows/linux_common/utils/guestfsprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/linux_common/utils/guestfsprocess.py -------------------------------------------------------------------------------- /daisy_workflows/ovf_import/create_gmi.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/ovf_import/create_gmi.wf.json -------------------------------------------------------------------------------- /daisy_workflows/ovf_import/create_instance.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/ovf_import/create_instance.wf.json -------------------------------------------------------------------------------- /daisy_workflows/ovf_import/import_ovf_to_instance.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/ovf_import/import_ovf_to_instance.wf.json -------------------------------------------------------------------------------- /daisy_workflows/ovf_import/import_ovf_to_machine_image.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/ovf_import/import_ovf_to_machine_image.wf.json -------------------------------------------------------------------------------- /daisy_workflows/sbom_validation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/sbom_validation/README.md -------------------------------------------------------------------------------- /daisy_workflows/sbom_validation/enterprise_sbom_test.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/sbom_validation/enterprise_sbom_test.wf.json -------------------------------------------------------------------------------- /daisy_workflows/sbom_validation/test_sbom_export.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/sbom_validation/test_sbom_export.sh -------------------------------------------------------------------------------- /daisy_workflows/sbom_validation/windows_sbom_validation.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/daisy_workflows/sbom_validation/windows_sbom_validation.wf.json -------------------------------------------------------------------------------- /gce_export.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/gce_export.Dockerfile -------------------------------------------------------------------------------- /gce_image_publish.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/gce_image_publish.Dockerfile -------------------------------------------------------------------------------- /gce_recovery_scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/gce_recovery_scripts/README.md -------------------------------------------------------------------------------- /gce_recovery_scripts/recover_windows_instance.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/gce_recovery_scripts/recover_windows_instance.sh -------------------------------------------------------------------------------- /gce_recovery_scripts/reinstall-gvnic-gq.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/gce_recovery_scripts/reinstall-gvnic-gq.ps1 -------------------------------------------------------------------------------- /gce_windows_upgrade.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/gce_windows_upgrade.Dockerfile -------------------------------------------------------------------------------- /gce_windows_upgrade_tests.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/gce_windows_upgrade_tests.Dockerfile -------------------------------------------------------------------------------- /go/e2e_test_utils/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/go/e2e_test_utils/go.mod -------------------------------------------------------------------------------- /go/e2e_test_utils/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/go/e2e_test_utils/go.sum -------------------------------------------------------------------------------- /go/e2e_test_utils/junitxml/junitxml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/go/e2e_test_utils/junitxml/junitxml.go -------------------------------------------------------------------------------- /go/e2e_test_utils/launcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/go/e2e_test_utils/launcher.go -------------------------------------------------------------------------------- /go/e2e_test_utils/test_config/project_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/go/e2e_test_utils/test_config/project_config.go -------------------------------------------------------------------------------- /image_test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/image_test/README.md -------------------------------------------------------------------------------- /image_test/boot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/image_test/boot/README.md -------------------------------------------------------------------------------- /image_test/boot/boot.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/image_test/boot/boot.bat -------------------------------------------------------------------------------- /image_test/boot/boot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/image_test/boot/boot.sh -------------------------------------------------------------------------------- /image_test/boot/boot.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/image_test/boot/boot.wf.json -------------------------------------------------------------------------------- /image_test/configuration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/image_test/configuration/README.md -------------------------------------------------------------------------------- /image_test/configuration/linux-configuration.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/image_test/configuration/linux-configuration.wf.json -------------------------------------------------------------------------------- /image_test/configuration/linux/centos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/image_test/configuration/linux/centos.py -------------------------------------------------------------------------------- /image_test/configuration/linux/configuration-test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/image_test/configuration/linux/configuration-test.py -------------------------------------------------------------------------------- /image_test/configuration/linux/debian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/image_test/configuration/linux/debian.py -------------------------------------------------------------------------------- /image_test/configuration/linux/freebsd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/image_test/configuration/linux/freebsd.py -------------------------------------------------------------------------------- /image_test/configuration/linux/generic_distro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/image_test/configuration/linux/generic_distro.py -------------------------------------------------------------------------------- /image_test/configuration/linux/redhat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/image_test/configuration/linux/redhat.py -------------------------------------------------------------------------------- /image_test/configuration/linux/suse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/image_test/configuration/linux/suse.py -------------------------------------------------------------------------------- /image_test/configuration/linux/ubuntu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/image_test/configuration/linux/ubuntu.py -------------------------------------------------------------------------------- /image_test/configuration/windows-configuration.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/image_test/configuration/windows-configuration.wf.json -------------------------------------------------------------------------------- /image_test/configuration/windows/test_config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/image_test/configuration/windows/test_config.ps1 -------------------------------------------------------------------------------- /image_test/disk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/image_test/disk/README.md -------------------------------------------------------------------------------- /image_test/disk/disk-local-ssd.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/image_test/disk/disk-local-ssd.bat -------------------------------------------------------------------------------- /image_test/disk/disk-local-ssd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/image_test/disk/disk-local-ssd.sh -------------------------------------------------------------------------------- /image_test/disk/disk-testee.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/image_test/disk/disk-testee.bat -------------------------------------------------------------------------------- /image_test/disk/disk-testee.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/image_test/disk/disk-testee.sh -------------------------------------------------------------------------------- /image_test/disk/disk.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/image_test/disk/disk.wf.json -------------------------------------------------------------------------------- /image_test/linux_images.test.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/image_test/linux_images.test.gotmpl -------------------------------------------------------------------------------- /image_test/metadata-script/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/image_test/metadata-script/README.md -------------------------------------------------------------------------------- /image_test/metadata-script/junk.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/image_test/metadata-script/junk.ps1 -------------------------------------------------------------------------------- /image_test/metadata-script/metadata-script-inc/create-instance.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/image_test/metadata-script/metadata-script-inc/create-instance.wf.json -------------------------------------------------------------------------------- /image_test/metadata-script/metadata-script-inc/shutdown-check.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/image_test/metadata-script/metadata-script-inc/shutdown-check.wf.json -------------------------------------------------------------------------------- /image_test/metadata-script/metadata-script-inc/startup-check.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/image_test/metadata-script/metadata-script-inc/startup-check.wf.json -------------------------------------------------------------------------------- /image_test/metadata-script/metadata-script-inc/wait-message.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/image_test/metadata-script/metadata-script-inc/wait-message.wf.json -------------------------------------------------------------------------------- /image_test/metadata-script/metadata-script-test-shutdown-hash.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/image_test/metadata-script/metadata-script-test-shutdown-hash.ps1 -------------------------------------------------------------------------------- /image_test/metadata-script/metadata-script-test-shutdown-hash.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/image_test/metadata-script/metadata-script-test-shutdown-hash.sh -------------------------------------------------------------------------------- /image_test/metadata-script/metadata-script-test-startup-hash.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/image_test/metadata-script/metadata-script-test-startup-hash.ps1 -------------------------------------------------------------------------------- /image_test/metadata-script/metadata-script-test-startup-hash.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/image_test/metadata-script/metadata-script-test-startup-hash.sh -------------------------------------------------------------------------------- /image_test/metadata-script/shutdown-script-integrity.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/image_test/metadata-script/shutdown-script-integrity.wf.json -------------------------------------------------------------------------------- /image_test/metadata-script/shutdown-script-junk.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/image_test/metadata-script/shutdown-script-junk.wf.json -------------------------------------------------------------------------------- /image_test/metadata-script/shutdown-script-linux.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/image_test/metadata-script/shutdown-script-linux.wf.json -------------------------------------------------------------------------------- /image_test/metadata-script/shutdown-script-noscript.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/image_test/metadata-script/shutdown-script-noscript.wf.json -------------------------------------------------------------------------------- /image_test/metadata-script/shutdown-script-windows.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/image_test/metadata-script/shutdown-script-windows.wf.json -------------------------------------------------------------------------------- /image_test/metadata-script/shutdown-script.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/image_test/metadata-script/shutdown-script.wf.json -------------------------------------------------------------------------------- /image_test/metadata-script/startup-script-for-shutdown-tests.ps1: -------------------------------------------------------------------------------- 1 | Write-Host "Ready to stop instance." 2 | -------------------------------------------------------------------------------- /image_test/metadata-script/startup-script-for-shutdown-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/image_test/metadata-script/startup-script-for-shutdown-tests.sh -------------------------------------------------------------------------------- /image_test/metadata-script/startup-script-integrity.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/image_test/metadata-script/startup-script-integrity.wf.json -------------------------------------------------------------------------------- /image_test/metadata-script/startup-script-junk.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/image_test/metadata-script/startup-script-junk.wf.json -------------------------------------------------------------------------------- /image_test/metadata-script/startup-script-linux.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/image_test/metadata-script/startup-script-linux.wf.json -------------------------------------------------------------------------------- /image_test/metadata-script/startup-script-noscript.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/image_test/metadata-script/startup-script-noscript.wf.json -------------------------------------------------------------------------------- /image_test/metadata-script/startup-script-windows.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/image_test/metadata-script/startup-script-windows.wf.json -------------------------------------------------------------------------------- /image_test/metadata-script/startup-script.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/image_test/metadata-script/startup-script.wf.json -------------------------------------------------------------------------------- /image_test/metadata-script/sysprep-script-integrity.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/image_test/metadata-script/sysprep-script-integrity.wf.json -------------------------------------------------------------------------------- /image_test/metadata-script/sysprep-script-junk.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/image_test/metadata-script/sysprep-script-junk.wf.json -------------------------------------------------------------------------------- /image_test/metadata-script/sysprep-script-noscript.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/image_test/metadata-script/sysprep-script-noscript.wf.json -------------------------------------------------------------------------------- /image_test/metadata-script/sysprep-script-windows.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/image_test/metadata-script/sysprep-script-windows.wf.json -------------------------------------------------------------------------------- /image_test/metadata-script/sysprep-script.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/image_test/metadata-script/sysprep-script.wf.json -------------------------------------------------------------------------------- /image_test/metadata-ssh/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/image_test/metadata-ssh/README.md -------------------------------------------------------------------------------- /image_test/metadata-ssh/metadata-ssh-tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/image_test/metadata-ssh/metadata-ssh-tester.py -------------------------------------------------------------------------------- /image_test/metadata-ssh/metadata-ssh.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/image_test/metadata-ssh/metadata-ssh.wf.json -------------------------------------------------------------------------------- /image_test/multi-nic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/image_test/multi-nic/README.md -------------------------------------------------------------------------------- /image_test/multi-nic/multi-nic-master.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/image_test/multi-nic/multi-nic-master.bat -------------------------------------------------------------------------------- /image_test/multi-nic/multi-nic-master.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/image_test/multi-nic/multi-nic-master.sh -------------------------------------------------------------------------------- /image_test/multi-nic/multi-nic-slave.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/image_test/multi-nic/multi-nic-slave.bat -------------------------------------------------------------------------------- /image_test/multi-nic/multi-nic-slave.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/image_test/multi-nic/multi-nic-slave.sh -------------------------------------------------------------------------------- /image_test/multi-nic/multi-nic.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/image_test/multi-nic/multi-nic.wf.json -------------------------------------------------------------------------------- /image_test/network/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/image_test/network/README.md -------------------------------------------------------------------------------- /image_test/network/network-testee-checker.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/image_test/network/network-testee-checker.bat -------------------------------------------------------------------------------- /image_test/network/network-testee-checker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/image_test/network/network-testee-checker.sh -------------------------------------------------------------------------------- /image_test/network/network-testee.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/image_test/network/network-testee.ps1 -------------------------------------------------------------------------------- /image_test/network/network-testee.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/image_test/network/network-testee.sh -------------------------------------------------------------------------------- /image_test/network/network-tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/image_test/network/network-tester.py -------------------------------------------------------------------------------- /image_test/network/network.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/image_test/network/network.wf.json -------------------------------------------------------------------------------- /image_test/oslogin-ssh/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/image_test/oslogin-ssh/README.md -------------------------------------------------------------------------------- /image_test/oslogin-ssh/oslogin-ssh-master-tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/image_test/oslogin-ssh/oslogin-ssh-master-tester.py -------------------------------------------------------------------------------- /image_test/oslogin-ssh/oslogin-ssh.wf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/image_test/oslogin-ssh/oslogin-ssh.wf.json -------------------------------------------------------------------------------- /image_test/oslogin-ssh/oslogin_slave_tester.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/image_test/oslogin-ssh/oslogin_slave_tester.sh -------------------------------------------------------------------------------- /image_test/windows_images.test.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/image_test/windows_images.test.gotmpl -------------------------------------------------------------------------------- /proto/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/proto/README -------------------------------------------------------------------------------- /proto/go/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/proto/go/go.mod -------------------------------------------------------------------------------- /proto/go/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/proto/go/go.sum -------------------------------------------------------------------------------- /proto/go/pb/inspect.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/proto/go/pb/inspect.pb.go -------------------------------------------------------------------------------- /proto/go/pb/output_info.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/proto/go/pb/output_info.pb.go -------------------------------------------------------------------------------- /proto/go/pbtesting/assert_matcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/proto/go/pbtesting/assert_matcher.go -------------------------------------------------------------------------------- /proto/go/pbtesting/gomock_matcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/proto/go/pbtesting/gomock_matcher.go -------------------------------------------------------------------------------- /proto/inspect.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/proto/inspect.proto -------------------------------------------------------------------------------- /proto/output_info.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/proto/output_info.proto -------------------------------------------------------------------------------- /proto/py/compute_image_tools_proto/inspect_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/proto/py/compute_image_tools_proto/inspect_pb2.py -------------------------------------------------------------------------------- /proto/py/compute_image_tools_proto/inspect_pb2.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/proto/py/compute_image_tools_proto/inspect_pb2.pyi -------------------------------------------------------------------------------- /proto/py/compute_image_tools_proto/output_info_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/proto/py/compute_image_tools_proto/output_info_pb2.py -------------------------------------------------------------------------------- /proto/py/compute_image_tools_proto/output_info_pb2.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/proto/py/compute_image_tools_proto/output_info_pb2.pyi -------------------------------------------------------------------------------- /proto/py/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/proto/py/setup.py -------------------------------------------------------------------------------- /proto/updatepb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/proto/updatepb.sh -------------------------------------------------------------------------------- /prowjobs_cloudbuild.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/prowjobs_cloudbuild.yaml -------------------------------------------------------------------------------- /rollout/cli_tools_cloudbuild_build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/rollout/cli_tools_cloudbuild_build.yaml -------------------------------------------------------------------------------- /rollout/cli_tools_cloudbuild_build_prepare.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/rollout/cli_tools_cloudbuild_build_prepare.yaml -------------------------------------------------------------------------------- /rollout/cli_tools_cloudbuild_deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/rollout/cli_tools_cloudbuild_deploy.yaml -------------------------------------------------------------------------------- /rollout/cli_tools_cloudbuild_release_workflow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/rollout/cli_tools_cloudbuild_release_workflow.yaml -------------------------------------------------------------------------------- /rollout/cli_tools_cloudbuild_rollback.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/rollout/cli_tools_cloudbuild_rollback.yaml -------------------------------------------------------------------------------- /run_e2e.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/compute-image-tools/HEAD/run_e2e.sh --------------------------------------------------------------------------------