Skip to content

Commit

Permalink
chore(main): release 7.4.0 (#1085)
Browse files Browse the repository at this point in the history
🤖 I have created a release *beep* *boop*
---


##
[7.4.0](7.3.1...7.4.0)
(2024-02-15)


### Features

* error checking for initial API token call
([#1080](#1080))
([6b3740a](6b3740a))


### Bug Fixes

* rename `pull_policies` to `pull_policy` in `config.toml`
([#1084](#1084))
([df39014](df39014))
* repair errors in startup shell script
([#1087](#1087))
([9b7c465](9b7c465))

---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please). See
[documentation](https://github.com/googleapis/release-please#release-please).

---------

Co-authored-by: cattle-ops-releaser-2[bot] <134548870+cattle-ops-releaser-2[bot]@users.noreply.github.com>
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
1 parent 9b7c465 commit da5f319
Show file tree
Hide file tree
Showing 9 changed files with 42 additions and 29 deletions.
2 changes: 1 addition & 1 deletion .github/.release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "7.3.1"
".": "7.4.0"
}
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Changelog

## [7.4.0](https://github.com/cattle-ops/terraform-aws-gitlab-runner/compare/7.3.1...7.4.0) (2024-02-15)


### Features

* error checking for initial API token call ([#1080](https://github.com/cattle-ops/terraform-aws-gitlab-runner/issues/1080)) ([6b3740a](https://github.com/cattle-ops/terraform-aws-gitlab-runner/commit/6b3740a5c63a539e844a89ec810e949d3d1bfca6))


### Bug Fixes

* rename `pull_policies` to `pull_policy` in `config.toml` ([#1084](https://github.com/cattle-ops/terraform-aws-gitlab-runner/issues/1084)) ([df39014](https://github.com/cattle-ops/terraform-aws-gitlab-runner/commit/df39014d8eaacd0535c3cd4ab9e60899a708eea5))
* repair errors in startup shell script ([#1087](https://github.com/cattle-ops/terraform-aws-gitlab-runner/issues/1087)) ([9b7c465](https://github.com/cattle-ops/terraform-aws-gitlab-runner/commit/9b7c4653d71eaa8470c343083c8dfe05ff9c8911))

## [7.3.1](https://github.com/cattle-ops/terraform-aws-gitlab-runner/compare/v7.3.0...7.3.1) (2024-02-08)


Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ This project is licensed under the MIT License - see the [LICENSE](LICENSE) file

| Name | Version |
|------|---------|
| <a name="provider_aws"></a> [aws](#provider\_aws) | 5.35.0 |
| <a name="provider_aws"></a> [aws](#provider\_aws) | 5.36.0 |
| <a name="provider_local"></a> [local](#provider\_local) | 2.4.1 |
| <a name="provider_tls"></a> [tls](#provider\_tls) | 4.0.5 |

Expand Down Expand Up @@ -200,7 +200,7 @@ This project is licensed under the MIT License - see the [LICENSE](LICENSE) file
| <a name="input_runner_worker_docker_machine_instance_spot"></a> [runner\_worker\_docker\_machine\_instance\_spot](#input\_runner\_worker\_docker\_machine\_instance\_spot) | enable = Enable spot instances for the Runner Worker.<br>max\_price = The maximum price willing to pay. By default the price is limited by the current on demand price for the instance type chosen. | <pre>object({<br> enable = optional(bool, true)<br> max_price = optional(string, "on-demand-price")<br> })</pre> | `{}` | no |
| <a name="input_runner_worker_docker_machine_role"></a> [runner\_worker\_docker\_machine\_role](#input\_runner\_worker\_docker\_machine\_role) | additional\_tags = Map of tags that will be added to the Runner Worker.<br>assume\_role\_policy\_json = Assume role policy for the Runner Worker.<br>policy\_arns = List of ARNs of IAM policies to attach to the Runner Workers.<br>profile\_name = Name of the IAM profile to attach to the Runner Workers. | <pre>object({<br> additional_tags = optional(map(string), {})<br> assume_role_policy_json = optional(string, "")<br> policy_arns = optional(list(string), [])<br> profile_name = optional(string, "")<br> })</pre> | `{}` | no |
| <a name="input_runner_worker_docker_machine_security_group_description"></a> [runner\_worker\_docker\_machine\_security\_group\_description](#input\_runner\_worker\_docker\_machine\_security\_group\_description) | A description for the Runner Worker security group | `string` | `"A security group containing Runner Worker instances"` | no |
| <a name="input_runner_worker_docker_options"></a> [runner\_worker\_docker\_options](#input\_runner\_worker\_docker\_options) | Options added to the [runners.docker] section of config.toml to configure the Docker container of the Runner Worker. For<br> details check https://docs.gitlab.com/runner/configuration/advanced-configuration.html<br><br> Default values if the option is not given:<br> disable\_cache = "false"<br> image = "docker:18.03.1-ce"<br> privileged = "true"<br> pull\_policy = "always"<br> shm\_size = 0<br> tls\_verify = "false"<br> volumes = "/cache" | <pre>object({<br> allowed_images = optional(list(string))<br> allowed_pull_policies = optional(list(string))<br> allowed_services = optional(list(string))<br> cache_dir = optional(string)<br> cap_add = optional(list(string))<br> cap_drop = optional(list(string))<br> container_labels = optional(list(string))<br> cpuset_cpus = optional(string)<br> cpu_shares = optional(number)<br> cpus = optional(string)<br> devices = optional(list(string))<br> device_cgroup_rules = optional(list(string))<br> disable_cache = optional(bool, false)<br> disable_entrypoint_overwrite = optional(bool)<br> dns = optional(list(string))<br> dns_search = optional(list(string))<br> extra_hosts = optional(list(string))<br> gpus = optional(string)<br> helper_image = optional(string)<br> helper_image_flavor = optional(string)<br> host = optional(string)<br> hostname = optional(string)<br> image = optional(string, "docker:18.03.1-ce")<br> isolation = optional(string)<br> links = optional(list(string))<br> mac_address = optional(string)<br> memory = optional(string)<br> memory_swap = optional(string)<br> memory_reservation = optional(string)<br> network_mode = optional(string)<br> oom_kill_disable = optional(bool)<br> oom_score_adjust = optional(number)<br> privileged = optional(bool, true)<br> pull_policies = optional(list(string), ["always"])<br> runtime = optional(string)<br> security_opt = optional(list(string))<br> shm_size = optional(number, 0)<br> sysctls = optional(list(string))<br> tls_cert_path = optional(string)<br> tls_verify = optional(bool, false)<br> user = optional(string)<br> userns_mode = optional(string)<br> volumes = optional(list(string), ["/cache"])<br> volumes_from = optional(list(string))<br> volume_driver = optional(string)<br> wait_for_services_timeout = optional(number)<br> })</pre> | <pre>{<br> "disable_cache": "false",<br> "image": "docker:18.03.1-ce",<br> "privileged": "true",<br> "pull_policy": "always",<br> "shm_size": 0,<br> "tls_verify": "false",<br> "volumes": [<br> "/cache"<br> ]<br>}</pre> | no |
| <a name="input_runner_worker_docker_options"></a> [runner\_worker\_docker\_options](#input\_runner\_worker\_docker\_options) | Options added to the [runners.docker] section of config.toml to configure the Docker container of the Runner Worker. For<br> details check https://docs.gitlab.com/runner/configuration/advanced-configuration.html<br><br> Default values if the option is not given:<br> disable\_cache = "false"<br> image = "docker:18.03.1-ce"<br> privileged = "true"<br> pull\_policy = "always"<br> shm\_size = 0<br> tls\_verify = "false"<br> volumes = "/cache" | <pre>object({<br> allowed_images = optional(list(string))<br> allowed_pull_policies = optional(list(string))<br> allowed_services = optional(list(string))<br> cache_dir = optional(string)<br> cap_add = optional(list(string))<br> cap_drop = optional(list(string))<br> container_labels = optional(list(string))<br> cpuset_cpus = optional(string)<br> cpu_shares = optional(number)<br> cpus = optional(string)<br> devices = optional(list(string))<br> device_cgroup_rules = optional(list(string))<br> disable_cache = optional(bool, false)<br> disable_entrypoint_overwrite = optional(bool)<br> dns = optional(list(string))<br> dns_search = optional(list(string))<br> extra_hosts = optional(list(string))<br> gpus = optional(string)<br> helper_image = optional(string)<br> helper_image_flavor = optional(string)<br> host = optional(string)<br> hostname = optional(string)<br> image = optional(string, "docker:18.03.1-ce")<br> isolation = optional(string)<br> links = optional(list(string))<br> mac_address = optional(string)<br> memory = optional(string)<br> memory_swap = optional(string)<br> memory_reservation = optional(string)<br> network_mode = optional(string)<br> oom_kill_disable = optional(bool)<br> oom_score_adjust = optional(number)<br> privileged = optional(bool, true)<br> pull_policies = optional(list(string), ["always"])<br> runtime = optional(string)<br> security_opt = optional(list(string))<br> shm_size = optional(number, 0)<br> sysctls = optional(list(string))<br> tls_cert_path = optional(string)<br> tls_verify = optional(bool, false)<br> user = optional(string)<br> userns_mode = optional(string)<br> volumes = optional(list(string), ["/cache"])<br> volumes_from = optional(list(string))<br> volume_driver = optional(string)<br> wait_for_services_timeout = optional(number)<br> })</pre> | <pre>{<br> "disable_cache": "false",<br> "image": "docker:18.03.1-ce",<br> "privileged": "true",<br> "pull_policies": [<br> "always"<br> ],<br> "shm_size": 0,<br> "tls_verify": "false",<br> "volumes": [<br> "/cache"<br> ]<br>}</pre> | no |
| <a name="input_runner_worker_docker_services"></a> [runner\_worker\_docker\_services](#input\_runner\_worker\_docker\_services) | Starts additional services with the Docker container. All fields must be set (examine the Dockerfile of the service image for the entrypoint - see ./examples/runner-default/main.tf) | <pre>list(object({<br> name = string<br> alias = string<br> entrypoint = list(string)<br> command = list(string)<br> }))</pre> | `[]` | no |
| <a name="input_runner_worker_docker_services_volumes_tmpfs"></a> [runner\_worker\_docker\_services\_volumes\_tmpfs](#input\_runner\_worker\_docker\_services\_volumes\_tmpfs) | Mount a tmpfs in gitlab service container. https://docs.gitlab.com/runner/executors/docker.html#mounting-a-directory-in-ram | <pre>list(object({<br> volume = string<br> options = string<br> }))</pre> | `[]` | no |
| <a name="input_runner_worker_docker_volumes_tmpfs"></a> [runner\_worker\_docker\_volumes\_tmpfs](#input\_runner\_worker\_docker\_volumes\_tmpfs) | Mount a tmpfs in Executor container. https://docs.gitlab.com/runner/executors/docker.html#mounting-a-directory-in-ram | <pre>list(object({<br> volume = string<br> options = string<br> }))</pre> | `[]` | no |
Expand Down
10 changes: 5 additions & 5 deletions examples/runner-certificates/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ For **user images**, you must:
| Name | Version |
|------|---------|
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.3 |
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | 5.35.0 |
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | 5.36.0 |
| <a name="requirement_local"></a> [local](#requirement\_local) | 2.4.1 |
| <a name="requirement_null"></a> [null](#requirement\_null) | 3.2.2 |
| <a name="requirement_random"></a> [random](#requirement\_random) | 3.6.0 |
Expand All @@ -149,21 +149,21 @@ For **user images**, you must:
| Name | Version |
|------|---------|
| <a name="provider_aws"></a> [aws](#provider\_aws) | 5.35.0 |
| <a name="provider_aws"></a> [aws](#provider\_aws) | 5.36.0 |
## Modules
| Name | Source | Version |
|------|--------|---------|
| <a name="module_runner"></a> [runner](#module\_runner) | ../../ | n/a |
| <a name="module_vpc"></a> [vpc](#module\_vpc) | terraform-aws-modules/vpc/aws | 5.5.1 |
| <a name="module_vpc_endpoints"></a> [vpc\_endpoints](#module\_vpc\_endpoints) | terraform-aws-modules/vpc/aws//modules/vpc-endpoints | 5.5.1 |
| <a name="module_vpc"></a> [vpc](#module\_vpc) | terraform-aws-modules/vpc/aws | 5.5.2 |
| <a name="module_vpc_endpoints"></a> [vpc\_endpoints](#module\_vpc\_endpoints) | terraform-aws-modules/vpc/aws//modules/vpc-endpoints | 5.5.2 |
## Resources
| Name | Type |
|------|------|
| [aws_availability_zones.available](https://registry.terraform.io/providers/hashicorp/aws/5.35.0/docs/data-sources/availability_zones) | data source |
| [aws_availability_zones.available](https://registry.terraform.io/providers/hashicorp/aws/5.36.0/docs/data-sources/availability_zones) | data source |
## Inputs
Expand Down
12 changes: 6 additions & 6 deletions examples/runner-default/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ check `.terraform-version` for the tested version.
| Name | Version |
|------|---------|
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.3 |
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | 5.35.0 |
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | 5.36.0 |
| <a name="requirement_local"></a> [local](#requirement\_local) | 2.4.1 |
| <a name="requirement_null"></a> [null](#requirement\_null) | 3.2.2 |
| <a name="requirement_random"></a> [random](#requirement\_random) | 3.6.0 |
Expand All @@ -43,22 +43,22 @@ check `.terraform-version` for the tested version.

| Name | Version |
|------|---------|
| <a name="provider_aws"></a> [aws](#provider\_aws) | 5.35.0 |
| <a name="provider_aws"></a> [aws](#provider\_aws) | 5.36.0 |

## Modules

| Name | Source | Version |
|------|--------|---------|
| <a name="module_runner"></a> [runner](#module\_runner) | ../../ | n/a |
| <a name="module_vpc"></a> [vpc](#module\_vpc) | terraform-aws-modules/vpc/aws | 5.5.1 |
| <a name="module_vpc_endpoints"></a> [vpc\_endpoints](#module\_vpc\_endpoints) | terraform-aws-modules/vpc/aws//modules/vpc-endpoints | 5.5.1 |
| <a name="module_vpc"></a> [vpc](#module\_vpc) | terraform-aws-modules/vpc/aws | 5.5.2 |
| <a name="module_vpc_endpoints"></a> [vpc\_endpoints](#module\_vpc\_endpoints) | terraform-aws-modules/vpc/aws//modules/vpc-endpoints | 5.5.2 |

## Resources

| Name | Type |
|------|------|
| [aws_availability_zones.available](https://registry.terraform.io/providers/hashicorp/aws/5.35.0/docs/data-sources/availability_zones) | data source |
| [aws_security_group.default](https://registry.terraform.io/providers/hashicorp/aws/5.35.0/docs/data-sources/security_group) | data source |
| [aws_availability_zones.available](https://registry.terraform.io/providers/hashicorp/aws/5.36.0/docs/data-sources/availability_zones) | data source |
| [aws_security_group.default](https://registry.terraform.io/providers/hashicorp/aws/5.36.0/docs/data-sources/security_group) | data source |

## Inputs

Expand Down
10 changes: 5 additions & 5 deletions examples/runner-docker/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ check `.terraform-version` for the tested version.
| Name | Version |
|------|---------|
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.3 |
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | 5.35.0 |
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | 5.36.0 |
| <a name="requirement_local"></a> [local](#requirement\_local) | 2.4.1 |
| <a name="requirement_null"></a> [null](#requirement\_null) | 3.2.2 |
| <a name="requirement_random"></a> [random](#requirement\_random) | 3.6.0 |
Expand All @@ -46,21 +46,21 @@ check `.terraform-version` for the tested version.

| Name | Version |
|------|---------|
| <a name="provider_aws"></a> [aws](#provider\_aws) | 5.35.0 |
| <a name="provider_aws"></a> [aws](#provider\_aws) | 5.36.0 |

## Modules

| Name | Source | Version |
|------|--------|---------|
| <a name="module_runner"></a> [runner](#module\_runner) | ../../ | n/a |
| <a name="module_vpc"></a> [vpc](#module\_vpc) | terraform-aws-modules/vpc/aws | 5.5.1 |
| <a name="module_vpc_endpoints"></a> [vpc\_endpoints](#module\_vpc\_endpoints) | terraform-aws-modules/vpc/aws//modules/vpc-endpoints | 5.5.1 |
| <a name="module_vpc"></a> [vpc](#module\_vpc) | terraform-aws-modules/vpc/aws | 5.5.2 |
| <a name="module_vpc_endpoints"></a> [vpc\_endpoints](#module\_vpc\_endpoints) | terraform-aws-modules/vpc/aws//modules/vpc-endpoints | 5.5.2 |

## Resources

| Name | Type |
|------|------|
| [aws_availability_zones.available](https://registry.terraform.io/providers/hashicorp/aws/5.35.0/docs/data-sources/availability_zones) | data source |
| [aws_availability_zones.available](https://registry.terraform.io/providers/hashicorp/aws/5.36.0/docs/data-sources/availability_zones) | data source |

## Inputs

Expand Down
10 changes: 5 additions & 5 deletions examples/runner-pre-registered/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ check `.terraform-version` for the tested version.
| Name | Version |
|------|---------|
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.3 |
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | 5.35.0 |
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | 5.36.0 |
| <a name="requirement_local"></a> [local](#requirement\_local) | 2.4.1 |
| <a name="requirement_null"></a> [null](#requirement\_null) | 3.2.2 |
| <a name="requirement_random"></a> [random](#requirement\_random) | 3.6.0 |
Expand All @@ -29,21 +29,21 @@ check `.terraform-version` for the tested version.

| Name | Version |
|------|---------|
| <a name="provider_aws"></a> [aws](#provider\_aws) | 5.35.0 |
| <a name="provider_aws"></a> [aws](#provider\_aws) | 5.36.0 |

## Modules

| Name | Source | Version |
|------|--------|---------|
| <a name="module_runner"></a> [runner](#module\_runner) | ../../ | n/a |
| <a name="module_vpc"></a> [vpc](#module\_vpc) | terraform-aws-modules/vpc/aws | 5.5.1 |
| <a name="module_vpc_endpoints"></a> [vpc\_endpoints](#module\_vpc\_endpoints) | terraform-aws-modules/vpc/aws//modules/vpc-endpoints | 5.5.1 |
| <a name="module_vpc"></a> [vpc](#module\_vpc) | terraform-aws-modules/vpc/aws | 5.5.2 |
| <a name="module_vpc_endpoints"></a> [vpc\_endpoints](#module\_vpc\_endpoints) | terraform-aws-modules/vpc/aws//modules/vpc-endpoints | 5.5.2 |

## Resources

| Name | Type |
|------|------|
| [aws_availability_zones.available](https://registry.terraform.io/providers/hashicorp/aws/5.35.0/docs/data-sources/availability_zones) | data source |
| [aws_availability_zones.available](https://registry.terraform.io/providers/hashicorp/aws/5.36.0/docs/data-sources/availability_zones) | data source |

## Inputs

Expand Down
Loading

0 comments on commit da5f319

Please sign in to comment.