prakhar1985
2020-03-17 e27dae68422a41b36f1f3a7511e942d9d5a430cc
Git server added and empty git repo server role added (#1347)

8 files added
5 files modified
192 ■■■■■ changed files
ansible/configs/ansible-tower-implementation/default_vars.yml 11 ●●●●● patch | view | raw | blame | history
ansible/configs/ansible-tower-implementation/default_vars_osp.yml 3 ●●●● patch | view | raw | blame | history
ansible/configs/ansible-tower-implementation/files/hosts_template.j2 8 ●●●● patch | view | raw | blame | history
ansible/configs/ansible-tower-implementation/sample_vars_osp.yml 6 ●●●●● patch | view | raw | blame | history
ansible/configs/ansible-tower-implementation/software.yml 5 ●●●●● patch | view | raw | blame | history
ansible/roles/git-server-ssh/README.md 38 ●●●●● patch | view | raw | blame | history
ansible/roles/git-server-ssh/defaults/main.yml 5 ●●●●● patch | view | raw | blame | history
ansible/roles/git-server-ssh/handlers/main.yml 2 ●●●●● patch | view | raw | blame | history
ansible/roles/git-server-ssh/meta/main.yml 53 ●●●●● patch | view | raw | blame | history
ansible/roles/git-server-ssh/tasks/main.yml 52 ●●●●● patch | view | raw | blame | history
ansible/roles/git-server-ssh/tests/inventory 2 ●●●●● patch | view | raw | blame | history
ansible/roles/git-server-ssh/tests/test.yml 5 ●●●●● patch | view | raw | blame | history
ansible/roles/git-server-ssh/vars/main.yml 2 ●●●●● patch | view | raw | blame | history
ansible/configs/ansible-tower-implementation/default_vars.yml
@@ -46,15 +46,15 @@
install_bastion: true
install_common: true
install_ipa_client: false
install_ftl: false
install_ftl: true
tower_run: false
update_packages: false
update_packages: true
update_all_packages: false
install_satellite: True
configure_satellite: false
# This var is used to identify stack (cloudformation, azure resourcegroup, ...)
project_tag: "{{ env_type }}-{{ guid }}"
ansible_distribution_major_version: 7
ansible_distribution_major_version: "7"
rhel_repos:
  - rhel-7-server-rpms
@@ -75,5 +75,8 @@
cf_template_description: "{{ env_type }}-{{ guid }} Ansible Agnostic Deployer "
git_packages: git
git_project: my_webservers_DEV
git_user: git
git_authorized_keys: "{{output_dir}}/{{guid}}key.pub"
...
ansible/configs/ansible-tower-implementation/default_vars_osp.yml
@@ -5,6 +5,7 @@
cloud_provider: osp                               
install_student_user: false
install_common: true
ansible_user: cloud-user
@@ -139,7 +140,7 @@
      osp: "{{git_instance_type}}"
    tags:
      - key: "AnsibleGroup"
        value: "git"
        value: "gitserver"
      - key: "ostype"
        value: "rhel"
      - key: "instance_filter"
ansible/configs/ansible-tower-implementation/files/hosts_template.j2
@@ -32,9 +32,15 @@
{{host}} ansible_host={{hostvars[host].private_ip_address}}
{% endfor %}
[gitserver]
{% for host in groups['gitserver']  %}
{{host}} ansible_host={{hostvars[host].private_ip_address}}
{% endfor %}
[towerimp:children]
towers
servers
gitserver
[towerimp:vars]
timeout=60
@@ -42,4 +48,4 @@
ansible_user={{remote_user}}
ansible_ssh_private_key_file="~/.ssh/{{guid}}key.pem"
ansible_ssh_common_args="-o StrictHostKeyChecking=no"
{% endif %}
{% endif %}
ansible/configs/ansible-tower-implementation/sample_vars_osp.yml
@@ -7,3 +7,9 @@
guid: guid01
osp_cluster_dns_zone: red.osp.opentlc.com
####Git-server role related vars####
git_packages: git
git_project: my_webservers_DEV
git_user: git
git_authorized_keys: "{{output_dir}}/{{guid}}key.pub"
ansible/configs/ansible-tower-implementation/software.yml
@@ -7,6 +7,11 @@
    - debug:
        msg: "Software tasks Started"
- hosts: gitserver
  become: yes
  roles:
    - git-server-ssh
- name: Software flight-check
  hosts: localhost
  connection: local
ansible/roles/git-server-ssh/README.md
New file
@@ -0,0 +1,38 @@
Role Name
=========
A brief description of the role goes here.
Requirements
------------
Any pre-requisites that may not be covered by Ansible itself or the role should be mentioned here. For instance, if the role uses the EC2 module, it may be a good idea to mention in this section that the boto package is required.
Role Variables
--------------
A description of the settable variables for this role should go here, including any variables that are in defaults/main.yml, vars/main.yml, and any variables that can/should be set via parameters to the role. Any variables that are read from other roles and/or the global scope (ie. hostvars, group vars, etc.) should be mentioned here as well.
Dependencies
------------
A list of other roles hosted on Galaxy should go here, plus any details in regards to parameters that may need to be set for other roles, or variables that are used from other roles.
Example Playbook
----------------
Including an example of how to use your role (for instance, with variables passed in as parameters) is always nice for users too:
    - hosts: servers
      roles:
         - { role: username.rolename, x: 42 }
License
-------
BSD
Author Information
------------------
An optional section for the role authors to include contact information, or a website (HTML is not allowed).
ansible/roles/git-server-ssh/defaults/main.yml
New file
@@ -0,0 +1,5 @@
---
# defaults file for git-server-ssh
# list of packages to install to set up the Git server
    git_packages:
      - git
ansible/roles/git-server-ssh/handlers/main.yml
New file
@@ -0,0 +1,2 @@
---
# handlers file for git-server-ssh
ansible/roles/git-server-ssh/meta/main.yml
New file
@@ -0,0 +1,53 @@
galaxy_info:
  author: your name
  description: your description
  company: your company (optional)
  # If the issue tracker for your role is not on github, uncomment the
  # next line and provide a value
  # issue_tracker_url: http://example.com/issue/tracker
  # Choose a valid license ID from https://spdx.org - some suggested licenses:
  # - BSD-3-Clause (default)
  # - MIT
  # - GPL-2.0-or-later
  # - GPL-3.0-only
  # - Apache-2.0
  # - CC-BY-4.0
  license: license (GPL-2.0-or-later, MIT, etc)
  min_ansible_version: 2.4
  # If this a Container Enabled role, provide the minimum Ansible Container version.
  # min_ansible_container_version:
  #
  # Provide a list of supported platforms, and for each platform a list of versions.
  # If you don't wish to enumerate all versions for a particular platform, use 'all'.
  # To view available platforms and versions (or releases), visit:
  # https://galaxy.ansible.com/api/v1/platforms/
  #
  # platforms:
  # - name: Fedora
  #   versions:
  #   - all
  #   - 25
  # - name: SomePlatform
  #   versions:
  #   - all
  #   - 1.0
  #   - 7
  #   - 99.99
  galaxy_tags: []
    # List tags for your role here, one per line. A tag is a keyword that describes
    # and categorizes the role. Users find roles by searching for tags. Be sure to
    # remove the '[]' above, if you add tags to this list.
    #
    # NOTE: A tag is limited to a single word comprised of alphanumeric characters.
    #       Maximum 20 tags per role.
dependencies: []
  # List your role dependencies here, one per line. Be sure to remove the '[]' above,
  # if you add dependencies to this list.
ansible/roles/git-server-ssh/tasks/main.yml
New file
@@ -0,0 +1,52 @@
---
# tasks file for git-server-ssh
# Configures standard Git repository using SSH.
    - name: Packages for Git server up to date
      package:
        name: "{{ item }}"
        state: latest
      with_items: "{{ git_packages }}"
    - name: git-shell is in /etc/shells
      lineinfile:
        dest: /etc/shells
        line: /usr/bin/shell
    - name: git user exists and uses git-shell
      user:
        name: "{{ git_user }}"
        comment: "Git server"
        shell: /usr/bin/git-shell
    - name: SSH authorized_keys up to date
      authorized_key:
        user: "{{ git_user }}"
        state: present
        key: "{{ item }}"
      with_file:
          - "{{ git_authorized_keys }}"
      when: git_authorized_keys is defined
    # If the directory exists, we don't want to blow away its
    # contents, because it's probably got valid repo data in it!
    - name: Check Git project directory for existence
      stat:
        path: /home/{{ git_user }}/{{ git_project }}.git
      register: p
    # If the directory exists, we don't want to blow away its
    # contents, because it's probably got valid repo data in it!
    - name: Create empty {{ git_project }}.git bare repository if missing
      command: git init --bare /home/{{ git_user }}/{{ git_project }}.git
      when: not (p.stat.isdir is defined and p.stat.isdir)
    - name: Ensure {{ git_project }}.git owned by git
      file:
        path: /home/{{ git_user }}/{{ git_project }}.git
        owner: "{{ git_user }}"
        group: "{{ git_user }}"
        recurse: yes
        state: directory
ansible/roles/git-server-ssh/tests/inventory
New file
@@ -0,0 +1,2 @@
localhost
ansible/roles/git-server-ssh/tests/test.yml
New file
@@ -0,0 +1,5 @@
---
- hosts: localhost
  remote_user: root
  roles:
    - git-server-ssh
ansible/roles/git-server-ssh/vars/main.yml
New file
@@ -0,0 +1,2 @@
---
# vars file for git-server-ssh