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

remove debian jessie as the docker image used for testing is no longer valid #2600

Merged
merged 1 commit into from
Dec 1, 2022
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 0 additions & 1 deletion deployments/ansible/roles/signalfx-agent/meta/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ galaxy_info:
- name: Debian
versions:
- stretch
- jessie
- name: Amazon
- name: Windows
galaxy_tags:
Expand Down
1 change: 0 additions & 1 deletion tests/deployments/ansible/ansible_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@
DOCKERFILES_DIR = Path(__file__).parent.joinpath("images").resolve()

DEB_DISTROS = [
("debian-8-jessie", INIT_SYSTEMD),
("debian-9-stretch", INIT_SYSTEMD),
("ubuntu1604", INIT_SYSTEMD),
("ubuntu1804", INIT_SYSTEMD),
Expand Down
31 changes: 0 additions & 31 deletions tests/deployments/ansible/images/Dockerfile.debian-8-jessie

This file was deleted.

3 changes: 1 addition & 2 deletions tests/deployments/chef/chef_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,6 @@
DOCKERFILES_DIR = SCRIPT_DIR / "images"

DEB_DISTROS = [
("debian-8-jessie", INIT_SYSTEMD),
("debian-9-stretch", INIT_SYSTEMD),
("ubuntu1404", INIT_UPSTART),
("ubuntu1604", INIT_SYSTEMD),
Expand Down Expand Up @@ -158,7 +157,7 @@ def test_chef(base_image, init_system, chef_version):
), "Datapoints didn't come through"

# downgrade agent for distros that support package downgrades
if base_image not in ("debian-7-wheezy", "debian-8-jessie", "ubuntu1404"):
if base_image not in ("debian-7-wheezy", "ubuntu1404"):
agent_version = INITIAL_VERSION
run_chef_client(cont, init_system, chef_version, agent_version, STAGE, monitors)
backend.reset_datapoints()
Expand Down
40 changes: 0 additions & 40 deletions tests/deployments/chef/images/Dockerfile.debian-8-jessie

This file was deleted.

31 changes: 0 additions & 31 deletions tests/deployments/puppet/images/Dockerfile.debian-8-jessie

This file was deleted.

1 change: 0 additions & 1 deletion tests/deployments/puppet/puppet_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@
APT_MODULE_VERSION = "7.0.0"

DEB_DISTROS = [
("debian-8-jessie", INIT_SYSTEMD),
("debian-9-stretch", INIT_SYSTEMD),
("ubuntu1404", INIT_UPSTART),
("ubuntu1604", INIT_SYSTEMD),
Expand Down
31 changes: 0 additions & 31 deletions tests/deployments/salt/images/Dockerfile.debian-8-jessie

This file was deleted.

1 change: 0 additions & 1 deletion tests/deployments/salt/salt_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@
DOCKERFILES_DIR = Path(__file__).parent.joinpath("images").resolve()

DEB_DISTROS = [
("debian-8-jessie", INIT_SYSTEMD),
("debian-9-stretch", INIT_SYSTEMD),
("ubuntu1804", INIT_SYSTEMD),
]
Expand Down
27 changes: 0 additions & 27 deletions tests/packaging/images/Dockerfile.debian-8-jessie

This file was deleted.

1 change: 0 additions & 1 deletion tests/packaging/installer_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@
pytestmark = pytest.mark.installer

DEB_DISTROS = [
("debian-8-jessie", INIT_SYSTEMD),
("debian-9-stretch", INIT_SYSTEMD),
("ubuntu1404", INIT_UPSTART),
("ubuntu1604", INIT_SYSTEMD),
Expand Down
2 changes: 0 additions & 2 deletions tests/packaging/package_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -410,7 +410,6 @@ def test_rpm_package(base_image, init_system):
@pytest.mark.parametrize(
"base_image,init_system",
[
("debian-8-jessie", INIT_SYSTEMD),
("debian-9-stretch", INIT_SYSTEMD),
("ubuntu1404", INIT_UPSTART),
("ubuntu1604", INIT_SYSTEMD),
Expand Down Expand Up @@ -442,7 +441,6 @@ def test_rpm_package_upgrade(base_image, init_system):
@pytest.mark.parametrize(
"base_image,init_system",
[
("debian-8-jessie", INIT_SYSTEMD),
("debian-9-stretch", INIT_SYSTEMD),
("ubuntu1404", INIT_UPSTART),
("ubuntu1604", INIT_SYSTEMD),
Expand Down