You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by po...@apache.org on 2021/05/02 16:59:16 UTC

[airflow-ci-infra] branch add-gcp-cloud-init updated (e20c7b0 -> 2df17fd)

This is an automated email from the ASF dual-hosted git repository.

potiuk pushed a change to branch add-gcp-cloud-init
in repository https://gitbox.apache.org/repos/asf/airflow-ci-infra.git.


 discard e20c7b0  Cloud init is adapted to run GCE instance
 discard 11956c7  Updated requirements.
    omit ccb5a79  Do not pre-bake images in the instance
     add 1328951  Do not pre-bake images in the instance (#13)
     add 4ff4feb  User Packer to build a pre-built AMI with everything we need (#15)
     add 86bb048  Fix runner AMI so it (#16)
     add e036ae9  Don't encrypt the AMI's root snapshot (#17)
     add 2df17fd  Cloud init is adapted to run GCE instance

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (e20c7b0)
            \
             N -- N -- N   refs/heads/add-gcp-cloud-init (2df17fd)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

Summary of changes:
 .gitignore                                         |  35 +++++
 .../packer/files/actions-runner-ec2-reporting.sh   |   8 +-
 .../packer/files/actions.runner-supervisor.service |  29 ++--
 .../packer/files/actions.runner.service            |  35 +++--
 .../packer/files/cloudwatch-metrics-github-runners |   4 +-
 .../packer/files/docker-compose.sh                 |  24 +--
 .../packer/files/install-dependencies.sh           |  37 +++--
 .../packer/files/install-files.sh                  |  26 ++--
 .../packer/files/mounts_setup.sh                   |   6 +-
 .../packer/files/rules.v4                          |  21 +--
 .../packer/files/runner                            |   4 +-
 .../packer/files/runner-cleanup-workdir.sh         |  32 ++--
 .../packer/files}/runner-supervisor.py             |   0
 github-runner-ami/packer/files/runner_bootstrap.sh |  45 ++++++
 .../packer/files/source-list-additions.sh          |   9 +-
 .../packer/files/stop-runner-if-no-job.sh          |  36 +++--
 github-runner-ami/packer/files/timber.key          |  36 +++++
 github-runner-ami/packer/files/vector.toml         |  98 ++++++++++++
 github-runner-ami/packer/ubuntu2004.pkr.hcl        | 148 ++++++++++++++++++
 .../packer/vars/variables.pkrvars.hcl              |  10 +-
 lambdas/scale_out_runner/requirements.txt          |   1 -
 terraform/packer_roles/.terraform.lock.hcl         |  38 +++++
 terraform/packer_roles/main.tf                     | 171 +++++++++++++++++++++
 .../.gitignore => terraform/packer_roles/output.tf |   6 +-
 24 files changed, 716 insertions(+), 143 deletions(-)
 copy lambdas/scale_out_runner/.gitignore => github-runner-ami/packer/files/actions-runner-ec2-reporting.sh (74%)
 copy tests/lambdas/scale_out_runner/conftest.py => github-runner-ami/packer/files/actions.runner-supervisor.service (65%)
 copy tests/lambdas/scale_out_runner/conftest.py => github-runner-ami/packer/files/actions.runner.service (55%)
 copy lambdas/scale_out_runner/.gitignore => github-runner-ami/packer/files/cloudwatch-metrics-github-runners (92%)
 copy tests/lambdas/scale_out_runner/conftest.py => github-runner-ami/packer/files/docker-compose.sh (63%)
 copy tests/lambdas/scale_out_runner/conftest.py => github-runner-ami/packer/files/install-dependencies.sh (53%)
 copy tests/lambdas/scale_out_runner/conftest.py => github-runner-ami/packer/files/install-files.sh (52%)
 copy lambdas/scale_out_runner/.gitignore => github-runner-ami/packer/files/mounts_setup.sh (83%)
 copy requirements.txt => github-runner-ami/packer/files/rules.v4 (67%)
 copy lambdas/scale_out_runner/.gitignore => github-runner-ami/packer/files/runner (89%)
 copy tests/lambdas/scale_out_runner/conftest.py => github-runner-ami/packer/files/runner-cleanup-workdir.sh (61%)
 rename {scripts => github-runner-ami/packer/files}/runner-supervisor.py (100%)
 create mode 100644 github-runner-ami/packer/files/runner_bootstrap.sh
 copy lambdas/scale_out_runner/.gitignore => github-runner-ami/packer/files/source-list-additions.sh (71%)
 copy tests/lambdas/scale_out_runner/conftest.py => github-runner-ami/packer/files/stop-runner-if-no-job.sh (54%)
 create mode 100644 github-runner-ami/packer/files/timber.key
 create mode 100644 github-runner-ami/packer/files/vector.toml
 create mode 100644 github-runner-ami/packer/ubuntu2004.pkr.hcl
 copy lambdas/scale_out_runner/.gitignore => github-runner-ami/packer/vars/variables.pkrvars.hcl (73%)
 create mode 100644 terraform/packer_roles/.terraform.lock.hcl
 create mode 100644 terraform/packer_roles/main.tf
 copy lambdas/scale_out_runner/.gitignore => terraform/packer_roles/output.tf (92%)