Description tweaks

This commit is contained in:
Liz Rice
2018-07-13 13:22:55 -04:00
parent 5e3ffcc7af
commit b0b8ba9a5e

View File

@@ -12,12 +12,12 @@ urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning)
""" Services """
class ReadOnlyKubeletEvent(Service, Event):
"""Can expose specific handlers which reveals information about the node/cluster"""
"""Could expose endpoints which reveal information about the node/cluster"""
def __init__(self):
Service.__init__(self, name="Kubelet API (readonly)")
class SecureKubeletEvent(Service, Event):
"""The kubelet ensures that all containers on the node are running and healthy"""
"""Could expose endpoints which allow the attacker to access the node"""
def __init__(self, cert=False, token=False):
self.cert = cert
self.token = token