Skip to content
Snippets Groups Projects
Select Git revision
  • 71842ad9d8a99ce876caa1e6b944abe40dd64cb5
  • master default protected
  • v1.14.7
  • v1.14.6
  • v1.14.5
  • v1.14.4
  • v1.14.3
  • v1.14.2
  • v1.14.1
  • v1.14.0
  • v1.13.2
  • v1.13.1
  • v1.13.0
  • v1.12.1
  • v1.12.0
  • v1.11.1
  • v1.11.0
  • v1.10.0
  • v1.9.2
  • v1.9.1
  • v1.9.0
  • v1.8.4
22 results

README-privilege.md

Blame
    • Rafael Guterres Jeffman's avatar
      19a94ac4
      New privilege management module · 19a94ac4
      Rafael Guterres Jeffman authored
      There is a new privilege management module placed in the plugins folder:
      
          plugins/modules/ipaprivilege.py
      
      The privilege module allows to ensure presence or absence of privilege
      and manage privilege permission memebers.
      
      Here is the documentation for the module:
      
          README-privilege.md
      
      New example playbooks have been added:
      
          playbooks/privilege/privilege-absent.yml
          playbooks/privilege/privilege-member-absent.yml
          playbooks/privilege/privilege-member-present.yml
          playbooks/privilege/privilege-present.yml
      
      New tests for the module:
      
          tests/privilege/test_privilege.yml
      19a94ac4
      History
      New privilege management module
      Rafael Guterres Jeffman authored
      There is a new privilege management module placed in the plugins folder:
      
          plugins/modules/ipaprivilege.py
      
      The privilege module allows to ensure presence or absence of privilege
      and manage privilege permission memebers.
      
      Here is the documentation for the module:
      
          README-privilege.md
      
      New example playbooks have been added:
      
          playbooks/privilege/privilege-absent.yml
          playbooks/privilege/privilege-member-absent.yml
          playbooks/privilege/privilege-member-present.yml
          playbooks/privilege/privilege-present.yml
      
      New tests for the module:
      
          tests/privilege/test_privilege.yml
    Dockerfile 654 B
    FROM ubuntu:16.04
    
    RUN mkdir /kubespray
    WORKDIR /kubespray
    RUN apt update -y && \
        apt install -y \
        libssl-dev python-dev sshpass apt-transport-https \
        ca-certificates curl gnupg2 software-properties-common python-pip
    RUN  curl -fsSL https://download.docker.com/linux/ubuntu/gpg | apt-key add - && \
         add-apt-repository \
         "deb [arch=amd64] https://download.docker.com/linux/ubuntu \
         $(lsb_release -cs) \
         stable" \
         && apt update -y && apt-get install docker-ce -y
    COPY . .
    RUN /usr/bin/python -m pip install pip -U && /usr/bin/python -m pip install -r tests/requirements.txt && python -m pip install -r requirements.txt