forked from idealista/bitbucket_role
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.yml
58 lines (51 loc) · 1.76 KB
/
main.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
---
bitbucket_group: bitbucket
bitbucket_user: bitbucket
bitbucket_version: 5.8.1
bitbucket_install_dir: /opt/atlassian/bitbucket
bitbucket_home_dir: /var/atlassian/bitbucket
bitbucket_plugins_dir: "{{ bitbucket_home_dir }}/shared/plugins/installed-plugins"
bitbucket_port: 7990
bitbucket_properties_template_path: bitbucket.properties.j2
bitbucket_logrotate_maxhistory: 5
bitbucket_max_files: 4096
bitbucket_java_home: /usr/lib/jvm/default-java
bitbucket_jvm_min_memory: 512m
bitbucket_jvm_max_memory: 1024m
bitbucket_jmx:
enabled: false
remote_port: 3333
rmi_server_hostname: "{{ inventory_hostname }}"
remote_rmi_port: 9999
remote_auth:
type: password # [password, ssl]
# if type: password, these variables are needed
password: notapassword
password_file: "{{ bitbucket_home_dir }}/shared/notapasswordfile"
# if type: ssl, these variables are needed
# ssl_java_keystore:
# ssl_java_keystore_password:
# ssl_java_truststore:
# ssl_java_truststore_password:
bitbucket_plugins: [] # View molecule/default/groups_vars/all.yml to view a sample setup for this list.
## Sample proxy configuration
# bitbucket_proxy_configuration:
# secure: "true"
# port: 443
# server_name: "bitbucket.example.com"
# context_path: /
## Sample database configuration
# bitbucket_database_configuration:
# driver: oracle.jdbc.driver.OracleDriver
# url: jdbc:oracle:thin:@//host:port/database
# user:
# password:
## Sample setup configuration
# bitbucket_setup_configuration:
# displayName: Bitbucket
# baseUrl: http://bitbucket.example.com:7990
# license: AAABKg0ODAoPeNptkFFrwjAUhd/zKwJ72R4iTXR2CIF...
# sysadmin_username: admin
# sysadmin_password: password
# sysadmin_displayName: Administrator
# sysadmin_emailAddress: [email protected]