Advertisement
Guest User

Untitled

a guest
Mar 31st, 2017
900
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.53 KB | None | 0 0
  1. # See parameter documentation inside ../manifests/single_node_ci.pp
  2. # Fields commented out have reasonable default values
  3.  
  4. #vhost_name:
  5.  
  6. ###*project_config_repo: http://your-project-config-repo.example.com/project-config-example.git
  7. project_config_repo: https://github.com/jvalderrama/ostack-ci.git
  8.  
  9. #serveradmin:
  10. # Jenkins version 1.651 is the last known version to work out of the box with
  11. # zuul. However, it has numerous security vulnerabilities, and should only
  12. # be used for installations that have other means (e.g. firewalls) that block all
  13. # untrusted access to Jenkins.
  14. # see SECURITY-170 in:
  15. # "https://wiki.jenkins-ci.org/display/SECURITY/Jenkins+Security+Advisory+2016-05-11"
  16. #jenkins_version: present
  17. #jenkins_vhost_name: jenkins
  18. #jenkins_username: jenkins
  19. #jenkins_password:
  20.  
  21.  
  22. jenkins_ssh_private_key: |
  23. -----BEGIN RSA PRIVATE KEY-----
  24. Insert jenkins private key here
  25. -----END RSA PRIVATE KEY-----
  26. jenkins_ssh_public_key: your-jenkins-public-key-no-whitespace
  27.  
  28.  
  29. ºjjb_git_revision: 1.6.2
  30. #java_args_override: |
  31. # These are the arguments to pass to Java
  32. # The recommended value:
  33. # "-Xloggc:/var/log/jenkins/gc.log -XX:+PrintGCDetails -Xmx12g -Dorg.kohsuke.stapler.compression.CompressionFilter.disabled=true -Djava.util.logging.config.file=/var/lib/jenkins/logger.conf -Dhudson.model.ParametersAction.keepUndefinedParameters=true"
  34. # Please note that using the parameter: keepUndefinedParameters=true is not secure and exposes a potential jenkins security vulnerability
  35. #jjb_git_url: https://git.openstack.org/openstack-infra/jenkins-job-builder
  36. #gerrit_server: review.openstack.org
  37. #gerrit_ssh_host_key:
  38. gerrit_user: your-gerrit-user
  39. gerrit_user_ssh_private_key: |
  40. -----BEGIN RSA PRIVATE KEY-----
  41. Insert gerrit private key here
  42. -----END RSA PRIVATE KEY-----
  43. gerrit_user_ssh_public_key: gerrit-public-key-no-whitespace
  44. git_email: your-email@example.com
  45. git_name: Your Name
  46. log_server: logs.example.com
  47. #smtp_host:
  48. #smtp_default_from:
  49. #smtp_default_to:
  50. zuul_revision: 2.5.1
  51. #zuul_git_source_repo: https://git.openstack.org/openstack-infra/zuul
  52. oscc_file_contents: |
  53. # Insert OSCC file contents here as explained in the
  54. # documentation so that nodepool is able to
  55. # authenticate to your cloud(s)
  56. #
  57.  
  58. mysql_root_password: secret_mysql_root_password
  59. mysql_nodepool_password: secret_mysql_nodepool_password
  60. #nodepool_jenkins_target: jenkins1
  61. #jenkins_api_key:
  62. #jenkins_credentials_id:
  63. nodepool_revision: 0.3.1
  64. #nodepool_git_source_repo: https://git.openstack.org/openstack-infra/nodepool
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement