Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jeg:

image:
repository: quay.io/cdis/gen3-vectis
tag: "qa-jeg"
tag: "qa-jegv2"
pullPolicy: Always

env:
Expand Down
30 changes: 30 additions & 0 deletions devplanetv2/dev-environments/qa-vectis/values/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -485,6 +485,16 @@ revproxy:
client_max_body_size 0;
}
location /api/v0/submission/vectis/ {
if ($request_method = 'OPTIONS') {
add_header Access-Control-Allow-Origin $http_origin always;
add_header Access-Control-Allow-Credentials true always;
add_header Access-Control-Allow-Methods "GET, POST, OPTIONS" always;
add_header Access-Control-Allow-Headers "Authorization, Content-Type, Accept, X-CSRFToken, X-Requested-With" always;
add_header Access-Control-Max-Age 86400 always;
add_header Content-Length 0;
add_header Content-Type text/plain;
return 204;
}
# Bypass VPC Private DNS for execute-api; resolve through public resolvers.
proxy_set_header Authorization "$access_token";
proxy_ssl_server_name on;
Expand Down Expand Up @@ -515,6 +525,16 @@ revproxy:
client_max_body_size 0;
}
location /api/v0/submission/ {
if ($request_method = 'OPTIONS') {
add_header Access-Control-Allow-Origin $http_origin always;
add_header Access-Control-Allow-Credentials true always;
add_header Access-Control-Allow-Methods "GET, POST, OPTIONS" always;
add_header Access-Control-Allow-Headers "Authorization, Content-Type, Accept, X-CSRFToken, X-Requested-With" always;
add_header Access-Control-Max-Age 86400 always;
add_header Content-Length 0;
add_header Content-Type text/plain;
return 204;
}
# Bypass VPC Private DNS for execute-api; resolve through public resolvers.
proxy_set_header Authorization "$access_token";
proxy_ssl_server_name on;
Expand Down Expand Up @@ -1141,6 +1161,16 @@ workspace-proxy:
- "172.27.136.0/22" # EKS private subnet (DHCP)
- "172.27.132.0/22" # EKS private subnet (DHCP)

# AmazonMQ broker ENI CIDRs in VPC. Prefer /32 broker ENIs when available.
amazonMqCIDRs:
- "172.27.140.0/22"
- "172.27.136.0/22"
- "172.27.132.0/22"

amazonMqPorts:
- 5671
- 61617

replicaCount: 1

image:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ workspace-proxy:
replicaCount: 1

image:
repository: quay.io/cdis/gen3-vectis
tag: qa-goproxy
repository: quay.io/cdis/multihead-workspace-proxy
tag: feat_init-jeg-user-ownership-fix
pullPolicy: Always

listenAddr: ":8080"
Expand Down
Loading