Skip to content

Commit 1ebe2be

Browse files
authored
Merge branch 'master' into client_nginx
2 parents e38ddf9 + ce31176 commit 1ebe2be

File tree

7 files changed

+11
-3
lines changed

7 files changed

+11
-3
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -276,4 +276,4 @@ experimental:
276276

277277
notify:
278278
webhooks:
279-
- url: https://ci-webhooks.stackstorm.net/webhooks/build/events
279+
- url: https://ci-webhooks.stackstorm.com/webhooks/build/events

CHANGELOG.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ Changelog
44
in development
55
--------------
66

7+
Added
8+
~~~~~
9+
* Added st2-auth-ldap pip requirements for LDAP auth integartion. (new feature) #5082
10+
Contributed by @hnanchahal
11+
712
Changed
813
~~~~~~~~~
914
* Improve the st2-self-check script to echo to stderr and exit if it isn't run with a

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
[![Packages Build Status](https://circleci.com/gh/StackStorm/st2/tree/master.svg?style=shield)](https://circleci.com/gh/StackStorm/st2)
77
[![Codecov](https://codecov.io/github/StackStorm/st2/badge.svg?branch=master&service=github)](https://codecov.io/github/StackStorm/st2?branch=master)
88
[![CII Best Practices](https://bestpractices.coreinfrastructure.org/projects/1833/badge)](https://bestpractices.coreinfrastructure.org/projects/1833)
9-
![Python 2.7 | 3.6](https://img.shields.io/badge/python-2.7%20%7C%203.6-blue)
9+
![Python 3.6](https://img.shields.io/badge/python-3.6-blue)
1010
[![Apache Licensed](https://img.shields.io/github/license/StackStorm/st2)](LICENSE)
1111
[![Join our community Slack](https://img.shields.io/badge/slack-stackstorm-success.svg?logo=slack)](https://stackstorm.com/community-signup)
1212
[![Forum](https://img.shields.io/discourse/https/forum.stackstorm.com/posts.svg)](https://forum.stackstorm.com/)

conf/st2.conf.sample

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ token_ttl = 86400
7777
# Standalone mode options - options below only apply when auth service is running in the standalone
7878
# mode.
7979

80-
# Authentication backend to use in a standalone mode. Available backends: flat_file.
80+
# Authentication backend to use in a standalone mode. Available backends: ldap, flat_file.
8181
backend = flat_file
8282
# JSON serialized arguments which are passed to the authentication backend in a standalone mode.
8383
backend_kwargs = None

requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ flex==6.14.0
1717
git+https://github.com/StackStorm/logshipper.git@stackstorm_patched#egg=logshipper
1818
git+https://github.com/StackStorm/orquesta.git@v1.2.0#egg=orquesta
1919
git+https://github.com/StackStorm/st2-auth-backend-flat-file.git@master#egg=st2-auth-backend-flat-file
20+
git+https://github.com/StackStorm/st2-auth-ldap.git@master#egg=st2-auth-ldap
2021
gitpython==2.1.15
2122
greenlet==0.4.15
2223
gunicorn==19.9.0

st2auth/in-requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,5 @@ six
88
stevedore
99
# For backward compatibility reasons, flat file backend is installed by default
1010
git+https://github.com/StackStorm/st2-auth-backend-flat-file.git@master#egg=st2-auth-backend-flat-file
11+
git+https://github.com/StackStorm/st2-auth-ldap.git@master#egg=st2-auth-ldap
1112
gunicorn

st2auth/requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
bcrypt==3.1.7
99
eventlet==0.25.1
1010
git+https://github.com/StackStorm/st2-auth-backend-flat-file.git@master#egg=st2-auth-backend-flat-file
11+
git+https://github.com/StackStorm/st2-auth-ldap.git@master#egg=st2-auth-ldap
1112
gunicorn==19.9.0
1213
oslo.config<1.13,>=1.12.1
1314
passlib==1.7.1

0 commit comments

Comments
 (0)