Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Merged by Bors] - Add support for LDAP authentication #180

Closed
wants to merge 37 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
bc32d74
Add LDAP to CRD
sbernauer Apr 21, 2022
7896c60
Watch AuthenticationClass CRD
sbernauer Apr 21, 2022
d1f1b49
Add secret-operator-columes for bind credentials and tls certs
sbernauer Apr 21, 2022
a2db46c
Move config into separate file
sbernauer Apr 21, 2022
748d565
Add Flask configs for LDAP
sbernauer Apr 21, 2022
8b7d5e0
validation mechanism expects true, not True
sbernauer Apr 21, 2022
abcd0a8
Add MAPBOX_API_KEY again
sbernauer Apr 21, 2022
bd60ed8
Fix order of initialize_logging and print_startup_string
sbernauer Apr 21, 2022
14708a1
docs: Add installation of commons and secret operator
sbernauer Apr 25, 2022
c4c07db
docs: Add short section about LDAP
sbernauer Apr 25, 2022
f38e534
Extract /stackable/secrets/ into constant
sbernauer Apr 26, 2022
d226945
Update docs/modules/ROOT/pages/installation.adoc
sbernauer May 3, 2022
d0cf44b
Update docs/modules/ROOT/pages/usage.adoc
sbernauer May 3, 2022
e03be25
Update rust/operator-binary/src/config.rs
sbernauer May 3, 2022
a0d56db
Remove adminUser from example
sbernauer May 3, 2022
87777a3
Remove uneeded #[serde(rename_all = "PascalCase")]
sbernauer May 3, 2022
1ad8a10
Make get_imports() a constant
sbernauer May 3, 2022
48c930b
Rework authenticationConfig to feedback
sbernauer May 4, 2022
685c11a
Update example
sbernauer May 4, 2022
c9aa9cc
Merge branch 'main' into feature/ldap-authn-2
sbernauer May 4, 2022
a40330f
Fix wrong link in CHANGELOG.md
sbernauer May 4, 2022
60812f8
commons-operator 0.1.0 released
sbernauer May 5, 2022
85f54d4
secret-operator 0.3.0 released
sbernauer May 5, 2022
d4076f2
Update to operators-rs 0.18.0. Remove MutualTlsVerification
sbernauer May 5, 2022
f07604d
Update to operators-rs 0.19.0
sbernauer May 5, 2022
985c934
cargo fmt
sbernauer May 5, 2022
743d7a8
Update rust/operator-binary/src/config.rs
sbernauer May 9, 2022
dc103d7
Make type Result non-public
sbernauer May 9, 2022
6f4c33d
Update postgres name
sbernauer May 9, 2022
01ecf02
Re-add adminUser to example
sbernauer May 10, 2022
458b7f2
Add "superset init" to CMD
sbernauer May 10, 2022
d9e1e76
cargo fmt
sbernauer May 10, 2022
0306046
cargo fmt
sbernauer May 10, 2022
8acdfa6
Refactor references_authentication_class
sbernauer May 11, 2022
c60740a
Wait for SupersetDB to be finished before starting Superset
sbernauer May 12, 2022
a8f6232
Merge remote-tracking branch 'origin/main' into feature/ldap-authn-2
sbernauer May 12, 2022
6df5300
Error out if SupersetDB failed
sbernauer May 12, 2022
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
Prev Previous commit
Next Next commit
Update rust/operator-binary/src/config.rs
sbernauer authored May 3, 2022

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
commit e03be255288443ee900fe18f42e279b2afc7f8e4
2 changes: 1 addition & 1 deletion rust/operator-binary/src/config.rs
Original file line number Diff line number Diff line change
@@ -36,7 +36,7 @@ pub fn add_superset_config(
);
config.insert(
SupersetConfigOptions::MapboxApiKey.to_string(),
"os.environ.get('MAPBOX_API_KEY')".into(),
"os.environ.get('MAPBOX_API_KEY', '')".into(),
);

if let Some(authentication_method) = authentication_method {