forked from onesteinbv/Project_Single_Sign_On
-
Notifications
You must be signed in to change notification settings - Fork 0
/
install-gitlab-sso.yml
477 lines (409 loc) · 18.1 KB
/
install-gitlab-sso.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
---
- name: Install gitlab on Ubuntu 20.04
hosts: grpgitlab
remote_user: root
# Execute ansible-playbook playbookfile.yml -i hosts --vault-password-file .vault-password
vars:
ansible_python_interpreter: /usr/bin/python3
root_ca_path: /usr/local/share/ca-certificates/mkcert_development_CA_62268663181785622328732999788222374785.crt
gitlab_client_id: "client-gitlab-{{ ansible_fqdn }}"
gitlab_client_name: "client-gitlab-{{ ansible_fqdn }}"
gitlab_server_url: https://gitlab.{{ domain }}
keycloak_server_url: https://ad.{{ domain }}
realm: "{{ realm }}"
tasks:
- name: Show tip for sensible output
ansible.builtin.debug:
msg: Readable debug output export ANSIBLE_STDOUT_CALLBACK=debug
- name: Read global vars
ansible.builtin.include_vars: global-vars.yml
- name: Read encrypted content
ansible.builtin.include_vars: encrypted-vars.yml
- name: Shutdown GitLab if already exists and ignore any errors
ansible.builtin.command:
cmd: gitlab-ctl stop
ignore_errors: "{{ ansible_check_mode }}" # <- Ignores errors in check mode.
register: my_output # <- Registers the command output.
changed_when: my_output.rc != 0 # <- Uses the return code to define when the task has changed.
- name: Set timezone to Europe/Amsterdam
community.general.timezone:
name: Europe/Amsterdam
# Install all needed software in one go.
# apt install -y ca-certificates curl openssh-server
- name: Install GitLab and other packages
ansible.builtin.apt:
name: "{{ item }}"
state: present
update_cache: true
loop:
- ca-certificates
- curl
- openssh-server
- mlocate
- openssl
- autopostgresqlbackup
- name: Upload mkcert program
ansible.builtin.copy:
src: files/mkcert
dest: /root/mkcert
owner: root
group: root
mode: '0700'
force: true
- name: Upload CA key and cert
ansible.builtin.copy:
src: "files/{{ item }}"
dest: "/root/{{ item }}"
owner: root
group: root
mode: '0600'
force: true
with_items:
- rootCA.pem
- rootCA-key.pem
- name: Try to install my root CA on this system
ansible.builtin.command:
cmd: /root/mkcert -install
environment:
CAROOT: /root
register: my_output # <- Registers the command output.
changed_when: my_output.rc != 0 # <- Uses the return code to define when the task has changed.
- name: Update all CA certificates
ansible.builtin.command:
cmd: /usr/sbin/update-ca-certificates
register: my_output # <- Registers the command output.
changed_when: my_output.rc != 0 # <- Uses the return code to define when the task has changed.
# Check if our CA is already installed
# Should be /usr/local/share/ca-certificates/mkcert_development_CA_62268663181785622328732999788222374785.crt
- name: Verify that our root CA is already installed
ansible.builtin.stat:
path: "{{ root_ca_path }}"
register: root_ca_stat
- name: Is our root CA already present?
ansible.builtin.debug:
msg: "Yes it is!"
when: root_ca_stat.stat.exists
# Start installation of GitLab
- name: Download repo add script.
ansible.builtin.get_url:
url: https://packages.gitlab.com/install/repositories/gitlab/gitlab-ce/script.deb.sh
dest: /tmp/script.deb.sh
mode: '0700'
- name: Execute repo add script
ansible.builtin.command:
cmd: /tmp/script.deb.sh
register: my_output # <- Registers the command output.
changed_when: my_output.rc != 0 # <- Uses the return code to define when the task has changed.
########################################################
# After this step we should have a GitLab installation #
########################################################
- name: Install gitlab-ce
ansible.builtin.apt:
name: gitlab-ce
# fix external_url 'http://gitlab.example.com'
- name: Configure gitlab-ce url
ansible.builtin.lineinfile:
path: /etc/gitlab/gitlab.rb
regexp: "external_url.*"
line: "external_url 'https://gitlab.{{ domain }}'"
# Disable GitLab LetsEncrypt support as mentioned on their page
# letsencrypt['enable'] = false in /etc/gitlab/gitlab.rb
- name: Make sure LetsEncrypt is disabled
ansible.builtin.lineinfile:
path: /etc/gitlab/gitlab.rb
regexp: ".*letsencrypt['enable'].*"
line: letsencrypt['enable'] = false
state: present
# 1 Create the certificate(s)
# 2 Place a copy or symlink of the CA's public certificate in /etc/gitlab/trusted-certs/
# cp $(mkcert -CAROOT)/rootCA.pem /etc/gitlab/trusted-certs/rootCA.pem
# 3 Reconfigure GitLab so this CA certificate is included into the GitLab instance's certificate store
# gitlab-ctl reconfigure
# 4 Confirm the certificate is now in the store, using the embedded openssl
# /opt/gitlab/embedded/bin/openssl s_client -connect localhost:443 </dev/null
# The output should contain detailed information, such as the certificate chain, ordering, and a line such as Verify return code: 0 (ok)
#
# Your server certificates should be placed at:
#
# /etc/gitlab/ssl/hostname.crt
# /etc/gitlab/ssl/hostname.key
- name: Create /etc/gitlab/trusted-certs/ directory
ansible.builtin.file:
path: /etc/gitlab/trusted-certs
state: directory
mode: '0755'
- name: Upload CA key and cert into gitlab trusted-certs store
ansible.builtin.copy:
src: "files/rootCA.pem"
dest: "/etc/gitlab/trusted-certs/rootCA.pem"
owner: root
group: root
mode: '0644'
force: true
# Copy SSL files to gitlab /opt/gitlab/embedded/ssl/certs
# To set the location of ssl certificates create /etc/gitlab/ssl directory,
- name: Make SSL dir for GitLab
ansible.builtin.file:
path: /etc/gitlab/ssl
state: directory
mode: '0755'
# place the .crt and .key files in the directory and specify the following configuration:
- name: Copy SSL cert to gitlab ssl certs dir /etc/gitlab/ssl
ansible.builtin.copy:
src: "files/_wildcard.{{ domain }}.pem"
dest: "/etc/gitlab/ssl/gitlab.{{ domain }}.crt"
owner: root
group: root
mode: '0600'
- name: Copy SSL key to gitlab ssl certs dir /etc/gitlab/ssl
ansible.builtin.copy:
src: "files/_wildcard.{{ domain }}-key.pem"
dest: "/etc/gitlab/ssl/gitlab.{{ domain }}.key"
owner: root
group: root
mode: '0600'
# Remove old LDAP stuff
# gitlab_rails['ldap_enabled'] = true
- name: Remove if enable ldap setting in GitLab config file
ansible.builtin.lineinfile:
path: /etc/gitlab/gitlab.rb
regexp: ".*gitlab_rails['ldap_enabled'].*"
state: absent
# gitlab_rails['ldap_servers'] = YAML.load_file('/etc/gitlab/gitlab_freeipa_settings.yml')
- name: Remove if exists reference to LDAP settings file
ansible.builtin.lineinfile:
path: /etc/gitlab/gitlab.rb
line: "gitlab_rails['ldap_servers'].*"
state: absent
# Retrieve token url needed. Returns JSON payload with var token-service.
- name: Retrieve token url from server
ansible.builtin.uri:
url: "{{ keycloak_server_url }}/realms/master"
validate_certs: false
register: tokenurl
- name: Show token-service
ansible.builtin.debug:
var: tokenurl.json["token-service"]
- name: Store url for easier retrieval
ansible.builtin.set_fact:
token_url: "{{ tokenurl.json[\"token-service\"] }}"
# Call info endpoint
- name: "Retrieve endpoint info for our realm {{ realm }}"
ansible.builtin.uri:
url: "{{ keycloak_server_url }}/realms/{{ realm }}/.well-known/openid-configuration"
validate_certs: false
register: endpointinfo
- name: Show endpoint info
ansible.builtin.debug:
var: endpointinfo
- name: Store authorization_endpoint for faster retrieval
ansible.builtin.set_fact:
authorization_endpoint: "{{ endpointinfo.json[\"authorization_endpoint\"] }}"
# "authorization_endpoint": "https://ad.{{ domain }}/realms/ONESTEIN.LAN/protocol/openid-connect/auth",
- name: Show authorization_endpoint
ansible.builtin.debug:
var: authorization_endpoint
- name: Store token_endpoint for faster retrieval
ansible.builtin.set_fact:
token_endpoint: "{{ endpointinfo.json[\"token_endpoint\"] }}"
- name: Show token endpoint
ansible.builtin.debug:
var: token_endpoint
- name: Store userinfo_endpoint for faster retrieval
ansible.builtin.set_fact:
userinfo_endpoint: "{{ endpointinfo.json[\"userinfo_endpoint\"] }}"
- name: Show userinfo endpoint
ansible.builtin.debug:
var: userinfo_endpoint
# Get authentication token from token-service url
- name: Retrieve authentication token from token-service url
ansible.builtin.uri:
url: "{{ tokenurl.json[\"token-service\"] }}/token"
method: POST
body_format: form-urlencoded
validate_certs: false
body:
realm: master
client_id: admin-cli
username: "{{ kc_adminid }}"
password: "{{ kc_adminpw }}"
grant_type: password
register: authtoken
- name: Show current authtoken
ansible.builtin.debug:
var: authtoken
- name: Show access_token
ansible.builtin.debug:
var: authtoken.json["access_token"]
- name: Store access token into variable for easier retrieval
ansible.builtin.set_fact:
auth_token: "{{ authtoken.json[\"access_token\"] }}"
- name: Show auth_token
ansible.builtin.debug:
var: auth_token
#######################################################################################
# Very badly documented: The admin RESTful API has a base path /admin/realms/
#######################################################################################
# Retrieve current list of clients of our type
# So, this works in curl:
# curl -k -v -H "Accept: application/json" -H "Authorization: Bearer ${access_token}" "https://ad.{{ domain }}:8443/admin/realms/master/clients" | jq .
- name: Retrieve current list of clients and search for already existing "{{ gitlab_client_id }} "
ansible.builtin.uri:
url: "{{ keycloak_server_url }}/admin/realms/{{ realm }}/clients?clientId={{ gitlab_client_id }}"
headers:
Accept: "application/json"
Authorization: "Bearer {{ auth_token }}"
method: get
validate_certs: false
register: existingclient
- name: Find ID in returned json
ansible.builtin.debug:
var: existingclient.json[0].id
- name: If it already exists delete client id "{{ gitlab_client_id }}" .
# Example: "id": "ba973624-2d00-488f-8d18-154224c63f8f"
ansible.builtin.uri:
url: "{{ keycloak_server_url }}/admin/realms/{{ realm }}/clients/{{ existingclient.json[0].id }}"
headers:
Accept: "application/json"
Authorization: "Bearer {{ auth_token }}"
method: DELETE
validate_certs: false
status_code: 204
when: existingclient.json[0].id is defined
register: deleteclient
- name: Show deleteclient variable
ansible.builtin.debug:
var: deleteclient
- name: Convert Ninja template to variable
ansible.builtin.set_fact:
jsonbody: "{{ lookup('template', 'gitlab-keycloak-sso.json.j2') }}"
# Generate the json payload to upload
- name: Upload JSON template file to create new Client ID on Keycloak server
ansible.builtin.uri:
url: "{{ keycloak_server_url }}/admin/realms/{{ realm }}/clients"
headers:
Accept: "application/json"
Authorization: "Bearer {{ auth_token }}" # .json[\"access_token\"] }}"
method: POST
validate_certs: false
body_format: json
body: "{{ jsonbody }}"
status_code: 201
register: createclientresult
# Good news! Result contains location of new client id in location
# Example: "location": "https://ad.{{ domain }}:8443/admin/realms/ONESTEIN.LAN/clients/e01a87cf-537c-441e-b6ee-17f4cd07d92c"
- name: If all went well we now have a locaton of the newly created Client ID
ansible.builtin.debug:
var: createclientresult.location
# After importing this to Keycloak, you have to generate a new Client-Secret and put it into gitabl.rb file .
# GET /{realm}/clients/{id}/client-secret
- name: Retrieve secret for newly created client "{{ gitlab_client_id }} "
ansible.builtin.uri:
url: "{{ createclientresult.location }}/client-secret"
headers:
Accept: "application/json"
Authorization: "Bearer {{ auth_token }}"
method: get
validate_certs: false
register: clientsecret
- name: Store secret for easy retrieval
ansible.builtin.set_fact:
client_secret: "{{ clientsecret.json.value }}"
# gitlab_rails['omniauth_enabled'] = true
- name: Configure omniauth_enabled
ansible.builtin.lineinfile:
path: /etc/gitlab/gitlab.rb
regexp: ".*gitlab_rails['omniauth_enabled'].*"
line: "gitlab_rails['omniauth_enabled'] = true"
# gitlab_rails['omniauth_allow_single_sign_on'] = ['openid_connect']
# Create users through authentication integrations
# Automatically created upon first sign in with the LDAP integration.
# Created when first signing in using an OmniAuth provider if the allow_single_sign_on setting is present.
- name: Configure omniauth_allow_single_sign_on
ansible.builtin.lineinfile:
path: /etc/gitlab/gitlab.rb
regexp: ".*gitlab_rails['omniauth_allow_single_sign_on'].*"
line: "gitlab_rails['omniauth_allow_single_sign_on'] = true"
# line: "gitlab_rails['omniauth_allow_single_sign_on'] = ['openid_connect']"
# gitlab_rails['omniauth_block_auto_created_users'] = false
- name: Configure omniauth_block_auto_created_users
ansible.builtin.lineinfile:
path: /etc/gitlab/gitlab.rb
regexp: ".*gitlab_rails['omniauth_block_auto_created_users'].*"
line: "gitlab_rails['omniauth_block_auto_created_users'] = true"
# line: "gitlab_rails['omniauth_block_auto_created_users'] = false"
# Trust me on this. Getting this to work is a PITA!
# Ensure discovery is set to true. Setting it to false requires specifying all the URLs and keys required to make OpenID work
- name: Insert/Update 'omniauth_providers' configuration block in /etc/gitlab/gitlab.rb
ansible.builtin.blockinfile:
path: /etc/gitlab/gitlab.rb
marker: "# {mark} ANSIBLE MANAGED BLOCK for Keycloak "
block: |
gitlab_rails['omniauth_providers'] = [
{
name: "openid_connect",
label: "Network login",
args: {
name: "openid_connect",
scope: ["openid","profile","email"],
response_type: "code",
issuer: "https://ad.{{ domain }}/realms/{{ realm }}",
discovery: true,
client_auth_method: "query",
uid_field: "sub",
send_scope_to_token_endpoint: "false",
client_options: {
identifier: "{{ gitlab_client_id }}",
secret: "{{ client_secret }}",
redirect_uri: "https://gitlab.{{ domain }}/users/auth/openid_connect/callback"
}
}
} ]
- name: Run GitLab reconfiguration script
ansible.builtin.command:
cmd: gitlab-ctl reconfigure
register: my_output # <- Registers the command output.
changed_when: my_output.rc != 0 # <- Uses the return code to define when the task has changed.
- name: Start GitLab
ansible.builtin.command:
cmd: gitlab-ctl start
register: my_output # <- Registers the command output.
changed_when: my_output.rc != 0 # <- Uses the return code to define when the task has changed.
- name: Show that we start to wait
ansible.builtin.debug:
msg: "Start waiting for 443"
- name: Wait for port 443 to become open on the host
ansible.builtin.uri:
url: "https://gitlab.{{ domain }}/users/sign_in"
status_code: 200
register: result
until: result.status == 200
# Measured 12 attempts, so 25 max should work most of the time.
retries: 25
delay: 10
- name: Shwo that we are done waiting
ansible.builtin.debug:
msg: "Done waiting for 443"
- name: Check openssl config
ansible.builtin.command:
cmd: /opt/gitlab/embedded/bin/openssl s_client -connect localhost:443 </dev/null
register: opensslconf
changed_when: opensslconf.rc != 0 # <- Uses the return code to define when the task has changed.
- name: Show opensslconf
ansible.builtin.debug:
var: opensslconf
- name: Post-install message IT IS IMPORTANT TO READ THIS
ansible.builtin.pause:
seconds: 1
prompt: |
********************************************************************************************************
* After a fresh installation of GitLab some tips might be helpful.
* If this is a fresh install, you can login directly using username root and password as mentioned in the
* file /etc/gitlab/initial_root_password.
* How to debug: gitlab-ctl stop ; export GITLAB_LOG_LEVEL=debug ; gitlab-ctl start ; gitlab-ctl tail
* or you can add to /etc/gitlab/gitlab.rb lines like the following
* registry['log_level'] = 'info'
* or gitlab_shell['log_level'] = 'INFO'
* or gitaly['logging_level'] = 'warn'
* When users get the message "Sign-in failed because email has already been taken" the user needs to link
* his account to the SSO server. Please see https://docs.gitlab.com/ee/user/group/saml_sso/index.html#user-access-and-management