From 8843665b627a3ab84ca4004e96b84759d821d067 Mon Sep 17 00:00:00 2001 From: Jeremy Rickard Date: Mon, 5 Mar 2018 11:55:28 -0700 Subject: [PATCH] Udpate phpbb to use the new service and firewall rules in obsa v0.9.0 (#119) --- phpbb/Chart.yaml | 2 +- phpbb/templates/mysql-instance.yaml | 8 +++++--- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/phpbb/Chart.yaml b/phpbb/Chart.yaml index 4a6f30e..a2a6d5b 100644 --- a/phpbb/Chart.yaml +++ b/phpbb/Chart.yaml @@ -1,5 +1,5 @@ name: phpbb -version: 0.3.0 +version: 0.4.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. diff --git a/phpbb/templates/mysql-instance.yaml b/phpbb/templates/mysql-instance.yaml index 008aed0..9814d8a 100644 --- a/phpbb/templates/mysql-instance.yaml +++ b/phpbb/templates/mysql-instance.yaml @@ -9,12 +9,14 @@ metadata: release: "{{ .Release.Name }}" heritage: "{{ .Release.Service }}" spec: - clusterServiceClassExternalName: azure-mysqldb + clusterServiceClassExternalName: azure-mysql clusterServicePlanExternalName: "{{ .Values.mysql.azure.servicePlan }}" parameters: location: "{{ .Values.mysql.azure.location }}" resourceGroup: {{ .Release.Namespace }} sslEnforcement: disabled - firewallStartIPAddress: 0.0.0.0 - firewallEndIPAddress: 255.255.255.255 + firewallRules: + - startIPAddress: "0.0.0.0" + endIPAddress: "255.255.255.255" + name: "AllowAll" {{- end }}