Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/slt 122 custngx #12

Closed
wants to merge 23 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
0ad45b9
use plain woodby php
gatis Aug 23, 2018
0617664
SLT-97: Postinstall command
Jancis Aug 9, 2018
a52af67
SLT-97: Multiple commands via args and sh; File mount; Env import;
Jancis Aug 15, 2018
f99e3de
SLT-97: Checking existing installation. Do site-install if bootstrap …
Jancis Aug 15, 2018
9e750f5
SLT-97: We don't specify root, so let's just drush commands within we…
Jancis Aug 15, 2018
dcffbd9
SLT-97: Lando config for launching a local project instance
Jancis Aug 16, 2018
a5e7d97
SLT-97: Installs minimal site when config import fails. This might no…
Jancis Aug 16, 2018
fb7245f
SLT-97: htaccess for conf folder
Jancis Aug 16, 2018
2393bb0
SLT-97: wdr dev hostname for ingress
Jancis Aug 16, 2018
b8e3aff
SLT-97: Site developers will put this file in place themselves. We do…
Jancis Aug 17, 2018
f54a903
SLT-97: Ingress adjustments so that backend is available on IP too
Jancis Aug 17, 2018
878dfc0
SLT-97: HASH_SALT added to post-install job; hook changed from post-i…
Jancis Aug 23, 2018
90dfc0b
Revert "SLT-97: HASH_SALT added to post-install job; hook changed fro…
gatis Sep 25, 2018
920860d
Revert "SLT-97: Ingress adjustments so that backend is available on I…
gatis Sep 25, 2018
d9b8c2b
Revert "SLT-97: Site developers will put this file in place themselve…
gatis Sep 25, 2018
2c3ece2
Revert "SLT-97: wdr dev hostname for ingress"
gatis Sep 25, 2018
5372b46
Revert "SLT-97: htaccess for conf folder"
gatis Sep 25, 2018
5c5c7b9
Revert "SLT-97: Installs minimal site when config import fails. This …
gatis Sep 25, 2018
2bf31d0
Revert "SLT-97: Lando config for launching a local project instance"
gatis Sep 25, 2018
c2ce403
Revert "SLT-97: We don't specify root, so let's just drush commands w…
gatis Sep 25, 2018
f635f3a
Revert "SLT-97: Checking existing installation. Do site-install if bo…
gatis Sep 25, 2018
b5968f4
Revert "SLT-97: Multiple commands via args and sh; File mount; Env im…
gatis Sep 25, 2018
78f26da
Revert "SLT-97: Postinstall command"
gatis Sep 25, 2018
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Revert "SLT-97: We don't specify root, so let's just drush commands w…
…ithin web folder"

This reverts commit 9e750f5.
  • Loading branch information
gatis committed Sep 25, 2018
commit c2ce403d62b8d4dc75fd4ba02653163e0adb37fa
3 changes: 1 addition & 2 deletions chart/templates/postinstall.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,7 @@ spec:
image: {{ .Values.drupal.image | quote }}
command: ["/bin/sh", "-c"]
args:
- cd web;
bootstrapped=$(drush status --field=bootstrap);
- bootstrapped=$(drush status --field=bootstrap);
if [[ $bootstrapped = *'Success'* ]]; then drush updatedb -n; drush config-import -n; drush entity-updates -n;
else drush site-install -n config_installer; fi;
env:
Expand Down