daml/infra
Gary Verhaegen 45c4ba2230
macos cache cleaning (#9245)
This is adapting the same approach as #9137 to the macOS machines. The
setup is very similar, except macOS apparently doesn't require any kind
of `sudo` access in the process.

The main reason for the change here is that while `~/.bazel-cache` is
reasonably fast to clean, cleaning just that has finally caught up to us
with a recent cleanup step that proudly claimed:

```
before: 638Mi free
after: 1.2Gi free
```

So we do need to start cleaning the other one after all.

CHANGELOG_BEGIN
CHANGELOG_END
2021-03-30 02:46:05 +02:00
..
macos macos cache cleaning (#9245) 2021-03-30 02:46:05 +02:00
modules/gcp_cdn_bucket update Terraform files to match reality (#8780) 2021-02-08 17:25:04 +00:00
.gitignore open-sourcing daml 2019-04-04 09:33:38 +01:00
apply infra: add a VSTS windows agents (#368) 2019-04-18 11:20:57 +00:00
bazel_cache.tf update Terraform files to match reality (#8780) 2021-02-08 17:25:04 +00:00
binaries.tf update Terraform files to match reality (#8780) 2021-02-08 17:25:04 +00:00
data_bucket.tf update Terraform files to match reality (#8780) 2021-02-08 17:25:04 +00:00
dumps_bucket.tf update Terraform files to match reality (#8780) 2021-02-08 17:25:04 +00:00
hoogle_server.tf update Terraform files to match reality (#8780) 2021-02-08 17:25:04 +00:00
main.tf update Terraform files to match reality (#8780) 2021-02-08 17:25:04 +00:00
nix_cache.tf update Terraform files to match reality (#8780) 2021-02-08 17:25:04 +00:00
periodic_killer.tf update Terraform files to match reality (#8780) 2021-02-08 17:25:04 +00:00
README.md Daml case and logo (#8433) 2021-01-08 12:50:15 +00:00
vsts_agent_ubuntu_20_04_startup.sh ci: fix cache cleanup (#9137) 2021-03-16 17:51:38 +01:00
vsts_agent_ubuntu_20_04.tf update Terraform files to match reality (#8780) 2021-02-08 17:25:04 +00:00
vsts_agent_windows.tf update Terraform files to match reality (#8780) 2021-02-08 17:25:04 +00:00
writer.tf update Terraform files to match reality (#8780) 2021-02-08 17:25:04 +00:00

Daml

This is the terraform code used by the Daml repository to deploy supporting infrastructure such as the Bazel caches, Nix caches and Azure Pipeline (VSTS) Agents.

Setup

To deploy the infrastructure changes, you will to get access to the da-dev-gcp-daml-language Google project from DA IT. Then run gcloud auth login to configure the local credentials.

Deployment

All the infrastructure is currently deployed using Terraform. For convenience we have a little wrapper script that you can run to apply the latest changes:

$ ./apply

Writer service-account key

To avoid holding the secret key into the store, creating the key has to be done through the UI.

This can be done here: https://console.cloud.google.com/iam-admin/serviceaccounts/details/104272946446260011088?project=da-dev-gcp-daml-language

Setting up credentials

In order to interact with these Terraform files, you will need security to give you access to the relevant GCP project (da-dev-gcp-daml-language), and login via gcloud by running:

gcloud auth application-default login --account your.name@gcloud-domain.com

Resetting build nodes

Permissions to reset build nodes are defined in periodic-killer.tf using the killCiNodes role. CI nodes are managed so killed nodes will be immediately replaced by a new one with the exact same configuration (but starting its initialization from scratch); we can therefore see killing a node and resetting a node as the same operation.

Nodes can be listed with

gcloud compute instances list --project=da-dev-gcp-daml-language

and individual nodes can be killed with

gcloud compute instances --project=da-dev-gcp-daml-language delete --zone=us-east4-a vsts-agent-linux-dhw4

where zone and name have to match.

As a reference, here are a couple zsh functions I have added to my shell to make my life easier:

refresh_machines() {
    machines=$(gcloud compute instances list --format=json --project=da-dev-gcp-daml-language | jq -c '[.[] | select (.name | startswith("vsts-")) | {key: .name, value: .zone | sub (".*/"; "")}] | from_entries')
}

kill_machine() {
    if [ -z "$machines" ]; then
        refresh_machines
    fi
    for machine in $@; do
        gcloud -q compute instances --project=da-dev-gcp-daml-language delete --zone=$(echo $machines | jq -r ".[\"$machine\"]") $machine
    done
}
_kill_machine() {
    local machine_names
    if [ -z "$machines" ]; then
        refresh_machines
    fi
    machine_names=$(echo $machines | jq -r "keys - $(echo -n $words | jq -sRc 'split(" ")') | .[]")
    _arguments "*: :($machine_names)"
}
compdef _kill_machine kill_machine