Skip to content

Commit

Permalink
Updating charts to provide firewall start/end ranges.
Browse files Browse the repository at this point in the history
Due to changes for Azure/open-service-broker-azure#146
we need to specify firewall rules if the service will be used outside of Azure
as is the case when running minikube. Previous default was 0.0.0.0 to 255.255.255.255
so those values are used here.
  • Loading branch information
jeremyrickard committed Dec 15, 2017
1 parent 9f4fce3 commit 94d5979
Show file tree
Hide file tree
Showing 10 changed files with 15 additions and 5 deletions.
2 changes: 1 addition & 1 deletion concourse/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: concourse
version: 0.1.0
version: 0.2.0
appVersion: 3.5.0
description: Concourse is a simple and scalable CI system.
icon: https://avatars1.githubusercontent.com/u/7809479
Expand Down
2 changes: 2 additions & 0 deletions concourse/templates/postgresql-instance.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,6 @@ spec:
location: {{ .Values.postgresql.azure.location }}
resourceGroup: {{ .Release.Namespace }}
sslEnforcement: disabled
firewallStartIPAddress: 0.0.0.0
firewallEndIPAddress: 255.255.255.255
{{- end }}
2 changes: 1 addition & 1 deletion drupal/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: drupal
version: 0.12.0
version: 0.13.0
appVersion: 8.4.2
description: One of the most versatile open source content management systems.
keywords:
Expand Down
2 changes: 2 additions & 0 deletions drupal/templates/mysql-instance.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,6 @@ spec:
location: {{ .Values.mysql.azure.location }}
resourceGroup: {{ .Release.Namespace }}
sslEnforcement: disabled
firewallStartIPAddress: 0.0.0.0
firewallEndIPAddress: 255.255.255.255
{{- end }}
2 changes: 1 addition & 1 deletion ghost/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: ghost
version: 0.2.0
version: 0.3.0
appVersion: 1.17.3
description: A simple, powerful publishing platform that allows you to share your stories with the world
keywords:
Expand Down
2 changes: 2 additions & 0 deletions ghost/templates/mysql-instance.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,6 @@ spec:
location: {{ .Values.mysql.azure.location }}
resourceGroup: {{ .Release.Namespace }}
sslEnforcement: disabled
firewallStartIPAddress: 0.0.0.0
firewallEndIPAddress: 255.255.255.255
{{- end }}
2 changes: 1 addition & 1 deletion phpbb/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: phpbb
version: 0.2.0
version: 0.3.0
appVersion: 3.2.1-r2
description: Community forum that supports the notion of users and groups, file attachments,
full-text search, notifications and more.
Expand Down
2 changes: 2 additions & 0 deletions phpbb/templates/mysql-instance.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,6 @@ spec:
location: "{{ .Values.mysql.azure.location }}"
resourceGroup: {{ .Release.Namespace }}
sslEnforcement: disabled
firewallStartIPAddress: 0.0.0.0
firewallEndIPAddress: 255.255.255.255
{{- end }}
2 changes: 1 addition & 1 deletion wordpress/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: wordpress
version: 0.2.0
version: 0.3.0
appVersion: 4.8.1
description: Web publishing platform for building blogs and websites.
icon: https://bitnami.com/assets/stacks/wordpress/img/wordpress-stack-220x234.png
Expand Down
2 changes: 2 additions & 0 deletions wordpress/templates/mysql-instance.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,6 @@ spec:
location: {{ .Values.mysql.azure.location }}
resourceGroup: {{ .Release.Namespace }}
sslEnforcement: disabled
firewallStartIPAddress: 0.0.0.0
firewallEndIPAddress: 255.255.255.255
{{- end }}

0 comments on commit 94d5979

Please sign in to comment.