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

v0.6 Hotfix: adding condition preventing load_balancer code from crashing (#1362) #1366

Merged
merged 1 commit into from
Jun 17, 2020
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
2 changes: 1 addition & 1 deletion CHANGELOG-0.3.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@
### Known issues

- Deployment/Application role fails because Kubernetes cluster is not ready after reboot. More info [here](https://github.com/epiphany-platform/epiphany/issues/407)
- Node_exporter ports are not present in defaults resulting in Prometheus not beeing able to scrape data with minimal cluster data.yaml. More info [here](https://github.com/epiphany-platform/epiphany/issues/410)
- Node_exporter ports are not present in defaults resulting in Prometheus not beeing able to scrape data with minimal cluster data.yaml. More info [here](https://github.com/epiphany-platform/epiphany/issues/410)
1 change: 1 addition & 0 deletions CHANGELOG-0.6.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

- [#1154](https://github.com/epiphany-platform/epiphany/issues/1154) - Node exporter is not installed on logging vms
- [#1183](https://github.com/epiphany-platform/epiphany/issues/1183) - Task 'Check if /etc/kubernetes/admin.conf file exists' fails when kubernetes\_master.count = 0
- [#1350](https://github.com/epiphany-platform/epiphany/issues/1350) - Cannot deploy a non-k8s cluster with load\_balancer vm

## [0.6.0] 2020-04-06

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ global

ssl-dh-param-file /etc/haproxy/dhparam


defaults
log global
mode http
Expand Down Expand Up @@ -73,7 +73,7 @@ backend {{ back.name }}
option tcp-check
mode tcp
{%- endif %}
{%- if back.server_groups is defined %}
{%- if back.server_groups is defined and back.server_groups is subset(groups) %}
{%- for server_group in back.server_groups %}
{%- for server in groups[server_group] %}
{%- if back.https is defined and back.https == True %}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ global

ssl-dh-param-file /etc/opt/rh/rh-haproxy18/haproxy/dhparam


defaults
log global
mode http
Expand Down Expand Up @@ -74,7 +74,7 @@ backend {{ back.name }}
option tcp-check
mode tcp
{%- endif %}
{%- if back.server_groups is defined %}
{%- if back.server_groups is defined and back.server_groups is subset(groups) %}
{%- for server_group in back.server_groups %}
{%- for server in groups[server_group] %}
{%- if back.https is defined and back.https == True %}
Expand Down