-
-
Notifications
You must be signed in to change notification settings - Fork 451
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
Add support for net.ssl.allowConnectionsWithoutCertificates setting in mongod.conf #577
Open
yennchen
wants to merge
17
commits into
voxpupuli:master
Choose a base branch
from
wandera:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 9 commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
b29637b
Allow allowConnectionsWithoutCertificates option
yennchen 064bc8c
fix spacing
yennchen 7ec974c
Merge pull request #1 from wandera/without_ssl
gerricchaplin 15ec17e
Add support for net.ssl.clusterFile
dfd01f7
Merge pull request #2 from wandera/add-cluster-file
gerricchaplin 1675eee
replace ssl with tls
r2ronoha 72c5305
bind ip Stdlib::Host
r2ronoha 603c3eb
Merge pull request #3 from r2ronoha/master
r2ronoha af956c0
Merge pull request #4 from wandera/replace_ssl_with_tls
r2ronoha 8bc44d3
Add repo GPG keys for newer versions
allan-briffa 8540421
Merge pull request #8 from wandera/repo-gpg-keys
allan-briffa 52244c6
Compatibility for secondaryOk in new releases
allan-briffa 59e3b6f
Merge pull request #9 from wandera/secondaryok-compat
allan-briffa 8a02e5e
Add SecondaryOk syntax support for monorc.js
allan-briffa 4c8afdb
Merge pull request #10 from wandera/secondaryok-mongorc
allan-briffa 281c305
Fix for Percona shell not obeying quiet flag
allan-briffa 943c752
Merge pull request #11 from wandera/percona-shell
allan-briffa File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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 |
---|---|---|
|
@@ -19,7 +19,7 @@ | |
Variant[Boolean, String] $package_ensure = $mongodb::params::package_ensure, | ||
String $package_name = $mongodb::params::server_package_name, | ||
Variant[Boolean, Stdlib::Absolutepath] $logpath = $mongodb::params::logpath, | ||
Array[Stdlib::Compat::Ip_address] $bind_ip = $mongodb::params::bind_ip, | ||
Array[Stdlib::Host] $bind_ip = $mongodb::params::bind_ip, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is it allowed to bind on a FQDN? |
||
Optional[Boolean] $ipv6 = undef, | ||
Boolean $logappend = true, | ||
Optional[String] $system_logrotate = undef, | ||
|
@@ -68,9 +68,11 @@ | |
Optional[Boolean] $ssl = undef, | ||
Optional[Stdlib::Absolutepath] $ssl_key = undef, | ||
Optional[Stdlib::Absolutepath] $ssl_ca = undef, | ||
Optional[Stdlib::Absolutepath] $ssl_cluster_file = undef, | ||
Boolean $ssl_weak_cert = false, | ||
Boolean $ssl_without_cert = false, | ||
Boolean $ssl_invalid_hostnames = false, | ||
Enum['requireSSL', 'preferSSL', 'allowSSL'] $ssl_mode = 'requireSSL', | ||
Enum['requireTLS', 'preferTLS', 'allowTLS'] $ssl_mode = 'requireTLS', | ||
Boolean $restart = $mongodb::params::restart, | ||
Optional[String] $storage_engine = undef, | ||
Boolean $create_admin = $mongodb::params::create_admin, | ||
|
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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is odd. Normally we don't modify changelog entries