Skip to content
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
8 changes: 4 additions & 4 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,10 @@ to mark breaking, major and minor code changes in accordance with the
specific keyword (i.e. `docs`, `style`, `feat`, `fix`, `refactor`, `ci`,
`chore` or `test`)
- Value is communicated to the end-users by three of the prefixes:
- `fix:` Patches a bug in your codebase.
- `feat:` Introduces a new feature to the codebase.
- `BREAKING CHANGE:` Introduces a breaking API change. A
`BREAKING CHANGE` can be part of commits of any type.
- `fix`: Patches a bug in your codebase.
- `feat`: Introduces a new feature to the codebase.
- `BREAKING CHANGE`: Introduces a breaking API change. A
`BREAKING CHANGE` can be part of commits of any type (see an [example commit message](https://github.com/ewcloud/ewc-flavours/commit/7c43a7975bb18ff999c85bd0f85353698472fc0d)).

## Reporting Security Vulnerabilities

Expand Down
30 changes: 13 additions & 17 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ to reach the virtual machine you wish to configure:
---
ewcloud:
hosts:
ha_proxy:
haproxy:
ansible_python_interpreter: /usr/bin/python3
ansible_host: <add the IPV4 address of the target host>
ansible_ssh_private_key_file: <add the path to local SSH RSA private key file>
Expand All @@ -68,7 +68,7 @@ Then, proceed to create an Ansible Playbook file to load your customizations:
# playbook.yml
---
- name: Install HAProxy
hosts: ha_proxy
hosts: haproxy
become: true
become_user: root
become_method: ansible.builtin.sudo
Expand All @@ -90,21 +90,17 @@ ansible-playbook -i inventory.yml playbook.yml
|------|-------------|------|---------|----------|
| os_security_group_name | OpenStack security group containing all firewall rules required for HAProxy operation. Example: `ssh-http-https` | `string` | n/a | yes |

## SW Bill of Materials (SBoM)

Third-party components used in the resulting environment.

### Ubuntu 22.04 Environment

The following components will be included in the resulting environment:

| Component | Version | License | Home URL |
|------|---------|---------|--------------|
| docker-ce | 28.3 | Apache-2.0 | https://github.com/docker-archive/docker-ce |
| docker-ce-cli | 28.3 | Apache-2.0 | https://github.com/docker/cli |
| containerd.io | 1.7 | Apache-2.0 | https://github.com/containerd/containerd |
| docker-compose-plugin | 2.39 | Apache-2.0 | https://github.com/docker/compose |
| haproxy | 2.2 | Apache-2.0 | https://hub.docker.com/r/thingsboard/haproxy-certbot |
# Dependencies
> 💡 Upon execution, a SBOM (SPDX format) is auto-generated and stored in the VM's file system root directory (see `/sbom.json`).
The following third-party components will be included in the resulting environment:

| Component | Home URL |
|------|---------|
| docker-ce | https://github.com/moby/moby |
| docker-ce-cli | https://github.com/docker/cli |
| containerd.io | https://github.com/containerd/containerd |
| docker-compose-plugin | https://github.com/docker/compose |
| haproxy | https://hub.docker.com/r/thingsboard/haproxy-certbot |

## Changelog
All notable changes (i.e. fixes, features and breaking changes) are documented
Expand Down
Loading