File tree Expand file tree Collapse file tree 3 files changed +12
-1
lines changed Expand file tree Collapse file tree 3 files changed +12
-1
lines changed Original file line number Diff line number Diff line change @@ -208,7 +208,7 @@ gitlab_feature_flags:
208208 - name: "chatops"
209209 enabled: true
210210 - name: "webauthn"
211- enabled: false
211+ enabled: false
212212` ` `
213213
214214# ### Mattermost only use case
@@ -359,6 +359,14 @@ Set IP Address of PostgreSQL Database instance:
359359gitlab_postgresql_db_host: '127.0.0.1'
360360` ` `
361361
362+ # ### Port of External PostgreSQL Database Instance
363+
364+ Set port of PostgreSQL database instance, if port other than `5432` is used :
365+
366+ ` ` ` yaml
367+ gitlab_postgresql_db_port: 5432
368+ ` ` `
369+
362370# ### Password for External PostgreSQL Database Instance
363371
364372Set password of PostgreSQL Database instance :
Original file line number Diff line number Diff line change @@ -66,6 +66,8 @@ gitlab_gitaly_instance_port: "8075"
6666gitlab_use_internal_postgresql : " true"
6767# External PostgreSQL database host IP / domain
6868gitlab_postgresql_db_host : " 127.0.0.1"
69+ # External PostgreSQL database port
70+ gitlab_postgresql_db_port : 5432
6971# External PostgreSQL database password
7072gitlab_postgresql_db_password : " changeme"
7173
Original file line number Diff line number Diff line change @@ -54,6 +54,7 @@ postgresql['enable'] = false
5454gitlab_rails['db_adapter'] = 'postgresql'
5555gitlab_rails['db_encoding'] = 'unicode'
5656gitlab_rails['db_host'] = "{{ gitlab_postgresql_db_host }}"
57+ gitlab_rails['db_port'] = {{ gitlab_postgresql_db_port }}
5758gitlab_rails['db_password'] = "{{ gitlab_postgresql_db_password }}"
5859{% endif %}
5960
You can’t perform that action at this time.
0 commit comments