aboutsummaryrefslogtreecommitdiffhomepage
path: root/README.md
diff options
context:
space:
mode:
authorPaul Bonaud <paul.bonaud@fretlink.com>2020-06-22 18:34:38 +0200
committerPaul Bonaud <paul.bonaud@fretlink.com>2020-06-23 10:52:37 +0200
commitab73076c017bfc8abbe62e617292ef7232b630f1 (patch)
treec0fbd00645140c6318d03e127773b4ec067c7f9e /README.md
parent44af02cef61e043b971f03aa5cec5a4caa6d6875 (diff)
downloadansible-clever-ab73076c017bfc8abbe62e617292ef7232b630f1.tar.gz
ansible-clever-ab73076c017bfc8abbe62e617292ef7232b630f1.tar.zst
ansible-clever-ab73076c017bfc8abbe62e617292ef7232b630f1.zip
feature: add a new 'clever_restart_only' flag to restart an app
This new flag will perform a restart on the target clever cloud application instead of deploying it.
Diffstat (limited to 'README.md')
-rw-r--r--README.md3
1 files changed, 2 insertions, 1 deletions
diff --git a/README.md b/README.md
index 22c70b4..51b9e3d 100644
--- a/README.md
+++ b/README.md
@@ -35,13 +35,14 @@ Variables for the application:
35- `clever_build_flavor`: an optional text value used to configure the size of the dedicated build instance (for instance `S` or `XL`). If not defined, it delegates to clever cloud default behaviour. Setting `disabled` disables the dedicated build instance altogether. 35- `clever_build_flavor`: an optional text value used to configure the size of the dedicated build instance (for instance `S` or `XL`). If not defined, it delegates to clever cloud default behaviour. Setting `disabled` disables the dedicated build instance altogether.
36- `clever_scaling`: an optional object used to configure the runtime instances flavours and numbers. If not defined, it delegates to clever cloud default behaviour. 36- `clever_scaling`: an optional object used to configure the runtime instances flavours and numbers. If not defined, it delegates to clever cloud default behaviour.
37 37
38Variables specific to deployment, default should be fine: 38Variables specific to deployment, defaults should be fine:
39 39
40- `clever_cli_version`: Version of clever cli tools, default to `2.6.1`. 40- `clever_cli_version`: Version of clever cli tools, default to `2.6.1`.
41- `clever_user_path`: Path relative to ansible_user home dir where cli tools and helpers are installed default to `.local/bin`. 41- `clever_user_path`: Path relative to ansible_user home dir where cli tools and helpers are installed default to `.local/bin`.
42- `clever_app_root`: Path of the application to deploy, default to `app_root` if defined or `"{{ playbook_dir }}/.."` otherwise. I.e. the default behavior will work fine if you define a playbook using this role in a one level deep directory (e.g. `deployment/`) of the root of the application. 42- `clever_app_root`: Path of the application to deploy, default to `app_root` if defined or `"{{ playbook_dir }}/.."` otherwise. I.e. the default behavior will work fine if you define a playbook using this role in a one level deep directory (e.g. `deployment/`) of the root of the application.
43- `clever_app_confdir`: Path where to store clever cloud data specific to this application, default to `"{{ clever_app_root }}/.clever_cloud"` 43- `clever_app_confdir`: Path where to store clever cloud data specific to this application, default to `"{{ clever_app_root }}/.clever_cloud"`
44- `clever_login_file`: Path to store login information. Default to `"{{ clever_app_confdir }}/login"`. 44- `clever_login_file`: Path to store login information. Default to `"{{ clever_app_confdir }}/login"`.
45- `clever_restart_only`: set to `true` to skip any deployment related tasks (domain, scaling, env, deploy, …) and only restart the application. Optional.
45 46
46Variables specific to Haskell applications: 47Variables specific to Haskell applications:
47 48