-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
980d554
commit e90451d
Showing
7 changed files
with
102 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
FROM sentry | ||
|
||
RUN apt-get update && \ | ||
apt-get install -y --no-install-recommends sudo gcc libsasl2-dev libldap2-dev libssl-dev | ||
|
||
RUN pip install sentry-ldap-auth | ||
|
||
RUN sudo -i -u sentry pip install sentry-ldap-auth | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
all: app | ||
|
||
app: | ||
make build | ||
make deploy | ||
make clean | ||
|
||
build: | ||
docker-compose build --compress --parallel --progress plain | ||
|
||
deploy: | ||
docker-compose push | ||
|
||
clean: | ||
docker container prune -f | ||
docker image prune -f | ||
docker network prune -f | ||
docker volume prune -f | ||
docker system prune -af |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
version: '3.9' | ||
services: | ||
app: | ||
image: "epicmorg/sentry:latest" | ||
build: | ||
context: . |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
############# | ||
# LDAP auth # | ||
############# | ||
|
||
import ldap | ||
from django_auth_ldap.config import LDAPSearch, GroupOfUniqueNamesType | ||
|
||
AUTH_LDAP_SERVER_URI = 'ldap://freeipa.example.com:389' | ||
|
||
AUTH_LDAP_BIND_DN = 'krbprincipalname=sentry/[email protected],cn=services,cn=accounts,dc=example,dc=com' | ||
|
||
AUTH_LDAP_BIND_PASSWORD = 'qwerty123' | ||
|
||
AUTH_LDAP_USER_SEARCH = LDAPSearch( | ||
'cn=users,cn=accounts,dc=example,dc=com', | ||
ldap.SCOPE_SUBTREE, '(uid=%(user)s)', | ||
) | ||
|
||
AUTH_LDAP_GROUP_SEARCH = LDAPSearch( | ||
"cn=groups,dc=example,dc=com", ldap.SCOPE_SUBTREE, "(objectClass=groupOfNames)" | ||
) | ||
|
||
AUTH_LDAP_GROUP_TYPE = GroupOfUniqueNamesType() | ||
AUTH_LDAP_REQUIRE_GROUP = None | ||
AUTH_LDAP_DENY_GROUP = None | ||
|
||
AUTH_LDAP_USER_ATTR_MAP = { | ||
"first_name": "givenname", | ||
"last_name": "sn", | ||
"email": "mail" | ||
} | ||
|
||
AUTH_LDAP_FIND_GROUP_PERMS = False | ||
AUTH_LDAP_CACHE_GROUPS = True | ||
AUTH_LDAP_GROUP_CACHE_TIMEOUT = 3600 | ||
|
||
AUTH_LDAP_DEFAULT_SENTRY_ORGANIZATION = 'Sentry' | ||
AUTH_LDAP_SENTRY_ORGANIZATION_ROLE_TYPE = 'member' | ||
AUTH_LDAP_SENTRY_ORGANIZATION_GLOBAL_ACCESS = True | ||
AUTH_LDAP_SENTRY_SUBSCRIBE_BY_DEFAULT = False | ||
|
||
AUTH_LDAP_SENTRY_USERNAME_FIELD = 'cn' | ||
SENTRY_MANAGED_USER_FIELDS = ('email', 'first_name', 'last_name', 'password', ) | ||
|
||
AUTHENTICATION_BACKENDS = AUTHENTICATION_BACKENDS + ( | ||
'sentry_ldap_auth.backend.SentryLdapBackend', | ||
) | ||
|
||
# optional, for debugging | ||
import logging | ||
logger = logging.getLogger('django_auth_ldap') | ||
logger.addHandler(logging.StreamHandler()) | ||
logger.addHandler(logging.FileHandler('/var/log/sentry_ldap.log')) | ||
logger.setLevel('DEBUG') | ||
|
||
LOGGING['overridable'] = ['sentry', 'django_auth_ldap'] | ||
LOGGING['loggers']['django_auth_ldap'] = { | ||
'handlers': ['console'], | ||
'level': 'DEBUG' | ||
} |