Gareth Healy
2020-02-13 ddd690da5b82beeed683b6c5455e008b32e18cbd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
---
- name: set namespace
  set_fact:
    _namespace: "codeready-workspaces"
 
- name: Create Bucketrepo
  k8s:
    state: present
    namespace: "{{ _namespace }}"
    definition: "{{ lookup('template', role_path ~ '/templates/bucketrepo/deployment.j2' ) | from_yaml }}"
 
- name: Check Bucketrepo is running
  command: >
    oc rollout status Deployment/mavenrepo --watch=true -n "{{ _namespace }}"