Explorar o código

Move infrastructure templates into openshift_hosted_templates role.

Andrew Butcher %!s(int64=8) %!d(string=hai) anos
pai
achega
9293059f5d
Modificáronse 34 ficheiros con 108 adicións e 22 borrados
  1. 2 0
      playbooks/common/openshift-cluster/additional_config.yml
  2. 4 0
      playbooks/common/openshift-cluster/upgrades/post_control_plane.yml
  3. 0 16
      roles/openshift_examples/tasks/main.yml
  4. 1 1
      roles/openshift_hosted_logging/defaults/main.yml
  5. 8 4
      roles/openshift_hosted_logging/tasks/deploy_logging.yaml
  6. 10 0
      roles/openshift_hosted_templates/defaults/main.yml
  7. 0 0
      roles/openshift_hosted_templates/files/v1.0/enterprise/logging-deployer.yaml
  8. 0 0
      roles/openshift_hosted_templates/files/v1.0/enterprise/metrics-deployer.yaml
  9. 0 0
      roles/openshift_hosted_templates/files/v1.0/origin/logging-deployer.yaml
  10. 0 0
      roles/openshift_hosted_templates/files/v1.0/origin/metrics-deployer.yaml
  11. 0 0
      roles/openshift_hosted_templates/files/v1.1/enterprise/logging-deployer.yaml
  12. 0 0
      roles/openshift_hosted_templates/files/v1.1/enterprise/metrics-deployer.yaml
  13. 0 0
      roles/openshift_hosted_templates/files/v1.1/origin/logging-deployer.yaml
  14. 0 0
      roles/openshift_hosted_templates/files/v1.1/origin/metrics-deployer.yaml
  15. 0 0
      roles/openshift_hosted_templates/files/v1.2/enterprise/logging-deployer.yaml
  16. 0 0
      roles/openshift_hosted_templates/files/v1.2/enterprise/metrics-deployer.yaml
  17. 0 0
      roles/openshift_hosted_templates/files/v1.2/origin/logging-deployer.yaml
  18. 0 0
      roles/openshift_hosted_templates/files/v1.2/origin/metrics-deployer.yaml
  19. 0 0
      roles/openshift_hosted_templates/files/v1.3/enterprise/logging-deployer.yaml
  20. 0 0
      roles/openshift_hosted_templates/files/v1.3/enterprise/metrics-deployer.yaml
  21. 0 0
      roles/openshift_hosted_templates/files/v1.3/enterprise/registry-console.yaml
  22. 0 0
      roles/openshift_hosted_templates/files/v1.3/origin/logging-deployer.yaml
  23. 0 0
      roles/openshift_hosted_templates/files/v1.3/origin/metrics-deployer.yaml
  24. 0 0
      roles/openshift_hosted_templates/files/v1.3/origin/registry-console.yaml
  25. 0 0
      roles/openshift_hosted_templates/files/v1.4/enterprise/logging-deployer.yaml
  26. 0 0
      roles/openshift_hosted_templates/files/v1.4/enterprise/metrics-deployer.yaml
  27. 0 0
      roles/openshift_hosted_templates/files/v1.4/enterprise/registry-console.yaml
  28. 0 0
      roles/openshift_hosted_templates/files/v1.4/origin/logging-deployer.yaml
  29. 0 0
      roles/openshift_hosted_templates/files/v1.4/origin/metrics-deployer.yaml
  30. 0 0
      roles/openshift_hosted_templates/files/v1.4/origin/registry-console.yaml
  31. 15 0
      roles/openshift_hosted_templates/meta/main.yml
  32. 65 0
      roles/openshift_hosted_templates/tasks/main.yml
  33. 2 0
      roles/openshift_metrics/defaults/main.yml
  34. 1 1
      roles/openshift_metrics/tasks/install.yml

+ 2 - 0
playbooks/common/openshift-cluster/additional_config.yml

@@ -11,6 +11,8 @@
   - role: openshift_examples
     registry_url: "{{ openshift.master.registry_url }}"
     when: openshift.common.install_examples | bool
+  - role: openshift_hosted_templates
+    registry_url: "{{ openshift.master.registry_url }}"
   - role: openshift_manageiq
     when: openshift.common.use_manageiq | bool
   - role: cockpit

+ 4 - 0
playbooks/common/openshift-cluster/upgrades/post_control_plane.yml

@@ -17,10 +17,14 @@
   # not already exist. We could have potentially done a replace --force to
   # create and update in one step.
   - openshift_examples
+  - openshift_hosted_templates
   # Update the existing templates
   - role: openshift_examples
     registry_url: "{{ openshift.master.registry_url }}"
     openshift_examples_import_command: replace
+  - role: openshift_hosted_templates
+    registry_url: "{{ openshift.master.registry_url }}"
+    openshift_hosted_templates_import_command: replace
   pre_tasks:
   - name: Collect all routers
     command: >

+ 0 - 16
roles/openshift_examples/tasks/main.yml

@@ -106,22 +106,6 @@
   failed_when: "'already exists' not in oex_import_quickstarts.stderr and oex_import_quickstarts.rc != 0"
   changed_when: false
 
-- name: Import origin infrastructure-templates
-  command: >
-    {{ openshift.common.client_binary }} {{ openshift_examples_import_command }} -n openshift -f {{ infrastructure_origin_base }}
-  when: openshift_examples_load_centos | bool
-  register: oex_import_infrastructure
-  failed_when: "'already exists' not in oex_import_infrastructure.stderr and oex_import_infrastructure.rc != 0"
-  changed_when: false
-
-- name: Import enterprise infrastructure-templates
-  command: >
-    {{ openshift.common.client_binary }} {{ openshift_examples_import_command }} -n openshift -f {{ infrastructure_enterprise_base }}
-  when: openshift_examples_load_rhel | bool
-  register: oex_import_infrastructure
-  failed_when: "'already exists' not in oex_import_infrastructure.stderr and oex_import_infrastructure.rc != 0"
-  changed_when: false
-
 - name: Remove old xPaas template files
   file:
     path: "{{ item }}"

+ 1 - 1
roles/openshift_hosted_logging/defaults/main.yml

@@ -1,2 +1,2 @@
 ---
-examples_base: "{{ openshift.common.config_base if openshift.common.is_containerized | bool else '/usr/share/openshift' }}/examples"
+hosted_base: "{{ openshift.common.config_base if openshift.common.is_containerized | bool else '/usr/share/openshift' }}/hosted"

+ 8 - 4
roles/openshift_hosted_logging/tasks/deploy_logging.yaml

@@ -17,7 +17,7 @@
       cp {{ openshift_master_config_dir }}/admin.kubeconfig {{ mktemp.stdout }}/admin.kubeconfig
     changed_when: False
 
-  - name: Check for logging project already exists
+  - name: "Check for logging project already exists"
     command: >
       {{ openshift.common.client_binary }} --config={{ mktemp.stdout }}/admin.kubeconfig get project logging -o jsonpath='{.metadata.name}'
     register: logging_project_result
@@ -40,9 +40,13 @@
 
   - name: "Create templates for logging accounts and the deployer"
     command: >
-      {{ openshift.common.client_binary }} --config={{ mktemp.stdout }}/admin.kubeconfig create -f {{ examples_base }}/infrastructure-templates/{{ 'enterprise' if openshift_deployment_type == 'openshift-enterprise' else 'origin' }}/logging-deployer.yaml
-    register: template_output
-    failed_when: "template_output.rc == 1 and 'exists' not in template_output.stderr"
+      {{ openshift.common.client_binary }} create
+      -f {{ hosted_base }}/logging-deployer.yaml
+      --config={{ mktemp.stdout }}/admin.kubeconfig
+      -n logging
+    register: logging_import_template
+    failed_when: "'already exists' not in logging_import_template.stderr and logging_import_template.rc != 0"
+    changed_when: "'created' in logging_import_template.stdout"
 
   - name: "Process the logging accounts template"
     shell:  "{{ openshift.common.client_binary }} --config={{ mktemp.stdout }}/admin.kubeconfig process logging-deployer-account-template |  {{ openshift.common.client_binary }} --config={{ mktemp.stdout }}/admin.kubeconfig create -f -"

+ 10 - 0
roles/openshift_hosted_templates/defaults/main.yml

@@ -0,0 +1,10 @@
+---
+hosted_base: "{{ openshift.common.config_base if openshift.common.is_containerized | bool else '/usr/share/openshift' }}/hosted"
+hosted_deployment_type: "{{ 'origin' if openshift_deployment_type == 'origin' else 'enterprise' }}"
+
+content_version: "{{ openshift.common.examples_content_version }}"
+
+registry_url: ""
+registry_host: "{{ registry_url.split('/')[0] if '.' in registry_url.split('/')[0] else '' }}"
+
+openshift_hosted_templates_import_command: 'create'

roles/openshift_examples/files/examples/v1.0/infrastructure-templates/enterprise/logging-deployer.yaml → roles/openshift_hosted_templates/files/v1.0/enterprise/logging-deployer.yaml


roles/openshift_examples/files/examples/v1.0/infrastructure-templates/enterprise/metrics-deployer.yaml → roles/openshift_hosted_templates/files/v1.0/enterprise/metrics-deployer.yaml


roles/openshift_examples/files/examples/v1.0/infrastructure-templates/origin/logging-deployer.yaml → roles/openshift_hosted_templates/files/v1.0/origin/logging-deployer.yaml


roles/openshift_examples/files/examples/v1.0/infrastructure-templates/origin/metrics-deployer.yaml → roles/openshift_hosted_templates/files/v1.0/origin/metrics-deployer.yaml


roles/openshift_examples/files/examples/v1.1/infrastructure-templates/enterprise/logging-deployer.yaml → roles/openshift_hosted_templates/files/v1.1/enterprise/logging-deployer.yaml


roles/openshift_examples/files/examples/v1.1/infrastructure-templates/enterprise/metrics-deployer.yaml → roles/openshift_hosted_templates/files/v1.1/enterprise/metrics-deployer.yaml


roles/openshift_examples/files/examples/v1.1/infrastructure-templates/origin/logging-deployer.yaml → roles/openshift_hosted_templates/files/v1.1/origin/logging-deployer.yaml


roles/openshift_examples/files/examples/v1.1/infrastructure-templates/origin/metrics-deployer.yaml → roles/openshift_hosted_templates/files/v1.1/origin/metrics-deployer.yaml


roles/openshift_examples/files/examples/v1.2/infrastructure-templates/enterprise/logging-deployer.yaml → roles/openshift_hosted_templates/files/v1.2/enterprise/logging-deployer.yaml


roles/openshift_examples/files/examples/v1.2/infrastructure-templates/enterprise/metrics-deployer.yaml → roles/openshift_hosted_templates/files/v1.2/enterprise/metrics-deployer.yaml


roles/openshift_examples/files/examples/v1.4/infrastructure-templates/origin/logging-deployer.yaml → roles/openshift_hosted_templates/files/v1.2/origin/logging-deployer.yaml


roles/openshift_examples/files/examples/v1.2/infrastructure-templates/origin/metrics-deployer.yaml → roles/openshift_hosted_templates/files/v1.2/origin/metrics-deployer.yaml


roles/openshift_examples/files/examples/v1.4/infrastructure-templates/enterprise/logging-deployer.yaml → roles/openshift_hosted_templates/files/v1.3/enterprise/logging-deployer.yaml


roles/openshift_examples/files/examples/v1.4/infrastructure-templates/enterprise/metrics-deployer.yaml → roles/openshift_hosted_templates/files/v1.3/enterprise/metrics-deployer.yaml


roles/openshift_examples/files/examples/v1.4/infrastructure-templates/enterprise/registry-console.yaml → roles/openshift_hosted_templates/files/v1.3/enterprise/registry-console.yaml


roles/openshift_examples/files/examples/v1.3/infrastructure-templates/origin/logging-deployer.yaml → roles/openshift_hosted_templates/files/v1.3/origin/logging-deployer.yaml


roles/openshift_examples/files/examples/v1.4/infrastructure-templates/origin/metrics-deployer.yaml → roles/openshift_hosted_templates/files/v1.3/origin/metrics-deployer.yaml


roles/openshift_examples/files/examples/v1.4/infrastructure-templates/origin/registry-console.yaml → roles/openshift_hosted_templates/files/v1.3/origin/registry-console.yaml


roles/openshift_examples/files/examples/v1.3/infrastructure-templates/enterprise/logging-deployer.yaml → roles/openshift_hosted_templates/files/v1.4/enterprise/logging-deployer.yaml


roles/openshift_examples/files/examples/v1.3/infrastructure-templates/enterprise/metrics-deployer.yaml → roles/openshift_hosted_templates/files/v1.4/enterprise/metrics-deployer.yaml


roles/openshift_examples/files/examples/v1.3/infrastructure-templates/enterprise/registry-console.yaml → roles/openshift_hosted_templates/files/v1.4/enterprise/registry-console.yaml


roles/openshift_examples/files/examples/v1.2/infrastructure-templates/origin/logging-deployer.yaml → roles/openshift_hosted_templates/files/v1.4/origin/logging-deployer.yaml


roles/openshift_examples/files/examples/v1.3/infrastructure-templates/origin/metrics-deployer.yaml → roles/openshift_hosted_templates/files/v1.4/origin/metrics-deployer.yaml


roles/openshift_examples/files/examples/v1.3/infrastructure-templates/origin/registry-console.yaml → roles/openshift_hosted_templates/files/v1.4/origin/registry-console.yaml


+ 15 - 0
roles/openshift_hosted_templates/meta/main.yml

@@ -0,0 +1,15 @@
+---
+galaxy_info:
+  author: Andrew Butcher
+  description: OpenShift Hosted Templates
+  company: Red Hat, Inc.
+  license: Apache License, Version 2.0
+  min_ansible_version: 2.1
+  platforms:
+  - name: EL
+    versions:
+    - 7
+  categories:
+  - cloud
+dependencies:
+- role: openshift_common

+ 65 - 0
roles/openshift_hosted_templates/tasks/main.yml

@@ -0,0 +1,65 @@
+---
+- name: Create local temp dir for OpenShift hosted templates copy
+  local_action: command mktemp -d /tmp/openshift-ansible-XXXXXXX
+  become: False
+  register: copy_hosted_templates_mktemp
+  run_once: True
+
+- name: Create tar of OpenShift examples
+  local_action: command tar -C "{{ role_path }}/files/{{ content_version }}/{{ hosted_deployment_type }}" -cvf "{{ copy_hosted_templates_mktemp.stdout }}/openshift-hosted-templates.tar" .
+  args:
+    # Disables the following warning:
+    # Consider using unarchive module rather than running tar
+    warn: no
+  become: False
+  register: copy_hosted_templates_tar
+
+- name: Create remote OpenShift hosted templates directory
+  file:
+    dest: "{{ hosted_base }}"
+    state: directory
+    mode: 0755
+
+- name: Unarchive the OpenShift hosted templates on the remote
+  unarchive:
+    src: "{{ copy_hosted_templates_mktemp.stdout }}/openshift-hosted-templates.tar"
+    dest: "{{ hosted_base }}/"
+
+- name: Cleanup the OpenShift hosted templates temp dir
+  become: False
+  local_action: file dest="{{ copy_hosted_templates_mktemp.stdout }}" state=absent
+
+- name: Modify registry paths if registry_url is not registry.access.redhat.com
+  shell: >
+    find {{ hosted_base }} -type f | xargs -n 1 sed -i 's|registry.access.redhat.com|{{ registry_host | quote }}|g'
+  when: registry_host != '' and openshift_hosted_modify_imagestreams | default(False) | bool
+
+- name: Create temp directory for kubeconfig
+  command: mktemp -d /tmp/openshift-ansible-XXXXXX
+  register: mktemp
+  changed_when: False
+
+- name: Record kubeconfig tmp dir
+  set_fact:
+    openshift_hosted_templates_kubeconfig: "{{ mktemp.stdout }}/admin.kubeconfig"
+
+- name: Copy the admin client config(s)
+  command: >
+    cp {{ openshift.common.config_base }}/master/admin.kubeconfig {{ openshift_hosted_templates_kubeconfig }}
+  changed_when: False
+
+- name: Create or update hosted templates
+  command: >
+    {{ openshift.common.client_binary }} {{ openshift_hosted_templates_import_command }}
+    -f {{ hosted_base }}
+    --config={{ openshift_hosted_templates_kubeconfig }}
+    -n openshift
+  register: oht_import_templates
+  failed_when: "'already exists' not in oht_import_templates.stderr and oht_import_templates.rc != 0"
+  changed_when: "'created' in oht_import_templates.stdout"
+
+- name: Delete temp directory
+  file:
+    name: "{{ mktemp.stdout }}"
+    state: absent
+  changed_when: False

+ 2 - 0
roles/openshift_metrics/defaults/main.yml

@@ -0,0 +1,2 @@
+---
+hosted_base: "{{ openshift.common.config_base if openshift.common.is_containerized | bool else '/usr/share/openshift' }}/hosted"

+ 1 - 1
roles/openshift_metrics/tasks/install.yml

@@ -70,7 +70,7 @@
 - name: Build metrics deployer command
   set_fact:
     deployer_cmd: "{{ openshift.common.client_binary }} process -f \
-      {{ metrics_template_dir }}/metrics-deployer.yaml -v \
+      {{ hosted_base }}/metrics-deployer.yaml -v \
       HAWKULAR_METRICS_HOSTNAME={{ metrics_hostname }},USE_PERSISTENT_STORAGE={{metrics_persistence | string | lower }},DYNAMICALLY_PROVISION_STORAGE={{metrics_dynamic_vol | string | lower }},METRIC_DURATION={{ openshift.hosted.metrics.duration }},METRIC_RESOLUTION={{ openshift.hosted.metrics.resolution }}{{ image_prefix }}{{ image_version }},MODE={{ deployment_mode }} \
         | {{ openshift.common.client_binary }} --namespace openshift-infra \
         --config={{ openshift_metrics_kubeconfig }} \