Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor!: remove manual registration of Gitlab Runner #388

Draft
wants to merge 41 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
642924b
Remove variable secure_parameter_store_runner_token_key
kayman-mk Oct 14, 2021
00a9493
Add documentation on how to provide the Gitlab token safely
kayman-mk Oct 14, 2021
74763a4
Remove documentation about SSH and EC2 key pairs
kayman-mk Oct 14, 2021
991198a
Amend documentation
kayman-mk Oct 14, 2021
70b2032
Remove pre-registered example. No longer supported.
kayman-mk Oct 14, 2021
a5b44f8
Amend runner-default example
kayman-mk Oct 14, 2021
d56b788
Ammend runner-docker example
kayman-mk Oct 14, 2021
cb2b0f1
Amend runner-public example
kayman-mk Oct 14, 2021
fbaf149
Remove the check of the pre-registered example. It's no longer there.
kayman-mk Oct 14, 2021
bafe59c
Merge develop branch
kayman-mk Oct 30, 2021
1c52c8d
Remove variable secure_parameter_store_runner_token_key
kayman-mk Oct 14, 2021
1a2eedb
Add documentation on how to provide the Gitlab token safely
kayman-mk Oct 14, 2021
d704b3c
Remove documentation about SSH and EC2 key pairs
kayman-mk Oct 14, 2021
24a1026
Amend documentation
kayman-mk Oct 14, 2021
b531f39
Remove pre-registered example. No longer supported.
kayman-mk Oct 14, 2021
35a98ea
Amend runner-default example
kayman-mk Oct 14, 2021
9e9bd12
Ammend runner-docker example
kayman-mk Oct 14, 2021
7d924cd
Amend runner-public example
kayman-mk Oct 14, 2021
9e3eb37
Remove the check of the pre-registered example. It's no longer there.
kayman-mk Oct 14, 2021
99195e5
Merge branch 'kayma/register-runner-manually' of github.com:kayman-mk…
kayman-mk Nov 13, 2021
4a29aef
Add documentation on how to provide the Gitlab token safely
kayman-mk Oct 14, 2021
7017ac0
Remove documentation about SSH and EC2 key pairs
kayman-mk Oct 14, 2021
53dc945
Amend documentation
kayman-mk Oct 14, 2021
68d8488
Remove pre-registered example. No longer supported.
kayman-mk Oct 14, 2021
226ba9b
Amend runner-default example
kayman-mk Oct 14, 2021
330638d
Ammend runner-docker example
kayman-mk Oct 14, 2021
a0729f0
Amend runner-public example
kayman-mk Oct 14, 2021
bfe6a21
Remove the check of the pre-registered example. It's no longer there.
kayman-mk Oct 14, 2021
f5d146d
Merge branch 'kayma/register-runner-manually' of github.com:kayman-mk…
kayman-mk Nov 13, 2021
9270eec
Merge remote-tracking branch 'origin/develop' into kayma/register-run…
kayman-mk Feb 27, 2022
bb8bd3e
remove check for pre-registered runner
kayman-mk Feb 27, 2022
def8e10
merge develop
kayman-mk Aug 6, 2022
6bde737
small documentation changes
kayman-mk Aug 23, 2022
12dca69
Merge branch 'develop' into kayma/register-runner-manually
kayman-mk Dec 1, 2022
d04eb7a
fix docs
kayman-mk Dec 1, 2022
74fe573
Merge branch 'main' into kayma/register-runner-manually
kayman-mk Jan 3, 2023
e233e4c
merge main
kayman-mk Feb 26, 2023
9ff9f87
undo variable deletion to avoid breaking change
kayman-mk Mar 2, 2023
b897920
merge master
kayman-mk Nov 30, 2023
dc9867d
erge main
kayman-mk Nov 30, 2023
faedae2
remove multi-region example again
kayman-mk Nov 30, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ jobs:
[
"runner-default",
"runner-docker",
"runner-pre-registered",
"runner-public",
"runner-certificates",
]
Expand Down
154 changes: 0 additions & 154 deletions README.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion examples/runner-default/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ variable "gitlab_url" {
}

variable "registration_token" {
description = "Registration token for the runner."
description = "The registration token obtained from your Gitlab instance."
type = string
}

Expand Down
2 changes: 1 addition & 1 deletion examples/runner-docker/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@ variable "gitlab_url" {
}

variable "registration_token" {
description = "Registration token for the runner."
description = "The registration token obtained from your Gitlab instance."
type = string
}
1 change: 0 additions & 1 deletion examples/runner-pre-registered/.terraform-version

This file was deleted.

148 changes: 0 additions & 148 deletions examples/runner-pre-registered/.terraform.lock.hcl

This file was deleted.

62 changes: 0 additions & 62 deletions examples/runner-pre-registered/README.md

This file was deleted.

Empty file.
70 changes: 0 additions & 70 deletions examples/runner-pre-registered/main.tf

This file was deleted.

11 changes: 0 additions & 11 deletions examples/runner-pre-registered/providers.tf

This file was deleted.

32 changes: 0 additions & 32 deletions examples/runner-pre-registered/variables.tf

This file was deleted.

27 changes: 0 additions & 27 deletions examples/runner-pre-registered/versions.tf

This file was deleted.

2 changes: 1 addition & 1 deletion examples/runner-public/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@ variable "gitlab_url" {
}

variable "registration_token" {
description = "Registration token for the runner."
description = "The registration token obtained from your Gitlab instance."
type = string
}
Loading