To load extra container images or executables, you must set load_additional_components to "true". You can then specify the types of components to load:
additional_url_images: Load images from a tar URL (requires additional_url_images_list).additional_registry_images: Load images from a registry (requires additional_registry_images_list).additional_executables: Load executables from a URL (requires additional_executables_list and additional_executables_destination_path).additional_s3: Load components from an S3-compatible endpoint.
{
"additional_executables": "true",
"additional_executables_destination_path": "/path/to/dest",
"additional_executables_list": "http://path/to/exec1,http://path/to/exec2",
"additional_s3": "true",
"additional_s3_endpoint": "https://path-to-s3-endpoint",
"additional_s3_access": "S3_ACCESS_KEY",
"additional_s3_secret": "S3_SECRET_KEY",
"additional_s3_bucket": "some-bucket",
"additional_s3_object": "path/to/object",
"additional_s3_destination_path": "/path/to/dest",
"additional_s3_ceph": "true",
"additional_registry_images": "true",
"additional_registry_images_list": "plndr/kube-vip:0.3.4,plndr/kube-vip:0.3.3",
"additional_url_images": "true",
"additional_url_images_list": "http://path/to/image1.tar,http://path/to/image2.tar",
"load_additional_components": "true"
}