-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #997 from City-of-Helsinki/update-configuration
Automatic update
- Loading branch information
Showing
10 changed files
with
141 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
label: Переадресация | ||
display: | ||
default: | ||
display_title: Основной | ||
display_options: | ||
title: Переадресация | ||
fields: | ||
redirect_bulk_form: | ||
action_title: 'С выделенным' | ||
redirect_source__path: | ||
label: От | ||
separator: ', ' | ||
is_custom: | ||
label: Собственная | ||
separator: ', ' | ||
created: | ||
label: Создано | ||
pager: | ||
options: | ||
tags: | ||
next: 'следующая ›' | ||
previous: '‹ предыдущая' | ||
first: '« первая' | ||
last: 'последняя »' | ||
expose: | ||
items_per_page_label: 'Элементов на страницу' | ||
items_per_page_options_all_label: '- Все -' | ||
offset_label: Пропустить | ||
exposed_form: | ||
options: | ||
submit_button: Фильтр | ||
reset_button_label: Сбросить | ||
exposed_sorts_label: 'Сортировать по' | ||
sort_asc_label: 'По возрастанию' | ||
sort_desc_label: 'По убыванию' | ||
empty: | ||
area_text_custom: | ||
content: 'Перенаправлений пока нет.' | ||
filters: | ||
redirect_source__path: | ||
expose: | ||
label: От | ||
redirect_redirect__uri: | ||
expose: | ||
label: Кому | ||
status_code: | ||
expose: | ||
label: 'Код состояния' | ||
group_info: | ||
label: 'Код состояния' | ||
group_items: | ||
1: | ||
title: '300 Множество Выборов' | ||
2: | ||
title: '301 Перемещёно Окончательно' | ||
3: | ||
title: '302 Найдено' | ||
4: | ||
title: '303 Смотреть Другое' | ||
5: | ||
title: '304 Не Изменялось' | ||
6: | ||
title: '305 Использовать Прокси' | ||
7: | ||
title: '300 Multiple Choices' | ||
language: | ||
expose: | ||
label: 'Язык оригинала' | ||
is_custom: | ||
expose: | ||
label: Собственная | ||
page_1: | ||
display_title: Страница | ||
display_options: | ||
menu: | ||
title: Переадресация |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
# Docker CLI container | ||
CLI_SERVICE=app | ||
CLI_USER=druid | ||
CLI_SHELL=bash |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
#!/bin/sh | ||
|
||
set -e | ||
|
||
if [ ! -n "$OC_PROJECT_NAME" ]; then | ||
echo "OC_PROJECT_NAME not set." | ||
exit 1; | ||
fi | ||
|
||
oc login --token=${1} --server=https://api.arodevtest.hel.fi:6443 | ||
oc project ${OC_PROJECT_NAME} | ||
|
||
OC_POD_NAME=$(oc get pods -o name | grep drupal-cron | grep -v deploy) | ||
|
||
if [ ! -n "$OC_POD_NAME" ]; then | ||
echo "Failed to parse pod name." | ||
exit 1 | ||
fi | ||
|
||
oc rsh $OC_POD_NAME drush sql:dump --structure-tables-key=common \ | ||
--extra-dump="--no-tablespaces --hex-blob" \ | ||
--result-file=/tmp/dump.sql | ||
|
||
oc rsync $OC_POD_NAME:/tmp/dump.sql /app |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters