-
Notifications
You must be signed in to change notification settings - Fork 106
/
Copy pathvariables.tf
191 lines (161 loc) · 5.78 KB
/
variables.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
/**
* Copyright 2020 Google LLC
*
* Licensed 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.
*/
variable "project_id" {
type = string
description = "The project id to deploy Github Runner cluster"
}
variable "region" {
type = string
description = "The GCP region to deploy instances into"
default = "us-east4"
}
variable "zones" {
type = list(string)
description = "The GCP zone to deploy gke into"
default = ["us-east4-a"]
}
variable "ip_range_pods_name" {
type = string
description = "The secondary ip range to use for pods"
default = "ip-range-pods"
}
variable "ip_range_services_name" {
type = string
description = "The secondary ip range to use for services"
default = "ip-range-scv"
}
variable "ip_range_pods_cidr" {
type = string
description = "The secondary ip range cidr to use for pods"
default = "192.168.0.0/18"
}
variable "ip_range_services_cider" {
type = string
description = "The secondary ip range cidr to use for services"
default = "192.168.64.0/18"
}
variable "network_name" {
type = string
description = "Name for the VPC network"
default = "runner-network"
}
variable "subnet_ip" {
type = string
description = "IP range for the subnet"
default = "10.0.0.0/17"
}
variable "subnet_name" {
type = string
description = "Name for the subnet"
default = "runner-subnet"
}
variable "create_network" {
type = bool
description = "When set to true, VPC will be auto created"
default = true
}
variable "subnetwork_project" {
type = string
description = "The ID of the project in which the subnetwork belongs. If it is not provided, the project_id is used."
default = ""
}
variable "machine_type" {
type = string
description = "Machine type for runner node pool"
default = "n1-standard-4"
}
variable "max_node_count" {
type = number
description = "Maximum number of nodes in the runner node pool"
default = 4
}
variable "min_node_count" {
type = number
description = "Minimum number of nodes in the runner node pool"
default = 2
}
variable "gh_app_pre_defined_secret_name" {
type = string
description = "Name for the k8s secret required to configure gh runners on GKE via GitHub App authentication"
default = "gh-app-pre-defined-secret"
}
variable "gh_app_id" {
type = string
description = "After creating the GitHub App, on the GitHub App's page, note the value for \"App ID\"."
}
variable "gh_app_installation_id" {
type = string
description = "You can find the app installation ID on the app installation page, which has the following URL format: `https://github.com/organizations/ORGANIZATION/settings/installations/INSTALLATION_ID`"
}
variable "gh_app_private_key" {
type = string
description = "Under \"Private keys\", click Generate a private key, and save the .pem file. Use the contents of this file for this variable."
sensitive = true
}
variable "service_account" {
type = string
description = "Optional Service Account for the nodes"
default = ""
}
variable "arc_systems_namespace" {
type = string
description = "Namespace created for the ARC operator pods."
default = "arc-systems"
}
variable "arc_runners_namespace" {
type = string
description = "Namespace created for the ARC runner pods."
default = "arc-runners"
}
variable "cluster_suffix" {
type = string
description = "Name of the GitHub organization associated with this runner cluster."
default = "arc"
}
variable "gh_config_url" {
type = string
description = "URL of GitHub App config. If installed in an organization, this is in the format \"https://github.com/ORGANIZATION\""
}
variable "arc_runners_version" {
type = string
description = "Version tag for the ARC image. See [https://github.com/actions/actions-runner-controller/pkgs/container/actions-runner-controller-charts%2Fgha-runner-scale-set](https://github.com/actions/actions-runner-controller/pkgs/container/actions-runner-controller-charts%2Fgha-runner-scale-set) for releases."
default = "0.9.3"
}
variable "arc_controller_version" {
type = string
description = "Version tag for the ARC image. See [https://github.com/actions/actions-runner-controller/pkgs/container/actions-runner-controller-charts%2Fgha-runner-scale-set-controller](https://github.com/actions/actions-runner-controller/pkgs/container/actions-runner-controller-charts%2Fgha-runner-scale-set-controller) for releases."
default = "0.9.3"
}
variable "arc_container_mode" {
type = string
description = "value of containerMode.type in ARC runner scale set helm chart. If set, value can be `dind` or `kubernetes`"
default = ""
}
variable "arc_controller_values" {
type = list(string)
description = "List of values in raw yaml format to pass to helm for ARC runners scale set controller chart"
default = []
}
variable "arc_runners_values" {
type = list(string)
description = "List of values in raw yaml format to pass to helm for ARC runners scale set chart"
default = []
}
variable "enable_private_nodes" {
type = bool
description = "Whether nodes have internal IP addresses only."
default = false
}