Problem
Attempting to generate a Support Bundle for Terraform Enterprise (TFE) using either tfe-admin support-bundle or replicatedctl support-bundle as documented here fails with the following error.
Error: response from daemon: support bundle V1 is not implemented in replicatedctl, please use `replicated apps` and `replicated support-bundle <app-id>` instead
Cause
Changes to Replicated version or modifications to Replicated configuration may produce this issue.
Solution 1 (No Downtime)
Per the error message, run the following to obtain the application ID for TFE:
$ replicated apps
Then run the following to generate a support bundle:
$ replicated support-bundle <app-id>
For Active/Active deployments, these commands will need to be run on each node.
Solution 2 (Requires Downtime)
To regain replicatedctl support-bundle functionality run the following command:
$ replicatedctl params set SupportBundleExternal --value "true"
After making this update, you will need to restart the application for the changes to take effect. This will cause a break in TFE service:
$ replicatedctl app stop
$ systemctl restart replicated replicated-operator
For Active/Active deployments, the above commands will need to be run on each node.