Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Jenkins pipeline #8

Closed
wants to merge 10 commits into from
Closed
13 changes: 13 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
sudo: false
git:
depth: 200
language: python
env:
- TOXENV=py27
- TOXENV=py3
- TOXENV=flake8
- TOXENV=tip-pycodestyle
- TOXENV=tip-pyflakes
install: pip install tox
script:
- tox
18 changes: 18 additions & 0 deletions Jenkinsfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
#!groovy

node {
stage ('Checkout') {
checkout scm
}
stage ('Build') {
echo "Building branch: ${env.BRANCH_NAME}"
sh 'make deb'
}
stage ('Test') {
echo 'Testing. py27'
}
stage ('Deploying') {
echo 'Deploying...'
}
}

49 changes: 49 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
==================================
Cloud-init unofficial project fork
==================================

.. image:: https://readthedocs.org/projects/cloudinit/badge/?version=latest
:target: http://cloudinit.readthedocs.io/en/latest/?badge=latest
:alt: Documentation Status

.. image:: https://travis-ci.org/blackboxsw/cloud-init.svg?branch=master
:target: https://travis-ci.org/blackboxsw/cloud-init

Cloud-init is a set of python scripts and utilities to make your cloud images be all they can be!

Summary
-------
Cloud-init is the defacto multi-distribution package that handles early initialization of a cloud instance.

Capabilities
------------
Cloud-init ‘s behavior can be configured via user-data which is given to the instance at launch time.

Availabilty
-----------
It is currently installed in the Ubuntu Cloud Images and also in the official Ubuntu images available on EC2, Azure, GCE and many other clouds.

Versions for other systems can be (or have been) created for the following distributions:

.. Ubuntu
.. Fedora
.. Debian
.. RHEL
.. CentOS
.. and more...

So ask your distribution provider where you can obtain an image with it built-in if one is not already available :smile:

Project details
---------------
* `Bugs`_ - issue tracking
* `Source`_
* `Testing`_ - Testing code
* `Blueprints`_ - Feature specs
* IRC: #cloud-init on Freenode (irc.freenode.net)

.. _Bugs: https://bugs.launchpad.net/cloud-init
.. _Source: https://github.com/cloud-init/cloud-init
.. _Blueprints: https://blueprints.launchpad.net/cloud-init
.. _Testing: https://cloudinit.readthedocs.io/en/latest/topics/tests.html