This is an automated email from the ASF dual-hosted git repository. damccorm pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/beam.git
from f7b31ebb033 Pass namespace through RunInference transform (#23182) add 283f3b170be [GitHub Actions] - INFRA scripts to implement GCP Self-hosted runners (Ubuntu&Windows) (#23158) No new revisions were added by this update. Summary of changes: .github/gh-actions-self-hosted-runners/README.md | 121 +++++++++++++++++++++ .../diagrams/gh-actions-k8s-runners-pod.png | Bin 0 -> 72689 bytes .../diagrams/self-hosted-runners-architecture.png | Bin 0 -> 201523 bytes .../self-hosted-runners-delete-function.png | Bin 0 -> 77310 bytes .../helper-functions/README.md | 39 +++++++ .../helper-functions/cloud-functions/example.env | 8 ++ .../cloud-functions/generateToken/index.js | 76 +++++++++++++ .../cloud-functions/generateToken/package.json | 14 +++ .../cloud-functions/monitorRunnersStatus/index.js | 88 +++++++++++++++ .../monitorRunnersStatus/package.json | 14 +++ .../cloud-functions/removeOfflineRunners/index.js | 81 ++++++++++++++ .../removeOfflineRunners/package.json | 14 +++ .../cloud-functions/shared/constants.js | 19 ++++ .../self-hosted-linux/README.md | 100 +++++++++++++++++ .../self-hosted-linux/docker/Dockerfile | 59 ++++++++++ .../self-hosted-linux/docker/docker-compose.yml | 30 +++++ .../self-hosted-linux/docker/entrypoint.sh | 58 ++++++++++ .../self-hosted-linux/docker/example.var.env | 7 ++ .../kubernetes/delete-k8s-deployment.sh | 20 ++++ .../kubernetes/github-actions-deployment.yml | 76 +++++++++++++ .../kubernetes/github-actions-hpa.yml | 29 +++++ .../kubernetes/github-actions-secrets.yml | 30 +++++ .../kubernetes/github-actions-vpa.yml | 28 +++++ .../kubernetes/run-k8s-deployment.sh | 22 ++++ .../self-hosted-windows/README.md | 43 ++++++++ .../self-hosted-windows/shutdownScript.ps1 | 23 ++++ .../self-hosted-windows/startupScript.ps1 | 49 +++++++++ 27 files changed, 1048 insertions(+) create mode 100644 .github/gh-actions-self-hosted-runners/README.md create mode 100644 .github/gh-actions-self-hosted-runners/diagrams/gh-actions-k8s-runners-pod.png create mode 100644 .github/gh-actions-self-hosted-runners/diagrams/self-hosted-runners-architecture.png create mode 100644 .github/gh-actions-self-hosted-runners/diagrams/self-hosted-runners-delete-function.png create mode 100644 .github/gh-actions-self-hosted-runners/helper-functions/README.md create mode 100644 .github/gh-actions-self-hosted-runners/helper-functions/cloud-functions/example.env create mode 100644 .github/gh-actions-self-hosted-runners/helper-functions/cloud-functions/generateToken/index.js create mode 100644 .github/gh-actions-self-hosted-runners/helper-functions/cloud-functions/generateToken/package.json create mode 100644 .github/gh-actions-self-hosted-runners/helper-functions/cloud-functions/monitorRunnersStatus/index.js create mode 100644 .github/gh-actions-self-hosted-runners/helper-functions/cloud-functions/monitorRunnersStatus/package.json create mode 100644 .github/gh-actions-self-hosted-runners/helper-functions/cloud-functions/removeOfflineRunners/index.js create mode 100644 .github/gh-actions-self-hosted-runners/helper-functions/cloud-functions/removeOfflineRunners/package.json create mode 100644 .github/gh-actions-self-hosted-runners/helper-functions/cloud-functions/shared/constants.js create mode 100644 .github/gh-actions-self-hosted-runners/self-hosted-linux/README.md create mode 100644 .github/gh-actions-self-hosted-runners/self-hosted-linux/docker/Dockerfile create mode 100644 .github/gh-actions-self-hosted-runners/self-hosted-linux/docker/docker-compose.yml create mode 100644 .github/gh-actions-self-hosted-runners/self-hosted-linux/docker/entrypoint.sh create mode 100644 .github/gh-actions-self-hosted-runners/self-hosted-linux/docker/example.var.env create mode 100644 .github/gh-actions-self-hosted-runners/self-hosted-linux/kubernetes/delete-k8s-deployment.sh create mode 100644 .github/gh-actions-self-hosted-runners/self-hosted-linux/kubernetes/github-actions-deployment.yml create mode 100644 .github/gh-actions-self-hosted-runners/self-hosted-linux/kubernetes/github-actions-hpa.yml create mode 100644 .github/gh-actions-self-hosted-runners/self-hosted-linux/kubernetes/github-actions-secrets.yml create mode 100644 .github/gh-actions-self-hosted-runners/self-hosted-linux/kubernetes/github-actions-vpa.yml create mode 100644 .github/gh-actions-self-hosted-runners/self-hosted-linux/kubernetes/run-k8s-deployment.sh create mode 100644 .github/gh-actions-self-hosted-runners/self-hosted-windows/README.md create mode 100644 .github/gh-actions-self-hosted-runners/self-hosted-windows/shutdownScript.ps1 create mode 100644 .github/gh-actions-self-hosted-runners/self-hosted-windows/startupScript.ps1