From 399a7c25a45f997986611d31f56963462e3b6340 Mon Sep 17 00:00:00 2001 From: mason Date: Wed, 30 Oct 2019 00:16:17 -0600 Subject: [PATCH] move to command folders --- commands/{ => db}/db-change-root-password.sh | 0 commands/{ => db}/db-init.sh | 0 commands/{ => db}/db-setup.sh | 0 commands/scale/scale-disks.sh | 2 ++ readme.md | 6 ++++++ 5 files changed, 8 insertions(+) rename commands/{ => db}/db-change-root-password.sh (100%) rename commands/{ => db}/db-init.sh (100%) rename commands/{ => db}/db-setup.sh (100%) create mode 100644 commands/scale/scale-disks.sh diff --git a/commands/db-change-root-password.sh b/commands/db/db-change-root-password.sh similarity index 100% rename from commands/db-change-root-password.sh rename to commands/db/db-change-root-password.sh diff --git a/commands/db-init.sh b/commands/db/db-init.sh similarity index 100% rename from commands/db-init.sh rename to commands/db/db-init.sh diff --git a/commands/db-setup.sh b/commands/db/db-setup.sh similarity index 100% rename from commands/db-setup.sh rename to commands/db/db-setup.sh diff --git a/commands/scale/scale-disks.sh b/commands/scale/scale-disks.sh new file mode 100644 index 0000000..723972e --- /dev/null +++ b/commands/scale/scale-disks.sh @@ -0,0 +1,2 @@ + +# Instructions here for google cloud https://cloud.google.com/compute/docs/disks/add-persistent-disk diff --git a/readme.md b/readme.md index db66109..e8ff105 100644 --- a/readme.md +++ b/readme.md @@ -12,3 +12,9 @@ It will monitor the resource usage and response times and react when predetermin * Scale down when resources are under utilized * Allow manual scaling * In public cloud environments manage VM sizes and usage + +## Design Principles + +* All features should work on local systems and in public clouds +* If there are specific cloud behaviors then there should be a way to specify which cloud the target is running on. +* Define a generic interface and implement it for each cloud.