ansible_role_proxyclient

Ansible role proxy client

Ensure access to environment proxy values.

Build Status

License

MIT / BSD

Author Information

Requirements

  • Ensure privileged permissions are set for the user executing this role to:
    • Edit global environment files

Dependencies

N/A

Compatibility

Compatible with the following list of operating systems:

  • CentOS 7
  • CentOS 8
  • RHEL 7.x
  • RHEL 8.x

Role Variables

Variable name Description
role_proxyclient_environment_variable_list List of proxy environment variables.

Example Playbook

---
- name: Ensure access to environment proxy values
  become: True
  gather_facts: False
  roles:
   - role: ansible_role_proxyclient

...

Useful shell commands

During deployment a file /etc/profile.d/proxyclient.sh is placed on the remote global user profile directory. It gets loaded upon a successful login by any authorized user process. Once it gets loaded, the following commands are made available to switch the variables on and off from the user perspective.

$ setproxy

$ unsetproxy

Example output:

function setproxy(){
    export http_proxy="http://proxy.example.com:8080"
    export HTTP_PROXY="http://proxy.example.com:8080"
    export https_proxy="http://proxy.example.com:8080"
    export HTTPS_PROXY="http://proxy.example.com:8080"
    export ftp_proxy="http://proxy.example.com:8080"
    export FTP_PROXY="http://proxy.example.com:8080"
    export no_proxy="http://something.example.com:8080"
    export NO_PROXY="http://something.example.com:8080"
}

function unsetproxy(){
    unset http_proxy
    unset HTTP_PROXY
    unset https_proxy
    unset HTTPS_PROXY
    unset ftp_proxy
    unset FTP_PROXY
    unset no_proxy
    unset NO_PROXY
}

Actual environment values:

[user@host /]$ env | grep -i proxy

NO_PROXY=http://something.example.com:8080
http_proxy=http://proxy.example.com:8080
FTP_PROXY=http://proxy.example.com:8080
ftp_proxy=http://proxy.example.com:8080
HTTPS_PROXY=http://proxy.example.com:8080
https_proxy=http://proxy.example.com:8080
no_proxy=http://something.example.com:8080
HTTP_PROXY=http://proxy.example.com:8080

Additional documentation resources

N/A

Testing with Molecule

This role is locally tested with the use of Molecule, the configuration is located at: molecule/default.
The Molecule tests are run (using the docker driver) on Dockerhub images built for this purpose:

Some specific configurations might require a full OS instead of a minimal container image. In these use-cases make use of molecule driver for vagrant with the libvirt provider. The Molecule driver and platform configuration part could look something like this:

driver:
  name: vagrant
  provider:
    name: libvirt
platforms:
  - name: ansible_role_proxyclient-ansible-molecule-centos-7
    box: centos/7
    imemory: 1024
    cpus: 1

CI/CD with Travis CI

This role uses Travis CI to run online tests with the use of Molecule and pushes notifications to import the role into Ansible Galaxy once the tests are successful. The Travis CI configuration is located at the root of the Ansible role .travis.yml

About

Ensure access to environment proxy values.

Install
ansible-galaxy install Caseraw/ansible_role_proxyclient
GitHub repository
License
Unknown
Downloads
26
Owner
DevOps | RHCA | Red Hat Accelerator