volatilemolotov commented on code in PR #26845: URL: https://github.com/apache/beam/pull/26845#discussion_r1205228740
########## .github/gh-actions-self-hosted-runners/arc/README.md: ########## @@ -0,0 +1,63 @@ +<!-- + Licensed to the Apache Software Foundation (ASF) under one + or more contributor license agreements. See the NOTICE file + distributed with this work for additional information + regarding copyright ownership. The ASF licenses this file + to you under the Apache License, Version 2.0 (the + "License"); you may not use this file except in compliance + with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +# Actions Runner Contoler + +# About +Check out the docs at https://github.com/actions/actions-runner-controller/blob/master/docs/about-arc.md + +# Installing +1. Create a file called `overrides.tfvars` with the following contents: +``` +project_id = "PROJECT_ID" # google PROJECT_ID that you want to deploy in +region = "gcp_region" # GCP region for the network +zone = "europe-west3-c" # GCP zone for the nodes +min_main_node_count = "1" # Minimal and initial node count for main pool +max_main_node_count = "5" # Maximal node count for main pool +environment = "environment_name" # Name of the environment. Used as a prefix like dev- stag- anything- +ingress_domain = "fqdn" # FQDN for webhook ingress +organization = "org" # Github Organization to use runners in +repository = "repo" # Repository to use runners in +github_app_id = "app_id" # Github App app_id +github_app_installation_id = "install_id" # Github App install id +github_app_private_key_path = "absolute_path_to_key" # Absolute filesystem path to .pem keyfile generated in the Github App Review Comment: Correct, these should be secret names from the previous step. Fixed -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
