-
Notifications
You must be signed in to change notification settings - Fork 4
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
Support for kerberization #35
base: master
Are you sure you want to change the base?
Conversation
kerberos_helper.py
Outdated
|
||
class Kerberos_Helper: | ||
|
||
def __init__(self, network, operating_system): |
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.
Can we add a docstring to the class reflecting this init? Also, since it looks like operating_system
is a version and not the whole OS name, can we update the naming to make that clear?
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.
Done.
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.
Just tiny suggestions. Can we update the README to give an example of using the new args?
start.py
Outdated
nodes = [primary_node] + secondary_nodes | ||
if args.kerberos: | ||
logger.info('Creating KDC node...') | ||
kdc = kerberos_helper.Kerberos_Helper(args.network, args.operating_system) |
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.
Any reason not to call the class Kdc in the first place if it'll be instantiated and treated like one?
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.
Changed the instance variable name.
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.
Just tiny suggestions. Can we update the README to give an example of using the new args?
Done.
No description provided.