-
Notifications
You must be signed in to change notification settings - Fork 226
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
(maint) integration: use puppetserver uberjar to install gems
Currently, puppetserver has transitioned to jetty10 and puppetdb is still using jetty9 creating dependency conflicts when integration tests are run. Once we transition to jetty10 as well, there will still be dependency conflicts when we run integration tests against puppetserver 7.x, which is still on jetty9. Remove puppetserver from the project file to avoid dependency conflicts. d7e619d moved puppetserver to run in its own JVM for integration tests, so it is no longer necessary to have puppetserver in our project.clj file, but we still had it there to facilitate installing the vendored gems that puppetserver needs. This moves gem installation for puppetserver out of our project file and clojure code, and instead uses the test setup scripts and the puppetserver uberjar to create the vendored gem directory. The jetty service name changed from jetty9-service to jetty10-service. Adds an additional bootstrap file, used only for 7.x integration testing, so each puppetserver version loads the correct tk services.
- Loading branch information
Showing
6 changed files
with
51 additions
and
73 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
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 was deleted.
Oops, something went wrong.
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,21 @@ | ||
puppetlabs.services.request-handler.request-handler-service/request-handler-service | ||
puppetlabs.services.jruby.jruby-puppet-service/jruby-puppet-pooled-service | ||
puppetlabs.services.jruby-pool-manager.jruby-pool-manager-service/jruby-pool-manager-service | ||
puppetlabs.services.puppet-profiler.puppet-profiler-service/puppet-profiler-service | ||
puppetlabs.trapperkeeper.services.webserver.jetty9-service/jetty9-service | ||
puppetlabs.trapperkeeper.services.webrouting.webrouting-service/webrouting-service | ||
puppetlabs.services.config.puppet-server-config-service/puppet-server-config-service | ||
puppetlabs.services.master.master-service/master-service | ||
puppetlabs.services.legacy-routes.legacy-routes-service/legacy-routes-service | ||
puppetlabs.services.puppet-admin.puppet-admin-service/puppet-admin-service | ||
puppetlabs.trapperkeeper.services.authorization.authorization-service/authorization-service | ||
puppetlabs.services.versioned-code-service.versioned-code-service/versioned-code-service | ||
puppetlabs.trapperkeeper.services.scheduler.scheduler-service/scheduler-service | ||
puppetlabs.trapperkeeper.services.status.status-service/status-service | ||
puppetlabs.trapperkeeper.services.metrics.metrics-service/metrics-service | ||
puppetlabs.services.jruby.jruby-metrics-service/jruby-metrics-service | ||
puppetlabs.trapperkeeper.services.watcher.filesystem-watch-service/filesystem-watch-service | ||
# To enable the CA service, leave the following line uncommented | ||
puppetlabs.services.ca.certificate-authority-service/certificate-authority-service | ||
# To disable the CA service, comment out the above line and uncomment the line below | ||
#puppetlabs.services.ca.certificate-authority-disabled-service/certificate-authority-disabled-service |
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