Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/miquido/ansible-teamcity-build-agent
The project was made by Miquido. https://www.miquido.com/
https://github.com/miquido/ansible-teamcity-build-agent
Last synced: 20 days ago
JSON representation
The project was made by Miquido. https://www.miquido.com/
- Host: GitHub
- URL: https://github.com/miquido/ansible-teamcity-build-agent
- Owner: miquido
- License: mit
- Created: 2019-01-15T13:36:22.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2019-09-04T12:48:54.000Z (over 5 years ago)
- Last Synced: 2024-11-09T11:34:59.730Z (3 months ago)
- Language: Python
- Homepage:
- Size: 20.5 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ansible-teamcity-build-agent
[![Build Status](https://www.travis-ci.org/miquido/ansible-teamcity-build-agent.svg?branch=master)](https://www.travis-ci.org/miquido/ansible-teamcity-build-agent)
[![License](https://img.shields.io/badge/license-MIT%20License-brightgreen.svg)](https://opensource.org/licenses/MIT)
[![Twitter URL](https://img.shields.io/twitter/follow/miquido.svg?style=social&label=Follow%20%40Miquido)](https://twitter.com/miquido)## Synopsis
Installing and configuring a TeamCity agent.
## Requirements
You need to have installed Java.
## Variables
Protocol using to connect with TeamCity server:
```
teamcity_agent_server_url_protocol: http
```TeamCity server address:
```
teamcity_agent_server_url: localhost
```TeamCity build agent install directory:
```
teamcity_agent_install_dir: /opt/buildAgent
```TeamCity administrator user:
```
teamcity_server_user_name: teamcity
```TeamCity administrator password:
```
teamcity_server_user_passwd: teamcity
```## Usage
```
---- hosts: all
become: yes
roles:
- ansible-teamcity-build-agent
```## Test the role
Use your shell and put
```
molecule test
```