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
1c6261cd
Commit
1c6261cd
authored
8 years ago
by
Arbab Nazar
Committed by
GitHub
8 years ago
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #3209 from edx/arbab/minos-rewrite
proper YAML syntax for rewriting ansible tasks
parents
d5f51911
2603e0f5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
40 additions
and
44 deletions
+40
-44
playbooks/roles/minos/tasks/main.yml
+40
-44
No files found.
playbooks/roles/minos/tasks/main.yml
View file @
1c6261cd
...
...
@@ -35,27 +35,29 @@
#
#TODO: remove
-
name
:
m
aintain backwards-compatable config location
file
:
>
path={{ COMMON_CFG_DIR }}/{{ minos_service_name }}/{{ minos_service_name }}.yml
state=link
s
rc={{ COMMON_CFG_DIR }}/{{ minos_service_name }}.yml
owner
=
root
group
=
root
-
name
:
M
aintain backwards-compatable config location
file
:
src
:
"
{{
COMMON_CFG_DIR
}}/{{
minos_service_name
}}.yml"
dest
:
"
{{
COMMON_CFG_DIR
}}/{{
minos_service_name
}}/{{
minos_service_name
}}.yml"
s
tate
:
link
owner
:
root
group
:
root
-
name
:
c
reate minos config directory
file
:
>
path
={{ minos_voter_cfg }}
state
=
directory
owner
=
root
group
=
root
mode
=0755
-
name
:
C
reate minos config directory
file
:
path
:
"
{{
minos_voter_cfg
}}"
state
:
directory
owner
:
root
group
:
root
mode
:
"
0755"
-
name
:
create minos voters configs
template
:
>
dest={{ minos_voter_cfg }}/{{ item }}.yml
src=edx/etc/minos/conf.d/{{ item }}.yml.j2
mode=0755 owner=root group=root
-
name
:
Create minos voters configs
template
:
dest
:
"
{{
minos_voter_cfg
}}/{{
item
}}.yml"
src
:
"
edx/etc/minos/conf.d/{{
item
}}.yml.j2"
mode
:
"
0755"
owner
:
root
group
:
root
with_items
:
-
"
BellwetherVoter"
-
"
ProccessQuiescenceVoterPython"
...
...
@@ -63,33 +65,27 @@
-
"
ZippedTrackingLogVoter"
-
"
RolledTrackingLogVoter"
# Optional auth for git
-
name
:
create ssh script for git (not authenticated)
template
:
>
src=tmp/git-identity.sh.j2 dest={{ minos_git_ssh }}
mode=750
when
:
-
MINOS_GIT_IDENTITY is not defined
# Optional auth for git
-
name
:
Create ssh script for git
template
:
src
:
"
tmp/git-identity.sh.j2"
dest
:
"
{{
minos_git_ssh
}}"
mode
:
"
0750"
-
name
:
create ssh script for git (authenticated)
template
:
>
src=tmp/git-identity.sh.j2 dest={{ minos_git_ssh }}
mode=750
when
:
-
MINOS_GIT_IDENTITY is defined
-
name
:
Install read-only ssh key
copy
:
content
:
"
{{
MINOS_GIT_IDENTITY
}}"
dest
:
"
{{
minos_git_identity
}}"
force
:
yes
mode
:
"
0600"
-
name
:
install read-only ssh key
copy
:
>
content="{{ MINOS_GIT_IDENTITY }}" dest="{{ minos_git_identity }}"
force=yes mode=0600
-
name
:
install python custom-requirements
pip
:
>
name="{{ item }}"
virtualenv="{{ minos_app_dir }}/venvs/"
state=present
extra_args="--exists-action w"
version="{{ minos_edx_server_tools_version }}"
-
name
:
Install python custom-requirements
pip
:
name
:
"
{{
item
}}"
virtualenv
:
"
{{
minos_app_dir
}}/venvs/"
state
:
present
extra_args
:
"
--exists-action
w"
version
:
"
{{
minos_edx_server_tools_version
}}"
environment
:
GIT_SSH
:
"
{{
minos_git_ssh
}}"
with_items
:
...
...
This diff is collapsed.
Click to expand it.
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