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

Gabeaws/jenkins readme updates #145

Merged
merged 22 commits into from
Jul 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
7cc4ada
Adds Jenkins architecture diagram
gabebatista Jun 25, 2024
9c5ebd8
clarifies description for variable jenkins_alb_subnets.
gabebatista Jul 5, 2024
5923a6e
First draft of README.md
gabebatista Jul 15, 2024
92cad15
Adds example.tfvars to jenkins module
gabebatista Jul 15, 2024
aa24fff
Adds `create_ec2_fleet_plugin_policy` variable to example.tfvars
gabebatista Jul 15, 2024
862d4ec
Adds images to Jenkins module README.md
gabebatista Jul 17, 2024
e2c3519
fixes typo in jenkins/example.tfvars
gabebatista Jul 18, 2024
9895194
Adds ``-var-file` flag to `terraform plan` command in Jenkins README.md
gabebatista Jul 18, 2024
4ac9062
Adds aside stating that Plaintext option must be used when uploading …
gabebatista Jul 18, 2024
6bd28fd
Clarifies cloud configuration steps for configuring agent launcher
gabebatista Jul 18, 2024
c728677
Adds missing step to `Configuring the EC2 Fleet Plugin`
gabebatista Jul 18, 2024
ce8bf1e
Changes architectural diagram from .jpg to .png and adds .drawio file…
gabebatista Jul 19, 2024
a0119c0
Adjusts Jenkins description in README.md
gabebatista Jul 19, 2024
ed51bc1
Adjusts Jenkins README.md formatting. Adds instructions for installin…
gabebatista Jul 19, 2024
5cc0a76
Adds warning that the AWS Secrets Manager Credentials Provider plugin…
gabebatista Jul 19, 2024
49dd060
Removes references to Route 53 prerequisite
gabebatista Jul 19, 2024
035b7ad
Removes example.tfvars from Jenkins Module
gabebatista Jul 22, 2024
a34e816
Fixes description of ZFS File System deployments
gabebatista Jul 24, 2024
4c705cc
Removes references to the `container_port` variable from docs
gabebatista Jul 24, 2024
853c212
Adjustments to the Prerequisites section of README.md
gabebatista Jul 24, 2024
384c4e5
Removes warning for misconfigured certificate
gabebatista Jul 24, 2024
1f89ef0
Updating path to Jenkins architecture diagram.
henrykie Jul 26, 2024
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
Binary file added docs/media/Images/access-jenkins.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/media/Images/jenkins-admin-password.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions docs/media/diagrams/jenkins-module-architecture.drawio

Large diffs are not rendered by default.

8 changes: 6 additions & 2 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,11 @@ theme:
info: octicons/info-16
logo: media/logos/aws-logo-white.svg
favicon: media/logos/aws-logo-white.svg
markdown_extensions:

markdown_extensions:
- admonition
- pymdownx.details
- pymdownx.superfences
- pymdownx.snippets:
base_path: "."
check_paths: true
Expand All @@ -73,6 +75,8 @@ markdown_extensions:
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.tabbed:
alternate_style: true

nav:
- Home:
Expand Down
308 changes: 305 additions & 3 deletions modules/jenkins/README.md
gabebatista marked this conversation as resolved.
Show resolved Hide resolved

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion modules/jenkins/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ variable "cluster_name" {
# - Load Balancer -
variable "jenkins_alb_subnets" {
type = list(string)
description = "A list of subnets to deploy the Jenkins load balancer into. Public subnets are recommended."
description = "A list of subnet ids to deploy the Jenkins load balancer into. Public subnets are recommended."
}

variable "enable_jenkins_alb_access_logs" {
Expand Down
Loading