forked from saltstack-formulas/gitlab-formula
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pillar.example
64 lines (62 loc) · 1.72 KB
/
pillar.example
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
59
60
61
62
63
64
gitlab:
use_rvm: False
rvm_ruby: 2.1.0
shell_version: v1.8.0
gitlab_version: 6-5-stable
db_engine: postgresql
db_name: 'gitlabhq_production'
db_user: 'git'
db_pass: 'MyVerySecretGitLabPassword'
gravatar:
enabled: false
ldap:
enabled: false
host: '_your_ldap_server_'
base: '_the_base_where_you_search_for_users'
port: 636
uid: 'sAMAccountName'
method: 'ssl' # "ssl" or "plain"
bind_dn: '_the_full_dn_of_the_user_you_will_bind_with'
password: '_the_password_of_the_bind_user'
allow_username_or_email_login: true
omniauth:
enabled: false
allow_single_sign_on: false
block_auto_created_users: true
shell:
audit_usernames: false
log_level: INFO
self_signed_cert: false
#ca_file: /etc/ssl/cert.pem
{% if grains['os_family'] == 'RedHat' %}
ca_file: /etc/pki/tls/certs/ca.crt
{% elif grains['os_family'] == 'Debian' %}
ca_file: /etc/ssl/certs/ca.crt
{% endif %}
#ca_path: /etc/pki/tls/certs
#{% if grains['os_family'] == 'RedHat' %}
#ca_path: /etc/pki/tls/certs
#{% elif grains['os_family'] == 'Debian' %}
#ca_path: /etc/ssl/certs
#{% endif %}
unicorn:
worker_processes: 2
timeout: 30
https: True
ssl_key: |
-----BEGIN PRIVATE KEY-----
ABC=
-----END PRIVATE KEY-----
ssl_cert: |
-----BEGIN CERTIFICATE-----
ABC=
-----END CERTIFICATE-----
#runner
runner:
downloadpath: "https://packages.gitlab.com/runner/gitlab-runner/packages/linuxmint/sonya/gitlab-runner_10.4.0_{{ grains['osarch'] }}.deb/download"
username: "gitlab-runner"
# default: gitlab-runner
url: "url gitlab-ci" # MANDATORY
token: "token gitlab-ci" # MANDATORY
home: /home/gitlab-runner
executor: shell