diff --git a/tasks/configure.js b/tasks/configure.js index 25a326c5..58253fa1 100644 --- a/tasks/configure.js +++ b/tasks/configure.js @@ -131,6 +131,7 @@ module.exports = function (program, utils) { .option('-o, --overrides ', 'override these values', utils.list) .option('-n, --no-splunk', 'configure not to drain logs to splunk') .option('-r, --registry [registry-uri]', `use this registry, instead of the default: ${DEFAULT_REGISTRY_URI}`, DEFAULT_REGISTRY_URI) + .option('--vault', 'no-op, please remove this option from your Makefile') .action(function (source, target, options) { if (!options.splunk) { console.log('WARNING: --no-splunk no longer does anything and will be removed in the next version of NBT'); // eslint-disable-line no-console diff --git a/tasks/float.js b/tasks/float.js index 12c3214e..514027c9 100644 --- a/tasks/float.js +++ b/tasks/float.js @@ -84,6 +84,7 @@ module.exports = function (program, utils) { .option('-d --no-destroy', 'Don\'t automatically destroy new apps') .option('-r, --registry [registry-uri]', `use this registry, instead of the default: ${DEFAULT_REGISTRY_URI}`, DEFAULT_REGISTRY_URI) .option('-s --skip-gtg', 'skip the good-to-go HTTP check') + .option('--vault', 'no-op, please remove this option from your Makefile') .action(function (options){ task(options).catch(utils.exit); }); diff --git a/tasks/ship.js b/tasks/ship.js index 119469b5..33093c66 100644 --- a/tasks/ship.js +++ b/tasks/ship.js @@ -138,6 +138,7 @@ module.exports = function (program, utils) { .option('-p --pipeline [name]', 'The name of the pipeline to deploy to. Defaults to the app name') .option('-r, --registry [registry-uri]', `use this registry, instead of the default: ${DEFAULT_REGISTRY_URI}`, DEFAULT_REGISTRY_URI) .option('-m --multiregion', 'Will expect a US app as well as an EU one') + .option('--vault', 'no-op, please remove this option from your Makefile') .action(function (options){ task(options).catch(utils.exit); });