-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: configure AMI to include Jenkins configuration
Update install script to include Jenkins plugins installation through a `plugins.txt` file. Include Configurations as Code `yaml` file that configures a basic multi-branch pipeline seed job for job-dsl, written in Groovy. Fixes issues #21 #23
- Loading branch information
1 parent
5ccd1fc
commit 3e107ee
Showing
4 changed files
with
157 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
obs: | ||
- script: > | ||
multibranchPipelineJob('test-seed') { | ||
branchSources { | ||
git { | ||
id('92098798334') | ||
remote('https://github.com/username/example') | ||
includes('*') | ||
} | ||
} | ||
orphanedItemStrategy { | ||
discardOldItems { | ||
numToKeep(5) | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
ant:latest | ||
antisamy-markup-formatter:latest | ||
authorize-project:latest | ||
build-timeout:latest | ||
cloudbees-folder:latest | ||
configuration-as-code:latest | ||
credentials-binding:latest | ||
email-ext:latest | ||
git:latest | ||
github-branch-source:latest | ||
gradle:latest | ||
ldap:latest | ||
mailer:latest | ||
matrix-auth:latest | ||
pam-auth:latest | ||
pipeline-github-lib:latest | ||
pipeline-stage-view:latest | ||
ssh-slaves:latest | ||
timestamper:latest | ||
workflow-aggregator:latest | ||
ws-cleanup:latest | ||
job-dsl:latest | ||
configuration-as-code-groovy:latest |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters