summaryrefslogtreecommitdiffstats
path: root/roles/openshift_hosted/tasks/registry/registry.yml
blob: 4e525a2da8174270b285efcb679faa3ef7bd1144 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
---
- name: Retrieve list of openshift nodes matching registry selector
  command: >
    {{ openshift.common.client_binary }} --api-version='v1' -o json
    get nodes -n default --config={{ openshift_hosted_kubeconfig }}
    --selector={{ openshift.hosted.registry.selector | default('') }}
  register: registry_nodes_json
  changed_when: false
  when: openshift.hosted.registry.replicas | default(none) is none

- set_fact:
    l_node_count: "{{ (registry_nodes_json.stdout | default('{\"items\":[]}') | from_json)['items'] | length }}"

# Determine the default number of registry/router replicas to use if no count
# has been specified.
# If no registry nodes defined, the default should be 0.
- set_fact:
    l_default_replicas: 0
  when: l_node_count | int == 0

# If registry nodes are defined and the registry storage kind is
# defined, default should be the number of registry nodes, otherwise
# just 1:
- set_fact:
    l_default_replicas: "{{ l_node_count if openshift.hosted.registry.storage.kind | default(none) is not none else 1 }}"
  when: l_node_count | int > 0

- set_fact:
    replicas: "{{ openshift.hosted.registry.replicas | default(l_default_replicas) }}"

- name: Create OpenShift registry
  command: >
    {{ openshift.common.admin_binary }} registry --create
    --config={{ openshift_hosted_kubeconfig }}
    {% if replicas > 1 -%}
    --replicas={{ replicas }}
    {% endif -%}
    --namespace={{ openshift.hosted.registry.namespace | default('default') }}
    --service-account=registry
    {% if openshift.hosted.registry.selector | default(none) is not none -%}
    --selector='{{ openshift.hosted.registry.selector }}'
    {% endif -%}
    {% if not openshift.common.version_gte_3_2_or_1_2 | bool -%}
    --credentials={{ openshift_master_config_dir }}/openshift-registry.kubeconfig
    {% endif -%}
    {% if openshift.hosted.registry.registryurl | default(none) is not none -%}
    --images='{{ openshift.hosted.registry.registryurl }}'
    {% endif -%}
  register: openshift_hosted_registry_results
  changed_when: "'service exists' not in openshift_hosted_registry_results.stdout"
  failed_when: "openshift_hosted_registry_results.rc != 0 and 'service exists' not in openshift_hosted_registry_results.stdout and 'deployment_config' not in openshift_hosted_registry_results.stderr and 'service' not in openshift_hosted_registry_results.stderr"
  when: replicas | int > 0

- include: secure.yml
  static: no
  when: replicas | int > 0

- include: storage/object_storage.yml
  static: no
  when: replicas | int > 0 and openshift.hosted.registry.storage.kind | default(none) == 'object'

- include: storage/persistent_volume.yml
  static: no
  when: replicas | int > 0 and openshift.hosted.registry.storage.kind | default(none) in ['nfs', 'openstack']