Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
C
configuration
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenEdx
configuration
Commits
d19d49f0
Commit
d19d49f0
authored
Jul 08, 2018
by
root
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
设置部分扩展程序的默认分支为ginkgo.master
parent
6116fb99
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
38 additions
and
31 deletions
+38
-31
playbooks/roles/analytics_api/defaults/main.yml
+2
-1
playbooks/roles/common_vars/defaults/main.yml
+2
-1
playbooks/roles/demo/defaults/main.yml
+2
-1
playbooks/roles/discovery/defaults/main.yml
+2
-1
playbooks/roles/ecomworker/defaults/main.yml
+2
-2
playbooks/roles/edxapp/tasks/deploy.yml
+13
-13
playbooks/roles/edxapp/tasks/service_variant_config.yml
+7
-7
playbooks/roles/forum/defaults/main.yml
+2
-2
playbooks/roles/insights/defaults/main.yml
+2
-1
playbooks/roles/notifier/defaults/main.yml
+4
-2
No files found.
playbooks/roles/analytics_api/defaults/main.yml
View file @
d19d49f0
...
...
@@ -57,7 +57,8 @@ ANALYTICS_API_DATABASES:
PORT
:
'
{{
ANALYTICS_API_REPORTS_PORT
}}'
OPTIONS
:
"
{{
ANALYTICS_API_REPORTS_MYSQL_OPTIONS
}}"
ANALYTICS_API_VERSION
:
"
master"
#ANALYTICS_API_VERSION: "master"
ANALYTICS_API_VERSION
:
"
open-release/ginkgo.master"
# Default dummy user, override this!!
ANALYTICS_API_USERS
:
"
dummy-api-user"
:
"
changeme"
...
...
playbooks/roles/common_vars/defaults/main.yml
View file @
d19d49f0
...
...
@@ -60,7 +60,8 @@ COMMON_EDX_PPA_KEY_ID: "69464050"
#The git checkout url in most roles is constructed from these values
#e.g. https://{{COMMON_GIT_MIRROR}}/{{COMMON_GIT_PATH}}/repo.git
COMMON_GIT_PROTOCOL
:
'
https'
# https|ssh
COMMON_GIT_MIRROR
:
'
github.com'
# git server hostname
#COMMON_GIT_MIRROR: 'github.com' # git server hostname
COMMON_GIT_MIRROR
:
'
git.orhontech.com'
# git server hostname
COMMON_GIT_PATH
:
'
edx'
# git path prefix
# override this var to set a different hostname
...
...
playbooks/roles/demo/defaults/main.yml
View file @
d19d49f0
...
...
@@ -17,7 +17,8 @@ demo_app_dir: "{{ COMMON_APP_DIR }}/demo"
demo_code_dir
:
"
{{
demo_app_dir
}}/edx-demo-course"
demo_repo
:
"
https://{{
COMMON_GIT_MIRROR
}}/edx/edx-demo-course.git"
demo_course_id
:
'
course-v1:edX+DemoX+Demo_Course'
demo_version
:
"
master"
#demo_version: "master"
demo_version
:
"
open-release/ginkgo.master"
demo_hashed_password
:
'
pbkdf2_sha256$20000$TjE34FJjc3vv$0B7GUmH8RwrOc/BvMoxjb5j8EgnWTt3sxorDANeF7Qw='
# edx
demo_test_users
:
-
email
:
'
honor@example.com'
...
...
playbooks/roles/discovery/defaults/main.yml
View file @
d19d49f0
...
...
@@ -53,7 +53,8 @@ DISCOVERY_ELASTICSEARCH_INDEX_NAME: 'catalog'
DISCOVERY_MEMCACHE
:
[
'
memcache'
]
DISCOVERY_VERSION
:
"
master"
#DISCOVERY_VERSION: "master"
DISCOVERY_VERSION
:
"
open-release/ginkgo.master"
DISCOVERY_DJANGO_SETTINGS_MODULE
:
"
course_discovery.settings.production"
DISCOVERY_URL_ROOT
:
'
http://discovery:{{
DISCOVERY_NGINX_PORT
}}'
DISCOVERY_LOGOUT_URL
:
'
{{
DISCOVERY_URL_ROOT
}}/logout/'
...
...
playbooks/roles/ecomworker/defaults/main.yml
View file @
d19d49f0
...
...
@@ -11,8 +11,8 @@
#
ECOMMERCE_WORKER_GIT_IDENTITY
:
!!null
ECOMMERCE_WORKER_VERSION
:
'
master'
#
ECOMMERCE_WORKER_VERSION: 'master'
ECOMMERCE_WORKER_VERSION
:
'
open-release/ginkgo.master'
ECOMMERCE_WORKER_REPOS
:
-
PROTOCOL
:
'
{{
COMMON_GIT_PROTOCOL
}}'
DOMAIN
:
'
{{
COMMON_GIT_MIRROR
}}'
...
...
playbooks/roles/edxapp/tasks/deploy.yml
View file @
d19d49f0
...
...
@@ -45,19 +45,19 @@
-
install:base
# Do A Checkout
-
name
:
checkout edx-platform repo into {{ edxapp_code_dir }}
git
:
dest
:
"
{{
edxapp_code_dir
}}"
repo
:
"
{{
edx_platform_repo
}}"
version
:
"
{{
edx_platform_version
}}"
accept_hostkey
:
yes
become_user
:
"
{{
edxapp_user
}}"
environment
:
GIT_SSH
:
"
{{
edxapp_git_ssh
}}"
register
:
edxapp_platform_checkout
tags
:
-
install
-
install:code
#
- name: checkout edx-platform repo into {{ edxapp_code_dir }}
#
git:
#
dest: "{{ edxapp_code_dir }}"
#
repo: "{{ edx_platform_repo }}"
#
version: "{{ edx_platform_version }}"
#
accept_hostkey: yes
#
become_user: "{{ edxapp_user }}"
#
environment:
#
GIT_SSH: "{{ edxapp_git_ssh }}"
#
register: edxapp_platform_checkout
#
tags:
#
- install
#
- install:code
-
name
:
git clean after checking out edx-platform
shell
:
cd {{ edxapp_code_dir }} && git clean -xdf
...
...
playbooks/roles/edxapp/tasks/service_variant_config.yml
View file @
d19d49f0
...
...
@@ -155,10 +155,10 @@
-
assets
# Gather assets using paver if possible
-
name
:
"
gather
{{
item
}}
static
assets
with
paver"
command
:
"
{{
COMMON_BIN_DIR
}}/edxapp-update-assets-{{
item
}}"
when
:
celery_worker is not defined and not devstack and item != "lms-preview"
with_items
:
"
{{
service_variants_enabled
}}"
tags
:
-
gather_static_assets
-
assets
#
- name: "gather {{ item }} static assets with paver"
#
command: "{{ COMMON_BIN_DIR }}/edxapp-update-assets-{{ item }}"
#
when: celery_worker is not defined and not devstack and item != "lms-preview"
#
with_items: "{{ service_variants_enabled }}"
#
tags:
#
- gather_static_assets
#
- assets
playbooks/roles/forum/defaults/main.yml
View file @
d19d49f0
...
...
@@ -84,8 +84,8 @@ devstack_forum_env:
forum_user
:
"
forum"
forum_ruby_version
:
"
2.4.1"
forum_source_repo
:
"
https://git.orhontech.com/edx/cs_comments_service.git"
forum_version
:
"
master"
#
forum_version: "master"
forum_version
:
"
open-release/ginkgo.master"
#
# test config
#
...
...
playbooks/roles/insights/defaults/main.yml
View file @
d19d49f0
...
...
@@ -158,7 +158,8 @@ INSIGHTS_COURSE_API_URL: "{{ INSIGHTS_LMS_BASE }}/api/courses/v1/"
INSIGHTS_GRADING_POLICY_API_URL
:
"
{{
INSIGHTS_LMS_BASE
}}/api/grades/v0/"
INSIGHTS_MODULE_PREVIEW_URL
:
"
{{
INSIGHTS_LMS_BASE
}}/xblock"
INSIGHTS_VERSION
:
"
master"
#INSIGHTS_VERSION: "master"
INSIGHTS_VERSION
:
"
open-release/ginkgo.master"
INSIGHTS_GIT_IDENTITY
:
!!null
INSIGHTS_REPOS
:
...
...
playbooks/roles/notifier/defaults/main.yml
View file @
d19d49f0
---
NOTIFIER_WEB_USER
:
"
www-data"
NOTIFIER_VENV_DIR
:
"
{{
notifier_app_dir
}}/virtualenvs/notifier"
NOTIFIER_SOURCE_REPO
:
"
https://github.com/edx/notifier.git"
#NOTIFIER_SOURCE_REPO: "https://github.com/edx/notifier.git"
NOTIFIER_SOURCE_REPO
:
"
https://git.orhontech.com/edx/notifier.git"
NOTIFIER_CODE_DIR
:
"
{{
notifier_app_dir
}}/src"
NOTIFIER_VERSION
:
"
master"
# NOTIFIER_VERSION: "master"
NOTIFIER_VERSION
:
"
open-release/ginkgo.master"
NOTIFIER_REQUIREMENTS_FILE
:
"
{{
NOTIFIER_CODE_DIR
}}/requirements.txt"
NOTIFIER_LOG_LEVEL
:
"
INFO"
NOTIFIER_RSYSLOG_ENABLED
:
"
yes"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment