-
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.
Update README.md to include steps on how to configure the Jenkins server along with GitHub webhooks. Upfate JCasC file to include new seed job creation through Groovy script Fixes issue #35
- Loading branch information
1 parent
afb135b
commit 2a88a33
Showing
4 changed files
with
142 additions
and
1 deletion.
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
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 |
---|---|---|
@@ -1,6 +1,7 @@ | ||
jobs: | ||
- file: ./webapp_seed.groovy | ||
- file: ./webapp_db_seed.groovy | ||
- file: ./webapp_helm_chart_seed.groovy | ||
unclassified: | ||
location: | ||
url: https://jenkins.sydrawat.me |
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,17 @@ | ||
multibranchPipelineJob('webapp-helm-chart') { | ||
branchSources { | ||
github { | ||
id('csye7125-webapp-helm-chart') | ||
scanCredentialsId('jenkins-sydrawat') | ||
repoOwner('csye7125-fall2023-group05') | ||
repository('webapp-helm-chart') | ||
} | ||
} | ||
|
||
orphanedItemStrategy { | ||
discardOldItems { | ||
numToKeep(-1) | ||
daysToKeep(-1) | ||
} | ||
} | ||
} |
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 |
---|---|---|
|
@@ -15,4 +15,3 @@ multibranchPipelineJob('webapp') { | |
} | ||
} | ||
} | ||
|