From 2a85243691f9381fcdc56126b27b104ffb707164 Mon Sep 17 00:00:00 2001 From: "Karl O. Pinc" Date: Sun, 15 Oct 2023 12:48:47 -0500 Subject: [PATCH] Document hardcoding of cluster init and provide related control variables --- make_files/make_cluster.mk | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/make_files/make_cluster.mk b/make_files/make_cluster.mk index 1a54961..7c2a784 100644 --- a/make_files/make_cluster.mk +++ b/make_files/make_cluster.mk @@ -45,6 +45,12 @@ ## to create. To fully qualify this host name append ## ".postgres.database.azure.com". The default is "sokwe-dbs". ## +## +## CAUTION: Cluster setup, the "az-init" target, has a number of +## important values which are hardcoded. These may need to be +## adjusted over time. The firewalling (WEBSERVER_IP) and disk +## allocated (DISK_GIB) are particularly likely to need adjustment. +## ## Usage: ## ## If you are on Azure: @@ -131,9 +137,13 @@ TARGET_SERVER ?= sokwe-dbs # Azure related variables # The (one) IP that that firewall allows to access the db server. +# In other words, the db is directly accessable only to the webserver. # TODO: We would like to be able to resolve the sokwe.janegoodall.org name # but that's not happening right now. WEBSERVER_IP := 20.119.86.26 +# GiB of disk to allocate to the cluster. +DISK_GIB := 32 +# # The name of a database to throw away. # Azure requires we create a db when we create the server, but we want # to specify our own settings when creating the db so we delete @@ -190,7 +200,7 @@ az-init: --database-name $(THROWAWAY_DB) \ --name $(TARGET_SERVER) \ --resource-group $(RESOURCEGROUP) \ - --storage-size 32 \ + --storage-size $(DISK_GIB) \ --version 15 \ --admin-user $(ADMINUSER) -- 2.34.1