You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Theoretically this is as easy as adding curl to the apk add ... commands in the Dockerfiles.
curl is a super valuable tool to have available for debugging and execution, as certain Terraform modules assume the tool is available on the system. wget is less common on systems and most tools assume the existence of curl before wget.
For example: wait_for_cluster_command in CloudPosse's EKS cluster module uses curl by default. While this can be overridden to use wget, not all the environments we run Terraform in have wget installed and we would prefer to not introduce a bunch of conditional logic.
Theoretically this is as easy as adding
curl
to theapk add ...
commands in the Dockerfiles.curl
is a super valuable tool to have available for debugging and execution, as certain Terraform modules assume the tool is available on the system.wget
is less common on systems and most tools assume the existence ofcurl
beforewget
.For example:
wait_for_cluster_command
in CloudPosse's EKS cluster module usescurl
by default. While this can be overridden to usewget
, not all the environments we run Terraform in havewget
installed and we would prefer to not introduce a bunch of conditional logic.Attaching a patch file with how this could look:
0001-Add-curl-to-images.patch.tar.gz
The text was updated successfully, but these errors were encountered: