-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
adds galaxy-qa1 instance specific files
- Loading branch information
1 parent
47d3dbf
commit 9c699a0
Showing
11 changed files
with
292 additions
and
30 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
#! vim: ts=2 expandtab: | ||
|
||
name: run-ansible-playbook | ||
|
||
runs: | ||
using: 'composite' | ||
steps: | ||
- name: Make SSH connection | ||
shell: bash | ||
run: | | ||
mkdir -p $HOME/.ssh | ||
install -m 600 -D /dev/null $HOME/.ssh/id_rsa | ||
echo "$SSH_PRIVATE_KEY" > $HOME/.ssh/id_rsa | ||
cp known_hosts $HOME/.ssh/known_hosts | ||
ssh -f -o StrictHostKeyChecking=no $TARGET_USER@$TARGET_HOSTNAME hostname | ||
- name: Install Ansible requirements | ||
shell: bash | ||
run: ansible-galaxy install -p roles -r requirements.yml | ||
|
||
- name: Create vault password | ||
shell: bash | ||
run: echo "$VAULT_PASSWORD" >.vault-password.txt | ||
|
||
- name: Run playbook | ||
shell: bash | ||
run: ansible-playbook --limit $TARGET_HOSTNAME galaxy.yml |
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,21 @@ | ||
#! vim: ts=2 expandtab: | ||
|
||
name: deploy-qa1-ansible | ||
|
||
# TODO: run automatically on push to main | ||
on: [ workflow_dispatch ] | ||
|
||
jobs: | ||
call-common: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout actions | ||
uses: actions/checkout@v2 | ||
|
||
- name: Call run-ansible-playbook action | ||
uses: ./.github/actions/run-ansible-playbook | ||
env: | ||
TARGET_HOSTNAME: galaxy-qa1.galaxy.cloud.e-infra.cz | ||
TARGET_USER: debian | ||
VAULT_PASSWORD: ${{ secrets.VAULT_PASSWORD_QA1 }} | ||
SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY_QA1 }} |
9 changes: 9 additions & 0 deletions
9
files/galaxy-qa1.galaxy.cloud.e-infra.cz/object_store_conf.xml.j2
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,9 @@ | ||
<?xml version="1.0"?> | ||
<object_store type="hierarchical"> | ||
<backends> | ||
<backend id="localdata" type="disk" order="0"> | ||
<files_dir path="{{ galaxy_mutable_data_dir }}/datasets" /> | ||
<extra_dir type="job_work" path="{{ galaxy_mutable_data_dir }}/jobs" /> | ||
</backend> | ||
</backends> | ||
</object_store> |
10 changes: 10 additions & 0 deletions
10
files/galaxy-qa1.galaxy.cloud.e-infra.cz/oidc_backends_config.xml
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,10 @@ | ||
<?xml version="1.0"?> | ||
<OIDC> | ||
<provider name="Keycloak"> | ||
<client_id>{{ oidc_client_id }}</client_id> | ||
<client_secret>{{ oidc_client_secret }}</client_secret> | ||
<redirect_uri>https://{{ inventory_hostname }}/authnz/keycloak/callback</redirect_uri> | ||
<url>https://login.e-infra.cz/oidc</url> | ||
<icon>https://www.e-infra.cz/img/logo.svg</icon> | ||
</provider> | ||
</OIDC> |
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 @@ | ||
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDSK8WWfpkVsYlAEInrhMkAU/3fxLRfj2FdLFdkmbU1/M+eBgcCqhROgmqnOiZ4db/mk23SGI6O/K/8fBBKtaUDCBlCCzPakW/VTSLR4ASRzCVhFFZGnkFWp9scYWTxpRHpvsG7E0waumVZnxy/Iw4ICkxLAvTnGQuNW7exTrlp8bXcskgwLDMRWLJixJXC2F4SATZ63yZhR6TLwmNGy+MbzuciVrM5np0mIMsD2T1rn4aRitOge3cDKfql/IS5HMtckJYD+sQP/Yl+fjtBiO+BYZmkIySzb+jbSeHds/uyTtawEOvy44Hn8+f7G5ksWfYldvQpbV4J0n4p0g5dZFFinRG5vGZVb/72WDrE0stwW/dWNxLA+l8IwKzNY9tGukX0Q7VcEABMHlwI/uCur2UMvUnFGBLYagKJIAHesqaWNm+1DzZRe+0cWmoGbnrmYdW2QaAusTSmhjahF9TLIexknPiH1lhWpkb+w7pBI1M1R/NrCWYGaQGVbYeynAUMPjM= galaxy@ljocha-gxit |
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,20 @@ | ||
tools: | ||
- name: iedb_api | ||
owner: iuc | ||
revisions: | ||
- 7ed6dda64a81 | ||
tool_panel_section_label: Get Data | ||
tool_shed_url: toolshed.g2.bx.psu.edu | ||
- name: dbbuilder | ||
owner: galaxyp | ||
revisions: | ||
- 983bf725dfc2 | ||
tool_panel_section_label: Get Data | ||
tool_shed_url: toolshed.g2.bx.psu.edu | ||
- name: sra_tools | ||
owner: iuc | ||
revisions: | ||
- 734abc7ac21d | ||
- f5ea3ce9b9b0 | ||
tool_panel_section_label: Get Data | ||
tool_shed_url: toolshed.g2.bx.psu.edu |
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,5 @@ | ||
# empty intentionally | ||
|
||
# prevent tpv lint complaints | ||
global: | ||
default_inherits: default |
185 changes: 173 additions & 12 deletions
185
host_vars/galaxy-qa1.galaxy.cloud.e-infra.cz/secret.yml
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,13 +1,174 @@ | ||
$ANSIBLE_VAULT;1.1;AES256 | ||
39613164363665646464366261353762393862613335363365653038396264363539383539653861 | ||
3031316538613737363131313833663136323537346632660a626635363332353739356137306334 | ||
31303832306466346262626461633463663934346532353364386538656533323730666661663137 | ||
3837646264313562370a613134333365643330383266663265633237396134313032636632646535 | ||
32376239633332666431653364363934613234356534396639663435353961613035396430633564 | ||
39666532343262373238653033623532343435386634643337303737616265393034333936313335 | ||
63303162303563313333323831356535623365336663383366353736636365353436333832303432 | ||
31653538633139613162386430323332373739326466353834303038643537616232393463383438 | ||
38313734323837396335366462356534303036613630326137366561356166616130653662353838 | ||
39663235373437323839323865396430623432326562313962383335356237633438336366616130 | ||
34663936626663336439383933623365336232663937613331636239363539303261306533663738 | ||
38313934386261303138 | ||
61633638333038643135323930346665346266316439653538383962313734623236303462623039 | ||
6164386266303464653036386230663763616336623239620a616638386262376565353235383132 | ||
35393832643136626263313834653630323464356333336165626662663762366366366565303664 | ||
3735633038373731320a306133356538363164303032633133323463333937646564383231366131 | ||
35386635653662356331646266313936353765656430646636363638363466616530353639306431 | ||
64613032363065633061323664396466633732356238633033303634353165643764356661653864 | ||
34333131663639316463643531303639653338343362626562633633376636373165336665613161 | ||
34316564373835393731343238396436313939646235343730366639376132653432613562626332 | ||
35663539373564393630646530393064323930633930313535323261303064366139353966623261 | ||
39313666626330636132646531636337623831376565366532326237353962333061656332356534 | ||
31366638376635336662616234326163663263316232366332383138653263653434376663633132 | ||
63666563333162306631396536666332363332306536303139643237623037616236623936323631 | ||
31663262373936393833663738626464626330333437653463393463646138356633623164613939 | ||
34326236396533616235323031376535616334633362346537653730356562383062646466643633 | ||
62396338346539613766313934313165383234633131306238636635653864313534323534303239 | ||
33663934656434383736326233373735636530383062623065656161373761323934653063376161 | ||
39636663383161383536363439306430663831376664663262616132303362636132343666623734 | ||
66613736303638326430383662323565346662613333393664343238353162633235663731333164 | ||
36303164323363643739626530343132346462653235333531666562333836356531383832366232 | ||
62613738383333653261333637366565333961643339343862633964326430623333363731623936 | ||
32323966333331666162343837313166323931303963343663623733633933343031623838646338 | ||
38363163303935316365343266343639373364343731343733646535346461613438336133643430 | ||
65333462343632633765616133333561343037366630653433356365383637626332616662666530 | ||
32333762653866336433336464646333653536376233666265373061393562393062353835383330 | ||
34613333386461383131326362396337613663663166303338346336396438323632663836656461 | ||
63373561356432646636633164616239353564343638646636303930353735633666353065396432 | ||
34663766636235323336656531353262353361623639336534303435623665306433306165663461 | ||
63646536333035626538306635626665336135376636663635326532336164393066373563623637 | ||
61333534356561333330353161663130393632323862646264343830386338633435376631363461 | ||
31346138333761373863323436326166303531636465623564306563396561356365643834373837 | ||
62326333656231376430646365613637366266663039633364313135633134373230663261616337 | ||
34356339316233663734643466616531363434633065323933363933623662623939623665393362 | ||
63303336633132646339646233323437623863613839306464323039383261663264353565633239 | ||
63336631663833653134636336663165353931393731333839386531653932346137366333323665 | ||
33623533636438336136616333303633323638353934663761363036383736343163653734626631 | ||
34363662376231393566356130376239386538623862383639323762646633333134313832353139 | ||
30363139643438613736333633306137346464633866623266353634643934356130613863363061 | ||
39336365643066666665616634613932363765626231333332353332353864313831633166356136 | ||
34353866643236663164343433383062373763366433313063653930303137303965313837393231 | ||
38356136373866633736363336613739306336616232366563393066393861353064666633386336 | ||
39623936336534623830376337313534303861386231626262303430383132623064373565313137 | ||
35643066346466333365643538636138623835366465376430646565663363353161396133373333 | ||
39396264343065343836313536656132613561323837653232316436356538663531623363363338 | ||
30303033323662663838393964326538633936363032393861313561336330623335386231343337 | ||
61333832643133663765323461306635636436336234636434346434643734633164633136326231 | ||
65636134666235393466313563336635373264333535666333343064616234646138346437373338 | ||
35366137333331353135343834663937666230633339363938613934333032363730306639383030 | ||
66633832346534626564303063393931373036653365363833626539653332613133646331333939 | ||
35653430343637323863313764653762616233393366663532656464346265343164626366303139 | ||
37623334623337376366303037326362353030663939303566303466326634306539656232326239 | ||
65353065633563396630336434656437323565356164626463393638346430343631646566363638 | ||
66316330376134386639313335343661643731383638613966626537336261633464306261303239 | ||
32306130373966333137616230376437336132333435646166616637653861326263626239306231 | ||
31306436326363386338646131323763616138643732613566356463343666653237636163326165 | ||
30663732326632643065363465666536613962363333653135316437313232663961396632636163 | ||
33336639353165326238353439623638373030623262333332356664636163623030666530356131 | ||
62643031353235386631616562626431626536363662356138303165396635306536366266623935 | ||
33393436343734383733383064313735643931636134343362333833663237626462616261643261 | ||
64643531643337313639613132623864616164313231303334346631393731623130646361623865 | ||
39313231316133333537363530366265636231613635346230653538303331646366353662306361 | ||
66633566366466313864663666666536313364363563343063336337626563616233323538386265 | ||
33396362373738623863393234613865336562383330363237643030616630333539363033643439 | ||
34663961633536613431643238336265363431343964333930666464633830643339653234353966 | ||
36626264313163626338663330343838333763653261656134393933386565626263306139333930 | ||
39363164656162306539663131326239336539653733623936323031313866316365613266363938 | ||
35363634386532353164623236303164386435623262306263376564613166663739376232383832 | ||
62626264313362376633356634303264666635653663303463363831613262326139356532396661 | ||
36666363373537363731366530353961376238373731636564666436666565333831633761626136 | ||
38336138356565343734623334363930383431366663383732633033333564653230643064653231 | ||
66376261633135633131336264613162303532666266316436393761333034353038373939666465 | ||
36356664393962313935393861346266346463623165373035316439363039346663383663336139 | ||
66636432356166333332343030316134396464313630376564356330643930333162626365376564 | ||
36366634343261353131393131396463643139323463643438643434386363386135653837373434 | ||
31323464376135653065316234663133633866373231323739343836313838373565626562613532 | ||
63326236313765646330306132343031303630663563383137323463376164663531663736353432 | ||
63386235663930616636343830333836616230316430383038343962323734346333323063633231 | ||
32346138393766303264623031303036343835356439373735346465616339633035393161383563 | ||
64303532393039616537643663303630386134383137393863353831666137646632623738333934 | ||
35373737303439383634633632356361646636353137343337383266626165633564643139336630 | ||
63616432376666656131386463363930666261393066353565643761383539326462656665666335 | ||
31343863653365373832353061666432666235363331646363363330383865356635303938633630 | ||
65313963666162653032306261656237623666626334313332376530393166313339623536326335 | ||
38303537316365333431363335633038346261636638393163363238663637666137343263623937 | ||
63353337323235396163313063643064656439373138616337303030306233383065666263386366 | ||
63653136343864346636333438306263343139393339663435383165316332373830653830633561 | ||
36626662633539353262666337386634623337326332623230323439633833646130326233633734 | ||
30313362323731373534626564616261306434333131343231363935353134623533393235663031 | ||
32353839393436303335373838653433653462316432633862383366666133653031613766343061 | ||
35316365383866306139623963336664393431346431363931643739333632376264373761373231 | ||
32613666316537376365373862333165366536323135626338323033343431363561346130393731 | ||
39666633653436376639346666316665666532373663386639333664323364306462336162353933 | ||
64653031303166376534383537366236376334633339323232393139373231333936663239373864 | ||
65396464636638346237366337356132353335646436373961613336383033663034653132336465 | ||
36303031313335383139303133643065343930333335613962663664386563383530326163353935 | ||
37303632336236656435396564333239656630393839316534373961316161666362353165346561 | ||
39356134333234656231323963333630353934363438323364313638316364343966383136316662 | ||
31343833366234393537316538613439353930396333663862666631633765303362376565656638 | ||
37666539363437646535646134623962663236383963356136303638623164356533663761306634 | ||
61373864306537616533616432386539386466353636376362623832626537613066396232636262 | ||
30396262393830643234643138323264626263303533323234356436366538616631613332343338 | ||
39633464343839666230316431396366623533343534353731663766386439386537636236336663 | ||
64636131623534313934376537346337626464303565663666636566393233326462326438373738 | ||
36653531663664653731613464306630656636613532356338353062383563616631363735383335 | ||
34653232326161636434353063383866346634366135386236333164663530656566363634393639 | ||
35303038313232666265333161393834373162326432643461616135313330393662383333643063 | ||
33353039363237323761333733333831336633306337353738373665646234303662343462373133 | ||
63666531363962366431336665626464373835313139613665363934623261613533636230623333 | ||
31343135386338396132383734616433396565616331396331626463333066346535653838613334 | ||
38656365373634646635653466373133646261643835326438653231646130316461303239663931 | ||
33643564363863396437333162663438326364333763393461663264353162376131343461356232 | ||
62323839306434366539386565643566373830626439386265623630613430633139633835326233 | ||
62663465626363353634393233393539616631363666313166396439353337623830663233633631 | ||
64663337646435636563323465363135643930646239313530626435353762616338653634373766 | ||
36643935303565626164353162663037323162613133633633626165663531366561626661363861 | ||
66393039643330326262316665663962396339623565323463373765393166343263643462323036 | ||
35636164633136373838356365323631633566353636383366386230653838636237653431653536 | ||
32613865376631386334393766366536616137306430383836646536396132393965353065363739 | ||
61383133396462633336346161376132663430333930663064326537376665383836336362613866 | ||
64326261656537346330363332373264373637326164623133656539613333356232306135626361 | ||
66663662613166633031303733323262386531646336616637633738323335346433303137333332 | ||
32343765396239313430303633393765383437363735363337336436343530383337336539376538 | ||
34343265376132316436396530653336363937363463636237653163353266393765653064383937 | ||
30626665626365376432356130663732653735313930313362393331326135663032323338386632 | ||
30376136346661303731313931396462323537303738623563363263393638666633626531623539 | ||
35366438336433303061373633663766656164303039356239323433643232663931353033623235 | ||
34643134383262376532616431623636313238383838353835653431636562623931613335363565 | ||
30633166396432633262623631323935646563373064346338363838366539353938326131393433 | ||
62323931306630373332333036316333333633303832376162643664343639366637333561616564 | ||
62313164313163393138336239383165326337353731363539346433313762356230356262633539 | ||
31333464653238396534393233383734643261396435373232366561656239626636656465616134 | ||
31353666626565316431363937396161323162373761366432383662343862383264636263396430 | ||
34353063336637373538613463396235613364346337373063626333623061343432343130366564 | ||
63366361333661373231303061666239623661636637393332646466323735323830363838663466 | ||
30326139626438366533373038383865643030636461636463623834616666616663353038653665 | ||
66633433653964666465383462303865663132306166326134363631626238383034366233376134 | ||
63636235366665343833323662323038393463386433653165663364346639616138616132373637 | ||
63636264373330316666383136306464663237376630303130646433373739653766363263383231 | ||
34626563396537666666616631316166313834333039616564613165386337396662656636313438 | ||
31383861636336316564353032363863363936613561613065626531306131646330333365333663 | ||
61306239313564313439303962313837346533633639336533383764303463323131346564616133 | ||
66386461623665343833663634663636633830346135633863333634616330343432633063636261 | ||
36646633316534636464353735313866663535396434643333306236353538373239386635353837 | ||
36613536336264353638623239343362393966653034663664663561373831336534626365613932 | ||
31356230376164383233666264633839303237616335393865616266386630653234636538376137 | ||
37656131356164343035613634303338323638643661353730666233363261373965333536346536 | ||
30633166316338373563663038643335386438316533646232336230303136383032396233343862 | ||
33653762333130303262633939393431363732343637623066363932616632313835323935613335 | ||
32326232653833643463633632623763666136643665656163396631343263373635353431386130 | ||
35323265373034646462303363313161626534626339653632346238633331353736386636396265 | ||
30336134643237333330313762653262646564353863616661336364313130323530373530346633 | ||
38303065623763356339643664323639383335333538636134323465636232653131303037306462 | ||
30653863396631353939363262336164636263663830373164386265633139643337633166613931 | ||
62383065646332666635613836346338623033356533363661653439646463373033386332373562 | ||
65393236616565343635343033373339373263623333363362316430663437343937653231623037 | ||
34323936316431623437383065633032636638656162383139616535366261303236313166623463 | ||
33636563646365626136396539393266306132343832663531396264313136623239346165663462 | ||
65663264383035633366653832333030306136313432393032383232323334633535383538363031 | ||
34363535353266393438656131653163633662346362656137643537396262373834373632623533 | ||
30376432633537346533366235343634323734616432633637396434386633386563626139353439 | ||
64333539663362623438656363643133626133616235343966313861323830373736363934643764 | ||
37333434333666313633383164313533323736323032373766303362336431343537363065383661 | ||
63383334646230303034343135646631393861313765636164646631346639346366336634393965 | ||
31383661653164326566393466613330653238623166326330633137333231313466643039386561 | ||
34353732346635613132366464366461323362636661613135636261653336333538616565383065 | ||
35613862393362303537383538393131326332343730613332326465616663613965633361336463 | ||
38316435316438643833636365653637646638623064363631616665376436666461393232353139 | ||
33663761353731386466656131643537613464626332373531666436316534663063343563363330 | ||
65303038306262393833333862363136656464303730396662326231363437383966313365346631 | ||
61343464623033373631316664323063633266383935333238653566313437643239343637336638 | ||
35343733303266383134393666386265373936363432376430376162663231643739666430386461 | ||
35303633353737326133316664393539663063343161316330633735613662643538373363303539 | ||
30376564373266373461616566663933383331376530636261643538356136303766643266396436 | ||
6138 |
Oops, something went wrong.