Browse Source

Bugfixes

- Don't include ./ in the tarball we transfer to the nodes
- Fixup node argument ordering
Scott Dodson 9 years ago
parent
commit
5176446e14

+ 1 - 1
playbooks/common/openshift-node/config.yml

@@ -64,7 +64,7 @@
   post_tasks:
   - name: Create a tarball of the node config directories
     command: >
-      tar -czvf {{ item.config_dir }}.tgz ./
+      tar -czvf {{ item.config_dir }}.tgz
         --transform 's|system:{{ item.node_subdir }}|node|'
         -C {{ item.config_dir }} .
     args:

+ 1 - 1
roles/openshift_register_nodes/library/kubernetes_register_node.py

@@ -335,7 +335,7 @@ class Node(object):
         if self.node['apiVersion'] == 'v1beta1':
             return self.node['id']
         elif self.node['apiVersion'] == 'v1beta3':
-            return self.node['name']
+            return self.node['metadata']['name']
 
     def get_node(self):
         """ Get the dict representing the node

+ 0 - 1
roles/openshift_register_nodes/tasks/main.yml

@@ -48,4 +48,3 @@
     annotations: "{{ item.openshift.node.annotations | default({}) }}"
   with_items: openshift_nodes
   register: register_result
-