|
@@ -1507,11 +1507,13 @@ class OCcsr(OpenShiftCLI):
|
|
results = self._get(resource='nodes')['results'][0]['items']
|
|
results = self._get(resource='nodes')['results'][0]['items']
|
|
|
|
|
|
for node in nodes:
|
|
for node in nodes:
|
|
- nodes_list.append(dict(name=node, csrs={}, accepted=False, denied=False))
|
|
|
|
|
|
+ nodes_list.append(dict(name=node, csrs={}, server_accepted=False, client_accepted=False, denied=False))
|
|
|
|
|
|
|
|
+ # Nodes that we were able to retrieve via "oc get nodes" are approved so mark them approved.
|
|
for ocnode in results:
|
|
for ocnode in results:
|
|
if node in ocnode['metadata']['name']:
|
|
if node in ocnode['metadata']['name']:
|
|
- nodes_list[-1]['accepted'] = True
|
|
|
|
|
|
+ nodes_list[-1]['server_accepted'] = True
|
|
|
|
+ nodes_list[-1]['client_accepted'] = True
|
|
|
|
|
|
return nodes_list
|
|
return nodes_list
|
|
|
|
|
|
@@ -1554,23 +1556,25 @@ class OCcsr(OpenShiftCLI):
|
|
if node['name'] in self.get_csr_request(csr['spec']['request']):
|
|
if node['name'] in self.get_csr_request(csr['spec']['request']):
|
|
node['csrs'][csr['metadata']['name']] = csr
|
|
node['csrs'][csr['metadata']['name']] = csr
|
|
|
|
|
|
- # check that the username is the node and type is 'Approved'
|
|
|
|
|
|
+ # server: check that the username is the node and type is 'Approved'
|
|
if node['name'] in csr['spec']['username'] and csr['status']:
|
|
if node['name'] in csr['spec']['username'] and csr['status']:
|
|
if csr['status']['conditions'][0]['type'] == 'Approved':
|
|
if csr['status']['conditions'][0]['type'] == 'Approved':
|
|
- node['accepted'] = True
|
|
|
|
|
|
+ node['server_accepted'] = True
|
|
|
|
+ # client: check that the username is not the node and type is 'Approved'
|
|
|
|
+ if node['name'] not in csr['spec']['username'] and csr['status']:
|
|
|
|
+ if csr['status']['conditions'][0]['type'] == 'Approved':
|
|
|
|
+ node['client_accepted'] = True
|
|
# check type is 'Denied' and mark node as such
|
|
# check type is 'Denied' and mark node as such
|
|
if csr['status'] and csr['status']['conditions'][0]['type'] == 'Denied':
|
|
if csr['status'] and csr['status']['conditions'][0]['type'] == 'Denied':
|
|
node['denied'] = True
|
|
node['denied'] = True
|
|
-
|
|
|
|
return node
|
|
return node
|
|
-
|
|
|
|
return None
|
|
return None
|
|
|
|
|
|
def finished(self):
|
|
def finished(self):
|
|
'''determine if there are more csrs to sign'''
|
|
'''determine if there are more csrs to sign'''
|
|
# if nodes is set and we have nodes then return if all nodes are 'accepted'
|
|
# if nodes is set and we have nodes then return if all nodes are 'accepted'
|
|
if self.nodes is not None and len(self.nodes) > 0:
|
|
if self.nodes is not None and len(self.nodes) > 0:
|
|
- return all([node['accepted'] or node['denied'] for node in self.nodes])
|
|
|
|
|
|
+ return all([(node['server_accepted'] and node['client_accepted']) or node['denied'] for node in self.nodes])
|
|
|
|
|
|
# we are approving everything or we still have nodes outstanding
|
|
# we are approving everything or we still have nodes outstanding
|
|
return False
|
|
return False
|
|
@@ -1594,7 +1598,7 @@ class OCcsr(OpenShiftCLI):
|
|
for csr in self.csrs:
|
|
for csr in self.csrs:
|
|
node = self.match_node(csr)
|
|
node = self.match_node(csr)
|
|
# oc adm certificate <approve|deny> csr
|
|
# oc adm certificate <approve|deny> csr
|
|
- # there are 3 known states: Denied, Aprroved, {}
|
|
|
|
|
|
+ # there are 3 known states: Denied, Approved, {}
|
|
# verify something is needed by OCcsr.action_needed
|
|
# verify something is needed by OCcsr.action_needed
|
|
# if approve_all, then do it
|
|
# if approve_all, then do it
|
|
# if you passed in nodes, you must have a node that matches
|
|
# if you passed in nodes, you must have a node that matches
|
|
@@ -1607,9 +1611,13 @@ class OCcsr(OpenShiftCLI):
|
|
if node and csr['metadata']['name'] not in node['csrs']:
|
|
if node and csr['metadata']['name'] not in node['csrs']:
|
|
node['csrs'][csr['metadata']['name']] = csr
|
|
node['csrs'][csr['metadata']['name']] = csr
|
|
|
|
|
|
- # accept node in cluster
|
|
|
|
- if node['name'] in csr['spec']['username']:
|
|
|
|
- node['accepted'] = True
|
|
|
|
|
|
+ # mark node as accepted in our list of nodes
|
|
|
|
+ # we will use {client,server}_accepted fields to determine if we're finished
|
|
|
|
+ if node['name'] not in csr['spec']['username']:
|
|
|
|
+ node['client_accepted'] = True
|
|
|
|
+
|
|
|
|
+ if node['name'] in csr['spec']['username']:
|
|
|
|
+ node['server_accepted'] = True
|
|
|
|
|
|
results.append(result)
|
|
results.append(result)
|
|
|
|
|