Revert "Add stunnel container for Glance service"

This reverts commit 935adb5913.

It seems we cannot use stunnel on Ubuntu because
of no support for current OpenSSL. See [1].

We have some alternatives to replace stunnel:
- HAProxy (image ready; in progress)
- Apache2 (only embedded, no image)
- Nginx (possibly in the future)

[1] https://review.opendev.org/707131

Change-Id: If1140b293423ad3173cb3a4e1f19abbfecdaf2f6
This commit is contained in:
Radosław Piliszek
2020-04-26 19:06:37 +00:00
parent 63a5504891
commit 04f24b7bb1
4 changed files with 0 additions and 21 deletions

View File

@@ -78,7 +78,6 @@ sensu (deprecated),C,C,N,N,N,N
skydive,N,N,N,N,N,N
solum,N,C,N,C,N,C
storm,C,C,C,C,N,C
stunnel,C,C,C,C,C,C
swift,C,C,C,C,N,C
tacker,C,C,N,C,N,C
telegraf,N,N,N,N,N,N
1 Image,CentOS,,Ubuntu,,Debian
78 skydive,N,N,N,N,N,N
79 solum,N,C,N,C,N,C
80 storm,C,C,C,C,N,C
stunnel,C,C,C,C,C,C
81 swift,C,C,C,C,N,C
82 tacker,C,C,N,C,N,C
83 telegraf,N,N,N,N,N,N

View File

@@ -80,7 +80,6 @@ sensu (deprecated),C,C,C,C,N,N
skydive,C,C,C,C,N,C
solum,N,C,N,C,N,C
storm,C,C,C,C,N,C
stunnel,C,C,C,C,C,C
swift,C,T,C,T,N,C
tacker,C,T,N,C,N,C
telegraf,C,C,C,C,N,N
1 Image,CentOS,,Ubuntu,,Debian
80 skydive,C,C,C,C,N,C
81 solum,N,C,N,C,N,C
82 storm,C,C,C,C,N,C
stunnel,C,C,C,C,C,C
83 swift,C,T,C,T,N,C
84 tacker,C,T,N,C,N,C
85 telegraf,C,C,C,C,N,N

View File

@@ -1,15 +0,0 @@
FROM {{ namespace }}/{{ image_prefix }}base:{{ tag }}
{% block labels %}
LABEL maintainer="{{ maintainer }}" name="{{ image_name }}" build-date="{{ build_date }}"
{% endblock %}
{% block stunnel_header %}{% endblock %}
{% import "macros.j2" as macros with context %}
{% set stunnel_packages = ['stunnel'] %}
{{ macros.install_packages(stunnel_packages | customizable("packages")) }}
{% block stunnel_footer %}{% endblock %}
{% block footer %}{% endblock %}

View File

@@ -1,4 +0,0 @@
---
features:
- Adds stunnel container image initially to provide ssl termination for
Glance (eventlet).