0/3 threads resolved
changed milestone to %sprint: Interesting Iguana
changed title from Chore/docs updates to (WIP) Chore/docs updates
49 49 ./helm-charts/minds 50 50 ``` 51 51 52 ### Managing settings on the Review Apps 53 54 When a pod gets deployed, it runs the installer which creates the default settings.php from the settings.example.php. However, the helm charts override those values with the template that is in our [Helm charts](https://gitlab.com/minds/helm-charts) - Owner
Installer no longer writes the settings.php (I don' think). Its handled by the K8S
templates/configMap.yaml
79 You can test your *local changes* and manipulate the staging environments by using the helm-charts repo. Create your branch, make your changes and then, inside your helm-charts repository branch, run: 80 81 ``` 82 helm upgrade --reuse-values --wait 83 {your.staging.site.subdomain} ./minds 84 ``` 85 86 This will apply your template to the staging pod's configuration using your local changes. 87 88 Then you must restart the pod by finding its name and deleting it. 89 90 ``` 91 kubectl get pods | grep {your.staging.site.subdomain} 92 kubectl delete pod/{your.staging.site.subdomain}-minds-runners-{generated.suffix.returned.by.grep} 93 kubectl detete pod/{your.staging.site.subdomain}-minds-php-fpm-{generated.suffix.returned.by.grep} 94 ``` - Owner
helm charts can be deleted by
helm del --purge my-release-name
1 --- 2 id: unit-testing - Owner
potential to merge with https://gitlab.com/minds/oss-website/blob/master/docs/guides/backend.md#spec-tests?