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

Moved linode driver to molecule-linode #2403

Merged
merged 1 commit into from
Oct 25, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ Unreleased
* MAJOR: Dockerfile templates are now embedded in molecule.
* MINOR: Fixed typo with OVERRIDDEN placeholder in templates
* Supported Ansible versions are now 2.9, 2.8, 2.7
* The Linode driver now uses the ``linode_v4`` module.
* Removed goss verifier
* dependency now runs before lint on default test and lint sequences
* ANSIBLE_ROLES_PATH, ANSIBLE_LIBRARY, ANSIBLE_FILTER_PLUGINS now include the default Ansible lookup paths
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ ENV PACKAGES="\
"
RUN apk add --update --no-cache --repository http://dl-3.alpinelinux.org/alpine/edge/testing/ ${PACKAGES}

ENV MOLECULE_EXTRAS="azure,docker,docs,ec2,gce,linode,openstack,vagrant,windows"
ENV MOLECULE_EXTRAS="azure,docker,docs,ec2,gce,openstack,vagrant,windows"

# https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=917006
RUN pip3 install -U wheel
Expand Down Expand Up @@ -132,7 +132,7 @@ ENV GEM_PACKAGES="\
etc \
"

ENV MOLECULE_EXTRAS="azure,docker,docs,ec2,gce,linode,lxc,openstack,vagrant,windows"
ENV MOLECULE_EXTRAS="azure,docker,docs,ec2,gce,lxc,openstack,vagrant,windows"

RUN \
apk add --update --no-cache --repository http://dl-3.alpinelinux.org/alpine/edge/testing/ ${BUILD_DEPS} ${PACKAGES} \
Expand Down
8 changes: 0 additions & 8 deletions docs/configuration.rst
Original file line number Diff line number Diff line change
Expand Up @@ -91,14 +91,6 @@ GCE
.. autoclass:: molecule.driver.gce.GCE()
:undoc-members:

.. _linode-driver:

Linode
^^^^^^

.. autoclass:: molecule.driver.linode.Linode()
:undoc-members:

Openstack
^^^^^^^^^

Expand Down
4 changes: 2 additions & 2 deletions docs/getting-started.rst
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,8 @@ keys represent the high level components that Molecule provides. These are:

* The :ref:`driver` provider. Molecule uses `Docker`_ by default. Molecule uses
the driver to delegate the task of creating instances. There are many
providers such as :ref:`ec2-driver`, :ref:`gce-driver`
and :ref:`linode-driver`. Under the hood, it's all Ansible modules.
providers such as :ref:`ec2-driver`, :ref:`gce-driver`. Under the hood,
it's all Ansible modules.

* The :ref:`linters` provider. Molecule uses :std:doc:`Yamllint
<yamllint:index>` by default to ensure that best practices are encouraged
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,6 @@ platforms:
zone: us-west1-a
machine_type: f1-micro
image: debian-8
{%- elif cookiecutter.driver_name == 'linode' %}
- name: instance
type: g6-nanode-1
state: present
region: eu-west
image: linode/debian9
{%- elif cookiecutter.driver_name == 'openstack' %}
- name: instance
image: Ubuntu-16.04
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

166 changes: 0 additions & 166 deletions molecule/driver/linode.py

This file was deleted.

Loading