Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
58bc24b5
Commit
58bc24b5
authored
Feb 04, 2019
by
GitLab Bot
Browse files
Options
Browse Files
Download
Plain Diff
Automatic merge of gitlab-org/gitlab-ce master
parents
6706a00c
6b0b14f8
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
1 deletion
+11
-1
changelogs/unreleased/sh-fix-oauth2-callback-caps.yml
changelogs/unreleased/sh-fix-oauth2-callback-caps.yml
+5
-0
config/routes/import.rb
config/routes/import.rb
+1
-1
scripts/review_apps/review-apps.sh
scripts/review_apps/review-apps.sh
+5
-0
No files found.
changelogs/unreleased/sh-fix-oauth2-callback-caps.yml
0 → 100644
View file @
58bc24b5
---
title
:
Downcase aliased OAuth2 callback providers
merge_request
:
24877
author
:
type
:
fixed
config/routes/import.rb
View file @
58bc24b5
# Alias import callbacks under the /users/auth endpoint so that
# the OAuth2 callback URL can be restricted under http://example.com/users/auth
# instead of http://example.com.
Devise
.
omniauth_providers
.
each
do
|
provider
|
Devise
.
omniauth_providers
.
map
(
&
:downcase
).
each
do
|
provider
|
next
if
provider
==
'ldapmain'
get
"/users/auth/-/import/
#{
provider
}
/callback"
,
to:
"import/
#{
provider
}
#callback"
,
as:
"users_import_
#{
provider
}
_callback"
...
...
scripts/review_apps/review-apps.sh
View file @
58bc24b5
...
...
@@ -143,11 +143,16 @@ HELM_CMD=$(cat << EOF
--set global.hosts.hostSuffix="
$HOST_SUFFIX
"
\
--set global.hosts.domain="
$REVIEW_APPS_DOMAIN
"
\
--set certmanager.install=false
\
--set prometheus.install=false
\
--set global.ingress.configureCertmanager=false
\
--set global.ingress.tls.secretName=tls-cert
\
--set global.ingress.annotations."external-dns
\.
alpha
\.
kubernetes
\.
io/ttl"="10"
--set nginx-ingress.defaultBackend.resources.requests.memory=7Mi
\
--set nginx-ingress.controller.resources.requests.memory=440M
\
--set nginx-ingress.controller.replicaCount=2
\
--set gitlab.unicorn.resources.requests.cpu=200m
\
--set gitlab.sidekiq.resources.requests.cpu=100m
\
--set gitlab.sidekiq.resources.requests.memory=800M
\
--set gitlab.gitlab-shell.resources.requests.cpu=100m
\
--set redis.resources.requests.cpu=100m
\
--set minio.resources.requests.cpu=100m
\
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment