volatilemolotov commented on code in PR #26845:
URL: https://github.com/apache/beam/pull/26845#discussion_r1205228026


##########
.github/gh-actions-self-hosted-runners/arc/config/arc_deployment.tpl:
##########
@@ -0,0 +1,39 @@
+#
+# 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.
+#
+apiVersion: actions.summerwind.dev/v1alpha1
+kind: RunnerDeployment
+metadata:
+  name: main-runners
+spec:
+  template:
+    spec:
+      image: summerwind/actions-runner:v2.304.0-ubuntu-20.04-30355f7

Review Comment:
   This is the image that is used by default by the controller. I only pinned 
the version that was latest at the time.
   Image itself looks fine to use and probably works best with the controller



##########
.github/gh-actions-self-hosted-runners/arc/locals.tf:
##########
@@ -0,0 +1,39 @@
+#
+# 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.
+#
+
+
+locals {
+        subnetwork_cidr_range = "10.128.0.0/20"
+        arc_values = {
+            "githubWebhookServer.enabled" = "true"
+            "authSecret.create" = "true"
+            "authSecret.github_app_id" = 
data.google_secret_manager_secret_version.github_app_id.secret_data
+            "authSecret.github_app_installation_id" = 
data.google_secret_manager_secret_version.github_app_install_id.secret_data
+            "authSecret.github_app_private_key" = 
data.google_secret_manager_secret_version.github_private_key.secret_data
+            "githubWebhookServer.ingress.enabled" = "true"
+            "githubWebhookServer.ingress.hosts[0].host" = var.ingress_domain
+            "githubWebhookServer.ingress.hosts[0].paths[0].path" = "/"
+            "githubWebhookServer.ingress.hosts[0].paths[0].pathType" = 
"ImplementationSpecific"
+            "githubWebhookServer.service.type" = "NodePort"
+            #"githubWebhookServer.ingress.tls[0].hosts[0]" = var.ingress_domain

Review Comment:
   Leftover from prototype. Removed



-- 
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]

Reply via email to