瀏覽代碼

Playbook Consolidation - openshift-checks

Russell Teague 7 年之前
父節點
當前提交
9f2de18076
共有 29 個文件被更改,包括 49 次插入53 次删除
  1. 2 2
      README_CONTAINER_IMAGE.md
  2. 1 1
      images/installer/README_INVENTORY_GENERATOR.md
  3. 1 1
      playbooks/aws/openshift-cluster/install.yml
  4. 0 1
      playbooks/byo/openshift-checks/certificate_expiry/roles
  5. 0 4
      playbooks/byo/openshift-checks/health.yml
  6. 0 4
      playbooks/byo/openshift-checks/pre-install.yml
  7. 0 3
      playbooks/byo/openshift-preflight/check.yml
  8. 0 1
      playbooks/certificate_expiry
  9. 1 1
      playbooks/common/openshift-cluster/config.yml
  10. 7 7
      playbooks/byo/openshift-checks/README.md
  11. 3 3
      playbooks/byo/openshift-checks/adhoc.yml
  12. 0 0
      playbooks/openshift-checks/certificate_expiry/default.yaml
  13. 0 0
      playbooks/openshift-checks/certificate_expiry/easy-mode-upload.yaml
  14. 0 0
      playbooks/openshift-checks/certificate_expiry/easy-mode.yaml
  15. 0 0
      playbooks/openshift-checks/certificate_expiry/html_and_json_default_paths.yaml
  16. 0 0
      playbooks/openshift-checks/certificate_expiry/html_and_json_timestamp.yaml
  17. 0 0
      playbooks/openshift-checks/certificate_expiry/longer-warning-period-json-results.yaml
  18. 0 0
      playbooks/openshift-checks/certificate_expiry/longer_warning_period.yaml
  19. 0 0
      playbooks/openshift-checks/certificate_expiry/roles
  20. 4 0
      playbooks/openshift-checks/health.yml
  21. 4 0
      playbooks/openshift-checks/pre-install.yml
  22. 0 0
      playbooks/openshift-checks/private/adhoc.yml
  23. 0 0
      playbooks/openshift-checks/private/health.yml
  24. 0 0
      playbooks/openshift-checks/private/install.yml
  25. 0 0
      playbooks/openshift-checks/private/pre-install.yml
  26. 0 0
      playbooks/openshift-checks/private/roles
  27. 1 0
      playbooks/openshift-checks/roles
  28. 1 1
      roles/installer_checkpoint/callback_plugins/installer_checkpoint.py
  29. 24 24
      roles/openshift_certificate_expiry/README.md

文件差異過大導致無法顯示
+ 2 - 2
README_CONTAINER_IMAGE.md


+ 1 - 1
images/installer/README_INVENTORY_GENERATOR.md

@@ -46,7 +46,7 @@ docker run -u `id -u` \
        -v /tmp/origin/master/admin.kubeconfig:/opt/app-root/src/.kube/config:Z \
        -v /tmp/origin/master/master-config.yaml:/opt/app-root/src/master-config.yaml:Z \
        -e OPTS="-v --become-user root" \
-       -e PLAYBOOK_FILE=playbooks/byo/openshift-checks/health.yml \
+       -e PLAYBOOK_FILE=playbooks/openshift-checks/health.yml \
        -e GENERATE_INVENTORY=true \
        -e USER=`whoami` \
        openshift/origin-ansible

+ 1 - 1
playbooks/aws/openshift-cluster/install.yml

@@ -19,7 +19,7 @@
   include: ../../init/main.yml
 
 - name: perform the installer openshift-checks
-  include: ../../common/openshift-checks/install.yml
+  include: ../../openshift-checks/private/install.yml
 
 - name: etcd install
   include: ../../common/openshift-etcd/config.yml

+ 0 - 1
playbooks/byo/openshift-checks/certificate_expiry/roles

@@ -1 +0,0 @@
-../../../../roles

+ 0 - 4
playbooks/byo/openshift-checks/health.yml

@@ -1,4 +0,0 @@
----
-- include: ../../init/main.yml
-
-- include: ../../common/openshift-checks/health.yml

+ 0 - 4
playbooks/byo/openshift-checks/pre-install.yml

@@ -1,4 +0,0 @@
----
-- include: ../../init/main.yml
-
-- include: ../../common/openshift-checks/pre-install.yml

+ 0 - 3
playbooks/byo/openshift-preflight/check.yml

@@ -1,3 +0,0 @@
----
-# location is moved; this file remains so existing instructions keep working
-- include: ../openshift-checks/pre-install.yml

+ 0 - 1
playbooks/certificate_expiry

@@ -1 +0,0 @@
-byo/openshift-checks/certificate_expiry/

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

@@ -1,5 +1,5 @@
 ---
-- include: ../openshift-checks/install.yml
+- include: ../../openshift-checks/private/install.yml
 
 - include: ../openshift-etcd/config.yml
 

+ 7 - 7
playbooks/byo/openshift-checks/README.md

@@ -47,19 +47,19 @@ against your inventory file. Here is the step-by-step:
 3. Run the appropriate playbook:
 
     ```console
-    $ ansible-playbook -i <inventory file> playbooks/byo/openshift-checks/pre-install.yml
+    $ ansible-playbook -i <inventory file> playbooks/openshift-checks/pre-install.yml
     ```
 
     or
 
     ```console
-    $ ansible-playbook -i <inventory file> playbooks/byo/openshift-checks/health.yml
+    $ ansible-playbook -i <inventory file> playbooks/openshift-checks/health.yml
     ```
 
     or
 
     ```console
-    $ ansible-playbook -i <inventory file> playbooks/byo/openshift-checks/certificate_expiry/default.yaml -v
+    $ ansible-playbook -i <inventory file> playbooks/openshift-checks/certificate_expiry/default.yaml -v
     ```
 
 ### The adhoc playbook
@@ -72,19 +72,19 @@ using the `-e` flag.
 For example, to run the `docker_storage` check:
 
 ```console
-$ ansible-playbook -i <inventory file> playbooks/byo/openshift-checks/adhoc.yml -e openshift_checks=docker_storage
+$ ansible-playbook -i <inventory file> playbooks/openshift-checks/adhoc.yml -e openshift_checks=docker_storage
 ```
 
 To run more checks, use a comma-separated list of check names:
 
 ```console
-$ ansible-playbook -i <inventory file> playbooks/byo/openshift-checks/adhoc.yml -e openshift_checks=docker_storage,disk_availability
+$ ansible-playbook -i <inventory file> playbooks/openshift-checks/adhoc.yml -e openshift_checks=docker_storage,disk_availability
 ```
 
 To run an entire class of checks, use the name of a check group tag, prefixed by `@`. This will run all checks tagged `preflight`:
 
 ```console
-$ ansible-playbook -i <inventory file> playbooks/byo/openshift-checks/adhoc.yml -e openshift_checks=@preflight
+$ ansible-playbook -i <inventory file> playbooks/openshift-checks/adhoc.yml -e openshift_checks=@preflight
 ```
 
 It is valid to specify multiple check tags and individual check names together
@@ -94,7 +94,7 @@ To list all of the available checks and tags, run the adhoc playbook without
 setting the `openshift_checks` variable:
 
 ```console
-$ ansible-playbook -i <inventory file> playbooks/byo/openshift-checks/adhoc.yml
+$ ansible-playbook -i <inventory file> playbooks/openshift-checks/adhoc.yml
 ```
 
 ## Running in a container

+ 3 - 3
playbooks/byo/openshift-checks/adhoc.yml

@@ -1,6 +1,6 @@
 ---
 # NOTE: ideally this would be just part of a single play in
-# common/openshift-checks/adhoc.yml that lists the existing checks when
+# private/adhoc.yml that lists the existing checks when
 # openshift_checks is not set or run the requested checks. However, to actually
 # run the checks we need to have the included dependencies to run first and that
 # takes time. To speed up listing checks, we use this separate play that runs
@@ -20,6 +20,6 @@
     action: openshift_health_check
     when: openshift_checks is undefined or not openshift_checks
 
-- include: ../../init/main.yml
+- include: ../init/main.yml
 
-- include: ../../common/openshift-checks/adhoc.yml
+- include: private/adhoc.yml

playbooks/byo/openshift-checks/certificate_expiry/default.yaml → playbooks/openshift-checks/certificate_expiry/default.yaml


playbooks/byo/openshift-checks/certificate_expiry/easy-mode-upload.yaml → playbooks/openshift-checks/certificate_expiry/easy-mode-upload.yaml


playbooks/byo/openshift-checks/certificate_expiry/easy-mode.yaml → playbooks/openshift-checks/certificate_expiry/easy-mode.yaml


playbooks/byo/openshift-checks/certificate_expiry/html_and_json_default_paths.yaml → playbooks/openshift-checks/certificate_expiry/html_and_json_default_paths.yaml


playbooks/byo/openshift-checks/certificate_expiry/html_and_json_timestamp.yaml → playbooks/openshift-checks/certificate_expiry/html_and_json_timestamp.yaml


playbooks/byo/openshift-checks/certificate_expiry/longer-warning-period-json-results.yaml → playbooks/openshift-checks/certificate_expiry/longer-warning-period-json-results.yaml


playbooks/byo/openshift-checks/certificate_expiry/longer_warning_period.yaml → playbooks/openshift-checks/certificate_expiry/longer_warning_period.yaml


playbooks/common/openshift-checks/roles → playbooks/openshift-checks/certificate_expiry/roles


+ 4 - 0
playbooks/openshift-checks/health.yml

@@ -0,0 +1,4 @@
+---
+- include: ../init/main.yml
+
+- include: private/health.yml

+ 4 - 0
playbooks/openshift-checks/pre-install.yml

@@ -0,0 +1,4 @@
+---
+- include: ../init/main.yml
+
+- include: private/pre-install.yml

playbooks/common/openshift-checks/adhoc.yml → playbooks/openshift-checks/private/adhoc.yml


playbooks/common/openshift-checks/health.yml → playbooks/openshift-checks/private/health.yml


playbooks/common/openshift-checks/install.yml → playbooks/openshift-checks/private/install.yml


playbooks/common/openshift-checks/pre-install.yml → playbooks/openshift-checks/private/pre-install.yml


playbooks/byo/openshift-checks/roles → playbooks/openshift-checks/private/roles


+ 1 - 0
playbooks/openshift-checks/roles

@@ -0,0 +1 @@
+../../roles

+ 1 - 1
roles/installer_checkpoint/callback_plugins/installer_checkpoint.py

@@ -46,7 +46,7 @@ class CallbackModule(CallbackBase):
             },
             'installer_phase_health': {
                 'title': 'Health Check',
-                'playbook': 'playbooks/byo/openshift-checks/pre-install.yml'
+                'playbook': 'playbooks/openshift-checks/pre-install.yml'
             },
             'installer_phase_etcd': {
                 'title': 'etcd Install',

+ 24 - 24
roles/openshift_certificate_expiry/README.md

@@ -54,7 +54,7 @@ included in this role, or you can [read on below for more examples](#more-exampl
 to help you craft you own.
 
 ```
-$ ansible-playbook -v -i HOSTS playbooks/byo/openshift-checks/certificate_expiry/easy-mode.yaml
+$ ansible-playbook -v -i HOSTS playbooks/openshift-checks/certificate_expiry/easy-mode.yaml
 ```
 
 Using the `easy-mode.yaml` playbook will produce:
@@ -65,7 +65,7 @@ Using the `easy-mode.yaml` playbook will produce:
 
 
 > **Note:** If you are running from an RPM install use
-> `/usr/share/ansible/openshift-ansible/playbooks/byo/openshift-checks/certificate_expiry/easy-mode.yaml`
+> `/usr/share/ansible/openshift-ansible/playbooks/openshift-checks/certificate_expiry/easy-mode.yaml`
 > instead
 
 ## Run from a container
@@ -80,7 +80,7 @@ There are several [examples](../../examples/README.md) in the `examples` directo
 ## More Example Playbooks
 
 > **Note:** These Playbooks are available to run directly out of the
-> [/playbooks/byo/openshift-checks/certificate_expiry/](../../playbooks/byo/openshift-checks/certificate_expiry/) directory.
+> [/playbooks/openshift-checks/certificate_expiry/](../../playbooks/openshift-checks/certificate_expiry/) directory.
 
 ### Default behavior
 
@@ -99,14 +99,14 @@ This playbook just invokes the certificate expiration check role with default op
 
 **From git:**
 ```
-$ ansible-playbook -v -i HOSTS playbooks/byo/openshift-checks/certificate_expiry/default.yaml
+$ ansible-playbook -v -i HOSTS playbooks/openshift-checks/certificate_expiry/default.yaml
 ```
 **From openshift-ansible-playbooks rpm:**
 ```
-$ ansible-playbook -v -i HOSTS /usr/share/ansible/openshift-ansible/playbooks/byo/openshift-checks/certificate_expiry/default.yaml
+$ ansible-playbook -v -i HOSTS /usr/share/ansible/openshift-ansible/playbooks/openshift-checks/certificate_expiry/default.yaml
 ```
 
-> [View This Playbook](../../playbooks/byo/openshift-checks/certificate_expiry/default.yaml)
+> [View This Playbook](../../playbooks/openshift-checks/certificate_expiry/default.yaml)
 
 ### Easy mode
 
@@ -130,14 +130,14 @@ certificates (healthy or not) are included in the results:
 
 **From git:**
 ```
-$ ansible-playbook -v -i HOSTS playbooks/byo/openshift-checks/certificate_expiry/easy-mode.yaml
+$ ansible-playbook -v -i HOSTS playbooks/openshift-checks/certificate_expiry/easy-mode.yaml
 ```
 **From openshift-ansible-playbooks rpm:**
 ```
-$ ansible-playbook -v -i HOSTS /usr/share/ansible/openshift-ansible/playbooks/byo/openshift-checks/certificate_expiry/easy-mode.yaml
+$ ansible-playbook -v -i HOSTS /usr/share/ansible/openshift-ansible/playbooks/openshift-checks/certificate_expiry/easy-mode.yaml
 ```
 
-> [View This Playbook](../../playbooks/byo/openshift-checks/certificate_expiry/easy-mode.yaml)
+> [View This Playbook](../../playbooks/openshift-checks/certificate_expiry/easy-mode.yaml)
 
 ### Easy mode and upload reports to masters
 
@@ -193,14 +193,14 @@ options via environment variables:
 
 **From git:**
 ```
-$ ansible-playbook -v -i HOSTS playbooks/byo/openshift-checks/certificate_expiry/easy-mode-upload.yaml
+$ ansible-playbook -v -i HOSTS playbooks/openshift-checks/certificate_expiry/easy-mode-upload.yaml
 ```
 **From openshift-ansible-playbooks rpm:**
 ```
-$ ansible-playbook -v -i HOSTS /usr/share/ansible/openshift-ansible/playbooks/byo/openshift-checks/certificate_expiry/easy-mode-upload.yaml
+$ ansible-playbook -v -i HOSTS /usr/share/ansible/openshift-ansible/playbooks/openshift-checks/certificate_expiry/easy-mode-upload.yaml
 ```
 
-> [View This Playbook](../../playbooks/byo/openshift-checks/certificate_expiry/easy-mode-upload.yaml)
+> [View This Playbook](../../playbooks/openshift-checks/certificate_expiry/easy-mode-upload.yaml)
 
 ### Generate HTML and JSON artifacts in their default paths
 
@@ -219,14 +219,14 @@ $ ansible-playbook -v -i HOSTS /usr/share/ansible/openshift-ansible/playbooks/by
 
 **From git:**
 ```
-$ ansible-playbook -v -i HOSTS playbooks/byo/openshift-checks/certificate_expiry/html_and_json_default_paths.yaml
+$ ansible-playbook -v -i HOSTS playbooks/openshift-checks/certificate_expiry/html_and_json_default_paths.yaml
 ```
 **From openshift-ansible-playbooks rpm:**
 ```
-$ ansible-playbook -v -i HOSTS /usr/share/ansible/openshift-ansible/playbooks/byo/openshift-checks/certificate_expiry/html_and_json_default_paths.yaml
+$ ansible-playbook -v -i HOSTS /usr/share/ansible/openshift-ansible/playbooks/openshift-checks/certificate_expiry/html_and_json_default_paths.yaml
 ```
 
-> [View This Playbook](../../playbooks/byo/openshift-checks/certificate_expiry/html_and_json_default_paths.yaml)
+> [View This Playbook](../../playbooks/openshift-checks/certificate_expiry/html_and_json_default_paths.yaml)
 
 ### Generate HTML and JSON reports in a custom path
 
@@ -250,14 +250,14 @@ This example customizes the report generation path to point to a specific path (
 
 **From git:**
 ```
-$ ansible-playbook -v -i HOSTS playbooks/byo/openshift-checks/certificate_expiry/html_and_json_timestamp.yaml
+$ ansible-playbook -v -i HOSTS playbooks/openshift-checks/certificate_expiry/html_and_json_timestamp.yaml
 ```
 **From openshift-ansible-playbooks rpm:**
 ```
-$ ansible-playbook -v -i HOSTS /usr/share/ansible/openshift-ansible/playbooks/byo/openshift-checks/certificate_expiry/html_and_json_timestamp.yaml
+$ ansible-playbook -v -i HOSTS /usr/share/ansible/openshift-ansible/playbooks/openshift-checks/certificate_expiry/html_and_json_timestamp.yaml
 ```
 
-> [View This Playbook](../../playbooks/byo/openshift-checks/certificate_expiry/html_and_json_timestamp.yaml)
+> [View This Playbook](../../playbooks/openshift-checks/certificate_expiry/html_and_json_timestamp.yaml)
 
 ### Long warning window
 
@@ -278,14 +278,14 @@ the module out):
 
 **From git:**
 ```
-$ ansible-playbook -v -i HOSTS playbooks/byo/openshift-checks/certificate_expiry/longer_warning_period.yaml
+$ ansible-playbook -v -i HOSTS playbooks/openshift-checks/certificate_expiry/longer_warning_period.yaml
 ```
 **From openshift-ansible-playbooks rpm:**
 ```
-$ ansible-playbook -v -i HOSTS /usr/share/ansible/openshift-ansible/playbooks/byo/openshift-checks/certificate_expiry/longer_warning_period.yaml
+$ ansible-playbook -v -i HOSTS /usr/share/ansible/openshift-ansible/playbooks/openshift-checks/certificate_expiry/longer_warning_period.yaml
 ```
 
-> [View This Playbook](../../playbooks/byo/openshift-checks/certificate_expiry/longer_warning_period.yaml)
+> [View This Playbook](../../playbooks/openshift-checks/certificate_expiry/longer_warning_period.yaml)
 
 ### Long warning window and JSON report
 
@@ -307,14 +307,14 @@ the module out) and save the results as a JSON file:
 
 **From git:**
 ```
-$ ansible-playbook -v -i HOSTS playbooks/byo/openshift-checks/certificate_expiry/longer-warning-period-json-results.yaml
+$ ansible-playbook -v -i HOSTS playbooks/openshift-checks/certificate_expiry/longer-warning-period-json-results.yaml
 ```
 **From openshift-ansible-playbooks rpm:**
 ```
-$ ansible-playbook -v -i HOSTS /usr/share/ansible/openshift-ansible/playbooks/byo/openshift-checks/certificate_expiry/longer-warning-period-json-results.yaml
+$ ansible-playbook -v -i HOSTS /usr/share/ansible/openshift-ansible/playbooks/openshift-checks/certificate_expiry/longer-warning-period-json-results.yaml
 ```
 
-> [View This Playbook](../../playbooks/byo/openshift-checks/certificate_expiry/longer-warning-period-json-results.yaml)
+> [View This Playbook](../../playbooks/openshift-checks/certificate_expiry/longer-warning-period-json-results.yaml)