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

Removed LXC and LXD providers (will be a plugin soon) #2329

Merged
merged 1 commit into from
Sep 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
7 changes: 0 additions & 7 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -348,13 +348,6 @@ jobs:
<<: *deploy-step
server: https://test.pypi.org/legacy/

addons:
apt:
packages:
- lxc
- lxc-dev
- lxd
- lxd-client
before_install:
- pip install tox-tags
script:
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ History
Unreleased
==========

* MAJOR: Removed LXC and LXD providers
* Supported Ansible versions are now 2.9, 2.8, 2.7
* The Linode driver now uses the ``linode_v4`` module.
* Removed goss verifier
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,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,hetznercloud,linode,lxc,openstack,vagrant,windows"
ENV MOLECULE_EXTRAS="azure,docker,docs,ec2,gce,hetznercloud,linode,openstack,vagrant,windows"

# https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=917006
RUN pip3 install -U wheel
Expand Down
12 changes: 0 additions & 12 deletions docs/configuration.rst
Original file line number Diff line number Diff line change
Expand Up @@ -114,18 +114,6 @@ Linode
.. autoclass:: molecule.driver.linode.Linode()
:undoc-members:

LXC
^^^

.. autoclass:: molecule.driver.lxc.LXC()
:undoc-members:

LXD
^^^

.. autoclass:: molecule.driver.lxd.LXD()
:undoc-members:

Openstack
^^^^^^^^^

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,16 +32,12 @@ platforms:
- name: instance
server_type: cx11
image: debian-9
{%- elif cookiecutter.driver_name == 'lxc' %}
- name: instance
{%- elif cookiecutter.driver_name == 'linode' %}
- name: instance
type: g6-nanode-1
state: present
region: eu-west
image: linode/debian9
{%- elif cookiecutter.driver_name == 'lxd' %}
- name: instance
{%- elif cookiecutter.driver_name == 'openstack' %}
- name: instance
image: Ubuntu-16.04
Expand Down
5 changes: 0 additions & 5 deletions molecule/cookiecutter/scenario/driver/lxc/cookiecutter.json

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

5 changes: 0 additions & 5 deletions molecule/cookiecutter/scenario/driver/lxd/cookiecutter.json

This file was deleted.

This file was deleted.

This file was deleted.

91 changes: 0 additions & 91 deletions molecule/driver/lxc.py

This file was deleted.

112 changes: 0 additions & 112 deletions molecule/driver/lxd.py

This file was deleted.

Loading