Browse Source

[redeploy-certificates] Correct etcd service name.

Andrew Butcher 8 years ago
parent
commit
f3b7f5eb6b
1 changed files with 3 additions and 1 deletions
  1. 3 1
      playbooks/common/openshift-cluster/redeploy-certificates.yml

+ 3 - 1
playbooks/common/openshift-cluster/redeploy-certificates.yml

@@ -133,7 +133,9 @@
   hosts: oo_etcd_to_config
   tasks:
   - name: restart etcd
-    service: name=etcd state=restarted
+    service:
+      name: "{{ 'etcd' if not openshift.common.is_containerized | bool else 'etcd_container' }}"
+      state: restarted
 
 - name: Stop master services
   hosts: oo_masters_to_config