Skip to content

Commit

Permalink
[u] Fix: Lambda servicecachehealth times out (#5467, #5622)
Browse files Browse the repository at this point in the history
  • Loading branch information
achave11-ucsc committed Feb 3, 2024
1 parent 355529e commit dcd5c85
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
10 changes: 10 additions & 0 deletions UPGRADING.rst
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,16 @@ reverted. This is all fairly informal and loosely defined. Hopefully we won't
have too many entries in this file.


#5467 Lambda servicecachehealth times out
=========================================

Operator
~~~~~~~~

Manually deploy the ``gitlab`` component of any main deployment just before
pushing the merge commit to the GitLab instance in that deployment.


#5876 Upgrade dependencies 2024-01-22
=====================================

Expand Down
9 changes: 9 additions & 0 deletions terraform/gitlab/gitlab.tf.json.template.py
Original file line number Diff line number Diff line change
Expand Up @@ -1017,6 +1017,15 @@ def qq(*words):
}
for zone in range(num_zones)
},
'aws_vpc_endpoint': {
f'{service}_gateway': {
'service_name': f'com.amazonaws.{config.region}.{service}',
'vpc_endpoint_type': 'Gateway',
'vpc_id': '${aws_vpc.gitlab.id}',
'route_table_ids': ['${aws_route_table.gitlab_%d.id}' % i for i in range(num_zones)],
}
for service in ['dynamodb', 's3']
},
'aws_default_security_group': {
'gitlab': {
'vpc_id': '${aws_vpc.gitlab.id}',
Expand Down

0 comments on commit dcd5c85

Please sign in to comment.