Go to file
Jenkins Infra Bot (updatecli) a0de05e192 chore: Update Terraform lock file
Made with ❤️️ by updatecli
2023-12-01 10:18:45 +00:00
.shared-tools@e797dd96c8 fixup(ci.jenkins.io) ensure the RG in sponsorship subscription uses the proper provider (#521) 2023-11-22 19:00:10 +01:00
updatecli feat(matomo) add a MySQL database on the public-db instance (#497) 2023-10-10 16:00:13 +02:00
.gitignore
.gitmodules
.terraform.lock.hcl chore: Update Terraform lock file 2023-12-01 10:18:45 +00:00
CODEOWNERS
Jenkinsfile_k8s chore(updatecli) track terraform providers with native updatecli resource (#479) 2023-09-23 18:29:58 +02:00
LICENSE
README.adoc
archives.jenkins.io.tf feat(archives.jenkins.io) import existing CNAME records for archives jenkins.io and archives.jenkins-ci.org (#488) 2023-09-28 15:40:47 +02:00
archives.tf chore: use shared admins from shared-tools module (#490) 2023-10-03 09:53:46 +02:00
backend.tf
cert.ci.jenkins.io.tf cleanup: remove unused ACI resources for trusted.ci and cert.ci (#532) 2023-11-29 16:14:45 +01:00
ci.jenkins.io.tf fix(ci.jenkins.io) add missing permissions to allow controller reading the agent vnet (#522) 2023-11-23 13:17:09 +01:00
contributors.jenkins.io.tf cleanup: remove unused ACI resources for trusted.ci and cert.ci (#532) 2023-11-29 16:14:45 +01:00
custom-roles.tf cleanup: removed unused or non-existing resources (#467) 2023-09-01 19:26:58 +02:00
dns.tf feat(archives.jenkins.io) import existing CNAME records for archives jenkins.io and archives.jenkins-ci.org (#488) 2023-09-28 15:40:47 +02:00
infra.ci.jenkins.io.tf chore(infra.ci) fix depreciation messages from the `azuread` provider (#506) 2023-11-07 18:46:13 +01:00
keycloak.jenkins.io.tf
ldap.jenkins.io.tf chore: use shared admins from shared-tools module (#490) 2023-10-03 09:53:46 +02:00
locals.tf feat(publick8s) upgrade AKS to 1.26.6 (#510) 2023-11-09 12:32:04 +01:00
main.tf feat(privatek8s) change RG of public inbound IP (#507) 2023-11-07 18:03:09 +01:00
matomo.jenkins.io.tf feat(matomo) add a MySQL database on the public-db instance (#497) 2023-10-10 16:00:13 +02:00
mysql-public-db.tf feat(mysql/flexible): adding a mysql flexible managed instance (#470) 2023-10-03 15:20:30 +02:00
packer-resources.tf chore(infra.ci) fix depreciation messages from the `azuread` provider (#506) 2023-11-07 18:46:13 +01:00
plugin-health.jenkins.io.tf feat(plugin-health.jenkins.io) add a managed DB in 'public-db' instance (#367) 2023-05-26 13:37:43 +02:00
postgres-public-db.tf feat(mysql/flexible): adding a mysql flexible managed instance (#470) 2023-10-03 15:20:30 +02:00
privatek8s.tf feat(privatek8s) change RG of public inbound IP (#507) 2023-11-07 18:03:09 +01:00
providers.tf feat(ci.j, trusted.ci and cert.ci) migrate to separated tf modules for agents management in Azure (#516) 2023-11-22 15:31:24 +01:00
publick8s.tf feat(publick8s): add a storage class for ZRS (#526) 2023-11-27 14:25:40 +01:00
puppet.jenkins.io.tf chore: use shared admins from shared-tools module (#490) 2023-10-03 09:53:46 +02:00
rating.jenkins.io.tf feat(rating.jenkins.io) add a managed DB in 'public-db' instance (#368) 2023-05-26 14:01:38 +02:00
reports.jenkins.io.tf
trusted.ci.jenkins.io.tf cleanup: remove unused ACI resources for trusted.ci and cert.ci (#532) 2023-11-29 16:14:45 +01:00
updates.jenkins.io.tf cleanup: remove unused ACI resources for trusted.ci and cert.ci (#532) 2023-11-29 16:14:45 +01:00
uplink.jenkins.io.tf fix(uplink) correct output for proper connection chain (#374) 2023-05-31 11:47:16 +02:00
variables.tf
versions.tf feat(matomo) add a MySQL database on the public-db instance (#497) 2023-10-10 16:00:13 +02:00
vnets.tf feat(ci.jenkins.io) add resources for azure-vm agents in the new sponsorship subscription (#519) 2023-11-22 16:51:01 +01:00

README.adoc

<html lang="en"> <head> </head>

Jenkins infra on Azure

Table of Contents

This repository hosts the infrastructure-as-code definition for all the Azure hosted resources for the Jenkins Infrastructure Project.

See also https://github.com/jenkins-infra/azure-net for all global network related resources.

Requirements

In order to use this repository to provision the Jenkins infrastructure on azure, you need:

git submodule update --init --recursive

HowTo

Provision

Dont blindly execute the terraform code located in this repository on your own account as it may lead your account bill to significantly increase.

Once youve fulfilled the Requirements, you may execute any command from https://github.com/jenkins-infra/shared-tools/blob/main/terraform/README.adoc#available-commands by adding the correct flag --directory pointing to .shared-tools/terraform/:

make --directory=.shared-tools/terraform help
make --directory=.shared-tools/terraform lint
# ...

A usual change to this repository looks like the following:

  • Fork the repository and clone it locally

  • Follow the Requirements steps to obtain the shared tools

  • Start by running a full make --directory=.shared-tools/terraform validate command to ensure that you work on a sane base (should generate a report TXT file with no changes to be applied)

  • Edit the Terraform project files

  • Run the command make --directory=.shared-tools/terraform validate again to ensure that your changes are OK

  • Commit, push and open a pull request to let the Jenkins pipeline run the test + plan (as per https://github.com/jenkins-infra/shared-tools/blob/main/terraform/README.adoc#jenkins-pipeline)

</html>