[arvados] updated: 2.6.0-157-g29725dfdd

git repository hosting git at public.arvados.org
Thu May 11 14:52:58 UTC 2023


Summary of changes:
 doc/admin/upgrading.html.textile.liquid                | 7 ++++++-
 tools/salt-install/terraform/aws/services/user_data.sh | 8 ++------
 2 files changed, 8 insertions(+), 7 deletions(-)

       via  29725dfdd38e1c76a5d3f276e58972e86ecfdba9 (commit)
       via  936e915054b952552f36358864365a1934c0bffe (commit)
      from  1cabb7a57d7810ce0b0012351eb97ee2fb222082 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.


commit 29725dfdd38e1c76a5d3f276e58972e86ecfdba9
Author: Lucas Di Pentima <lucas.dipentima at curii.com>
Date:   Thu May 11 11:52:36 2023 -0300

    20482: Improves file/dir creation on user_data script.
    
    Arvados-DCO-1.1-Signed-off-by: Lucas Di Pentima <lucas.dipentima at curii.com>

diff --git a/tools/salt-install/terraform/aws/services/user_data.sh b/tools/salt-install/terraform/aws/services/user_data.sh
index 68af17ee2..ada3e84ad 100644
--- a/tools/salt-install/terraform/aws/services/user_data.sh
+++ b/tools/salt-install/terraform/aws/services/user_data.sh
@@ -20,10 +20,6 @@ apt-get -o Acquire::ForceIPv4=true install -y git curl
 
 SSH_DIR="/home/${deploy_user}/.ssh"
 if [ ! -d "$${SSH_DIR}" ]; then
-  mkdir $${SSH_DIR}
-  chown ${deploy_user}.${deploy_user} $${SSH_DIR}
-  chmod 700 $${SSH_DIR}
+  install -d -o ${deploy_user} -g ${deploy_user} -m 700 $${SSH_DIR}
 fi
-
-echo "${ssh_pubkey}" > $${SSH_DIR}/authorized_keys
-chmod 600 $${SSH_DIR}/authorized_keys
+echo "${ssh_pubkey}" | install -o ${deploy_user} -g ${deploy_user} -m 600 /dev/stdin $${SSH_DIR}/authorized_keys

commit 936e915054b952552f36358864365a1934c0bffe
Author: Lucas Di Pentima <lucas.dipentima at curii.com>
Date:   Thu May 11 11:49:46 2023 -0300

    20482: Adds upgrade notes on domain_name variable changes.
    
    Arvados-DCO-1.1-Signed-off-by: Lucas Di Pentima <lucas.dipentima at curii.com>

diff --git a/doc/admin/upgrading.html.textile.liquid b/doc/admin/upgrading.html.textile.liquid
index 5c76f534a..53e194bad 100644
--- a/doc/admin/upgrading.html.textile.liquid
+++ b/doc/admin/upgrading.html.textile.liquid
@@ -28,7 +28,12 @@ TODO: extract this information based on git commit messages and generate changel
 <div class="releasenotes">
 </notextile>
 
-h2(#main). development main (as of 2023-04-18)
+h2(#main). development main (as of 2023-05-11)
+
+h3. Multi-node installer's Terraform code changes
+
+The @domain_name@ variable at @terraform/vpc/terraform.tfvars@ changed its meaning. In previous versions it was used in combination with @cluster_name@ to build the cluster's domain name (e.g.: @cluster_name at .@domain_name@). To allow the use of any arbitrary cluster domain, now we don't enforce using the @cluster_name@ as part of the domain, so @domain_name@ needs to hold the entire domain for the given cluster.
+For example, if @cluster_name@ is set to @"xarv1"@ and @domain_name@ was previously set to @"example.com"@, it should now be set to @"xarv1.example.com"@ to keep using the same cluster domain.
 
 "previous: Upgrading to 2.6.1":#v2_6_1
 

-----------------------------------------------------------------------


hooks/post-receive
-- 




More information about the arvados-commits mailing list