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
edx
configuration
Commits
d69a1cd0
Commit
d69a1cd0
authored
Jul 24, 2015
by
David Baumgold
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
More certs to not validate
parent
042651b4
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
7 deletions
+10
-7
playbooks/roles/aws/tasks/main.yml
+1
-0
playbooks/roles/browsermob-proxy/tasks/main.yml
+2
-1
playbooks/roles/elasticsearch/tasks/main.yml
+7
-6
No files found.
playbooks/roles/aws/tasks/main.yml
View file @
d69a1cd0
...
@@ -46,6 +46,7 @@
...
@@ -46,6 +46,7 @@
get_url
:
>
get_url
:
>
url={{ aws_s3cmd_url }}
url={{ aws_s3cmd_url }}
dest={{ aws_dirs.data.path }}/
dest={{ aws_dirs.data.path }}/
validate_certs=no
-
name
:
untar s3cmd
-
name
:
untar s3cmd
shell
:
>
shell
:
>
...
...
playbooks/roles/browsermob-proxy/tasks/main.yml
View file @
d69a1cd0
...
@@ -4,6 +4,7 @@
...
@@ -4,6 +4,7 @@
get_url
:
>
get_url
:
>
url={{ browsermob_proxy_url }}
url={{ browsermob_proxy_url }}
dest=/var/tmp/browsermob-proxy-{{ browsermob_proxy_version }}.zip
dest=/var/tmp/browsermob-proxy-{{ browsermob_proxy_version }}.zip
validate_certs=no
register
:
download_browsermob_proxy
register
:
download_browsermob_proxy
-
name
:
unzip into /var/tmp/
-
name
:
unzip into /var/tmp/
...
@@ -13,7 +14,7 @@
...
@@ -13,7 +14,7 @@
when
:
download_browsermob_proxy.changed
when
:
download_browsermob_proxy.changed
-
name
:
move to /etc/browsermob-proxy/
-
name
:
move to /etc/browsermob-proxy/
shell
:
>
shell
:
>
mv /var/tmp/browsermob-proxy-{{ browsermob_proxy_version }} /etc/browsermob-proxy
mv /var/tmp/browsermob-proxy-{{ browsermob_proxy_version }} /etc/browsermob-proxy
when
:
download_browsermob_proxy.changed
when
:
download_browsermob_proxy.changed
...
...
playbooks/roles/elasticsearch/tasks/main.yml
View file @
d69a1cd0
---
---
# elasticsearch
# elasticsearch
#
#
# Dependencies:
# Dependencies:
#
#
# * common
# * common
# * oraclejdk
# * oraclejdk
#
#
# Example play:
# Example play:
#
#
# This role can be used to do a single-server or clustered
# This role can be used to do a single-server or clustered
# installation of the elasticsearch service. When a cluster
# installation of the elasticsearch service. When a cluster
# is being installed, there are two important things that
# is being installed, there are two important things that
...
@@ -34,6 +34,7 @@
...
@@ -34,6 +34,7 @@
url={{ elasticsearch_url }}
url={{ elasticsearch_url }}
dest=/var/tmp/{{ elasticsearch_file }}
dest=/var/tmp/{{ elasticsearch_file }}
force=no
force=no
validate_certs=no
register
:
elasticsearch_reinstall
register
:
elasticsearch_reinstall
-
name
:
install elasticsearch from local package
-
name
:
install elasticsearch from local package
...
@@ -57,7 +58,7 @@
...
@@ -57,7 +58,7 @@
template
:
>
template
:
>
src=etc/default/elasticsearch.j2 dest=/etc/default/elasticsearch
src=etc/default/elasticsearch.j2 dest=/etc/default/elasticsearch
when
:
ELASTICSEARCH_CLUSTERED
when
:
ELASTICSEARCH_CLUSTERED
-
name
:
drop the elasticsearch config
-
name
:
drop the elasticsearch config
template
:
>
template
:
>
src=edx/etc/elasticsearch/elasticsearch.yml.j2 dest={{ elasticsearch_cfg_dir }}/elasticsearch.yml
src=edx/etc/elasticsearch/elasticsearch.yml.j2 dest={{ elasticsearch_cfg_dir }}/elasticsearch.yml
...
@@ -68,8 +69,8 @@
...
@@ -68,8 +69,8 @@
template
:
>
template
:
>
src=edx/etc/elasticsearch/logging.yml.j2 dest={{ elasticsearch_cfg_dir }}/logging.yml
src=edx/etc/elasticsearch/logging.yml.j2 dest={{ elasticsearch_cfg_dir }}/logging.yml
mode=0744
mode=0744
when
:
ELASTICSEARCH_CLUSTERED
when
:
ELASTICSEARCH_CLUSTERED
-
name
:
Ensure elasticsearch is enabled and started
-
name
:
Ensure elasticsearch is enabled and started
service
:
name=elasticsearch state=started enabled=yes
service
:
name=elasticsearch state=started 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