diff --git a/concourse/Chart.yaml b/concourse/Chart.yaml index 97d19f7..94009cb 100644 --- a/concourse/Chart.yaml +++ b/concourse/Chart.yaml @@ -1,5 +1,5 @@ name: concourse -version: 0.2.0 +version: 0.3.0 appVersion: 3.5.0 description: Concourse is a simple and scalable CI system. icon: https://avatars1.githubusercontent.com/u/7809479 diff --git a/concourse/templates/postgresql-instance.yaml b/concourse/templates/postgresql-instance.yaml index 651b9c4..812f939 100644 --- a/concourse/templates/postgresql-instance.yaml +++ b/concourse/templates/postgresql-instance.yaml @@ -9,12 +9,14 @@ metadata: release: "{{ .Release.Name }}" heritage: "{{ .Release.Service }}" spec: - clusterServiceClassExternalName: azure-postgresqldb + clusterServiceClassExternalName: azure-postgresql clusterServicePlanExternalName: {{ .Values.postgresql.azure.servicePlan }} parameters: location: {{ .Values.postgresql.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 }}