Rationale, cribbed from Matt Farina's [similar PR to kubernetes/charts](59472e8163)
> The previous version of the sync script ran `helm dep update` which
would recreate the requirements.lock file. This caused new builds
of charts as a total package with different versions of dependencies
but the same chart version. The package was mutating.
>
> This change works towards our goal of immutable charts for a chart
at a version.
ACS Engine provisioned cluster already had Helm installed (message below)
```
helm init --service-account tiller
$HELM_HOME has been configured at /Users/sabbour/.helm.
Warning: Tiller is already installed in the cluster.
```
However, the tiller installed was an older version
```
helm install svc-cat/catalog --name catalog --namespace catalog
Error: incompatible versions client[v2.7.2] server[v2.6.2]
```
Proposed solution is to upgrade tiller by running:
```
helm init --upgrade
```
* Updating chart to use public image
Fixes#66
* Updating charts to provide firewall start/end ranges.
Due to changes for https://github.com/Azure/open-service-broker-azure/issues/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.
* Updating chart to use public image
Fixes#66
* Refactor of the phpbb chart
* change default plan from standard800 to standard100
* refactored to add conditional checks for mysql.embeddedMaria
- previously we always provisioned, even with embeddedMaria
- added logic to support local deployment
* newer bitnami phpbb image didn't work with older mariadb
- version increased to 1.0.5
* added parameter overrides to make the chart in line with ghost, drupal
and wordpress with new version of mariadb
* Readme updates
Fixes: #92
* Formatting
* Review comments.
* minor formatting fixes
* make azure location and service plan configurable
* change default mysql service plan to standard100
* fix embedded mariadb option
* fix notes typo
* bump chart version
* Updating chart to use public image
Fixes#66
* Changing the liveness and readiness probe initial delay.
When running on Minikube, the default values are less than the initial
configuratin time, resulting in a failure to ever properly start
Fixes#80
* Reverted the readiness initial delay
* refactor drupal chart
- Fix embedded MariaDB option (wasn't working)
- Minimize differences with Drupal chart in k8s/charts
- Maximize similarity to other charts in this repo in terms of
how Azure-specific things are handled.
- Fix errant reference to Wordpress
* increase initial delay on liveness check
* change default serviceplan to standard100
* Updating chart to use public image
Fixes#66
* Add note to README about worker replicas
After running the quick start (and removing wordpress), the minikube
wasn't able to schedule all the workers defined by the default
chart values. Added a note to indicate the user could specify one
when running on minikube.
Fixes#77
* Updating chart to use public image
Fixes#66
* Update README to reference MK bug.
Fixes: #73
* MArkdown change
* Fixing indentation to be consistent
* Highlighting
* Updating chart to use public image
Fixes#66
* Update docker tag for osba version 0.4.0-alpha and minStability level
Fixes#68
* Bump minor version and added explicit version tag to README
* Bump minor version, appVersion added to Chart and added explicit version tag to README
* Change impage pull policy and small change to version in docs and appVersion field