Skip to content

Commit

Permalink
0.2.3 release (#262)
Browse files Browse the repository at this point in the history
* adding smoke tests for kubernetes

* Quick fix to the counting function

* Regex fix to the 'should match' assertion

* A few fixes after review

* Added smoke tests for kafka

* A few fixes after testing on ubuntu

* Fixes after review

* Fixes after review

* Item: #103 Desc: Remove unused nginx role. (#112)

* Item: #103 Desc: Remove unused nginx role.

* Removed ansible-role-nginx license from License.md

as it is no longer used.

* Design doc for cli part

* Updated affected version

* Typo fix

* Azure single machine (#116)

* Azure and metal single machine and updates.

* Inclusion of deployment role for auth-service.

* Fixed file version nr.

* Fixes for comments

* Item: #24 Desc: Add information to how-to how configure manually fede… (#119)

* Item: #24 Desc: Add information to how to how configure manually federation of Prometheus instances

* Item: #24 Desc: Changes after review.

* Retry install packages task when failes (#131)

* make it a little bit more comprehensible for general public (#133)

* Update RHEL image to version 7.6.2018103108 (#132)

* Refactoring after review

* Added condition to check if zookeper is running in standalone mode

* Added deletion of topics at the end of tests

* Changed assertions for HTTP status codes

* Typo correction

* Design doc proposal for AWS support

* Not public IPs info

* Added smoke tests for HAProxy

* Add JMX Exporter configuration for standalone ZooKeeper (#137)

* Context diagram for Epiphany Platform

* Web example application

* Fix ZooKeeper distribution URL (#150)

* Fixes after review

* Typo correction

* Changed assertion for HAProxy log file

* Item: #0000 Desc: Add port to python3 of template_engine (#151)

* Item: #0000 Desc: Add port to python3 of template_engine

* Item: #0000 Desc: Fixes according to pull request.

* Added smoke tests for logging (#152)

* Added smoke tests for logging

* Added smoke tests for monitoring (#158)

Added smoke tests for monitoring

* Added documentation for single machine cluster. (#160)

* Added smoke tests for RabbitMQ (#165)

* Added smoke tests for deployments (#170)

* Added smoke tests for PostgreSQL (#186)

* RabbitMQ tests fix (#187)

* Bumped alpine version to fix GCC error and fixed yaml.load warning (#207)

* Added Dockerfile to create a Docker container image for test environment (#208)

* Fixed bundler version (#210)

* Added missing ruby package (#211)

* Setting the SSH key format to PEM (#214)

*  Changing build configuration for CI release (#217)

* Kafka, Elk and IoTHub connectors - example apps (#224)

* Uploading Wiki Testing documentation, describing mapping in TestQuality tool (#219)

* Test fix- waiting for pods to be ready (#259)

* Fix/example vulnerability fixes (#261)

* Fixed python security issues and added changelog for 0.2.2.

* Fixed missing changelog

* Version fix.

* Creating template for QA (#260)
  • Loading branch information
seriva authored May 21, 2019
1 parent b209d9a commit cf907a5
Show file tree
Hide file tree
Showing 104 changed files with 5,762 additions and 856 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG-0.2.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog 0.2

## [0.2.3] 2019-05-20

### Fixed

- Fixed vulnerability in Docker development image
- Upgraded Keycloak Python examples to python 3.7.2

## [0.2.2] 2019-03-29

### Added
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## Current release

- [CHANGELOG-0.2.3](./CHANGELOG-0.2.md#023-2019-05-20)
- [CHANGELOG-0.2.2](./CHANGELOG-0.2.md#022-2019-03-29)
- [CHANGELOG-0.2.1](./CHANGELOG-0.2.md#021-2019-03-07)
- [CHANGELOG-0.2.0](./CHANGELOG-0.2.md#020-2019-02-19)

Expand Down
27 changes: 0 additions & 27 deletions LICENSES.md
Original file line number Diff line number Diff line change
@@ -1,32 +1,5 @@
# Licenses of Epiphany dependencies

## ansible-role-nginx

[Github repository](https://github.com/geerlingguy/ansible-role-nginx/)

```
The MIT License (MIT)
Copyright (c) 2017 Jeff Geerling
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
the Software, and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
```

## flannel

[Github repository](https://github.com/coreos/flannel/)
Expand Down
2 changes: 1 addition & 1 deletion core/bin/template_engine
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ def render_template(data_file, in_file, out_file, json_arg, yaml_arg):
env.filters['jsonify'] = json.dumps

with open(data_file) as data:
dict = yaml.load(data)
dict = yaml.load(data, Loader=yaml.FullLoader)

# Render template and print generated config to console
template = env.get_template(in_file)
Expand Down
6 changes: 5 additions & 1 deletion core/core/src/ansible/roles/common/tasks/RedHat.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
gpgcheck: yes
gpgkey: https://packages.cloud.google.com/yum/doc/yum-key.gpg https://packages.cloud.google.com/yum/doc/rpm-package-key.gpg

- name: Install redhat family packages
- name: Install RedHat family packages
yum:
name:
- libselinux-python
Expand Down Expand Up @@ -47,6 +47,10 @@
- telnet
update_cache: yes
state: present
register: result
retries: 3
delay: 1
until: result is succeeded

- name: Append prompt to .bash_profile
lineinfile:
Expand Down
111 changes: 0 additions & 111 deletions core/core/src/ansible/roles/reverse-proxy-nginx/defaults/main.yml

This file was deleted.

24 changes: 0 additions & 24 deletions core/core/src/ansible/roles/reverse-proxy-nginx/handlers/main.yml

This file was deleted.

10 changes: 0 additions & 10 deletions core/core/src/ansible/roles/reverse-proxy-nginx/tasks/Debian.yml

This file was deleted.

56 changes: 0 additions & 56 deletions core/core/src/ansible/roles/reverse-proxy-nginx/tasks/RedHat.yml

This file was deleted.

14 changes: 0 additions & 14 deletions core/core/src/ansible/roles/reverse-proxy-nginx/tasks/Ubuntu.yml

This file was deleted.

19 changes: 0 additions & 19 deletions core/core/src/ansible/roles/reverse-proxy-nginx/tasks/main.yml

This file was deleted.

This file was deleted.

Loading

0 comments on commit cf907a5

Please sign in to comment.