@@ -108,6 +108,33 @@ update_ipa: "{{ update_repos }}"
108108# Use the DIB dynamic-login element to insert the SSH key
109109ipa_add_ssh_key : false
110110
111+ # Username for Digest, Basic or WSSE authentication. Default is unset, in which
112+ # case the parameter is omitted.
113+ ipa_download_url_username :
114+ # Password for Digest, Basic or WSSE authentication. Default is unset, in which
115+ # case the parameter is omitted.
116+ ipa_download_url_password :
117+ # Force sending the Basic authentication header upon initial request. Useful if
118+ # the remote endpoint does not respond with HTTP 401 to the initial
119+ # unauthenticated request. Must be a boolean. Default is unset, in which case
120+ # the parameter is omitted.
121+ ipa_download_force_basic_auth :
122+ # List of header names that will not be sent on subsequent redirected requests.
123+ # Set to ['Authorization'] if being redirected from an authenticated endpoint
124+ # to an unauthenticated endpoint. Default is unset, in which case the parameter
125+ # is omitted.
126+ ipa_download_unredirected_headers :
127+
128+ # Can be overridden if ramdisk and kernel require different authentication.
129+ ipa_kernel_download_url_username : " {{ ipa_download_url_username }}"
130+ ipa_kernel_download_url_password : " {{ ipa_download_url_password }}"
131+ ipa_kernel_download_force_basic_auth : " {{ ipa_download_force_basic_auth }}"
132+ ipa_kernel_download_unredirected_headers : " {{ ipa_download_unredirected_headers }}"
133+ ipa_ramdisk_download_url_username : " {{ ipa_download_url_username }}"
134+ ipa_ramdisk_download_url_password : " {{ ipa_download_url_password }}"
135+ ipa_ramdisk_download_force_basic_auth : " {{ ipa_download_force_basic_auth }}"
136+ ipa_ramdisk_download_unredirected_headers : " {{ ipa_download_unredirected_headers }}"
137+
111138# Deployment image distribution, for selecting a default upstream image. Valid
112139# options are "cirros", "centos", "rocky", "ubuntu". Default is "cirros".
113140upstream_deploy_image_distribution : " cirros"
@@ -142,6 +169,10 @@ deploy_image_sources:
142169 image : " https://dl.rockylinux.org/pub/rocky/9/images/x86_64/Rocky-9-GenericCloud.latest.x86_64.qcow2"
143170 checksum : " https://dl.rockylinux.org/pub/rocky/9/images/x86_64/CHECKSUM"
144171 checksum_algorithm : " sha256"
172+ " 10 " :
173+ image : " https://dl.rockylinux.org/pub/rocky/10/images/x86_64/Rocky-10-GenericCloud-Base.latest.x86_64.qcow2"
174+ checksum : " https://dl.rockylinux.org/pub/rocky/10/images/x86_64/CHECKSUM"
175+ checksum_algorithm : " sha256"
145176 centos :
146177 9-stream :
147178 image : " https://cloud.centos.org/centos/9-stream/x86_64/images/CentOS-Stream-GenericCloud-9-latest.x86_64.qcow2"
0 commit comments