From 1f6388eaa25de94403dc7273673c6294f2fdd73a Mon Sep 17 00:00:00 2001 From: Kalibh Halford Date: Tue, 2 Sep 2025 15:49:05 +0100 Subject: [PATCH 01/12] MAINT: Moving dev chatops to dev openstack We have moved the dev chatops platform to dev openstack. This is why the IDs and FIP are changing. The DNS has changed to remove "cloud-" as this is not necessary as cloud ownership is implied by ".nubes." --- chatops_deployment/ansible/dev/group_vars/all/vars.yml | 4 ++-- chatops_deployment/ansible/dev/host_vars/localhost/vars.yml | 4 ++-- chatops_deployment/ansible/dev/hosts.yml | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/chatops_deployment/ansible/dev/group_vars/all/vars.yml b/chatops_deployment/ansible/dev/group_vars/all/vars.yml index 348e649d..95b741c3 100644 --- a/chatops_deployment/ansible/dev/group_vars/all/vars.yml +++ b/chatops_deployment/ansible/dev/group_vars/all/vars.yml @@ -1,10 +1,10 @@ --- ansible_user: ubuntu -domain: "dev-cloud-chatops.nubes.rl.ac.uk" +domain: "dev-chatops.nubes.rl.ac.uk" alertmanager_version: "0.28.1" prometheus_version: "3.2.1" systemd_exporter_version: "0.7.0" -terraform_floating_ip: 130.246.83.230 +terraform_floating_ip: 130.246.211.163 env: dev chatops_image: "harbor.stfc.ac.uk/stfc-cloud-staging/cloud-chatops:de80494" chatops_github_repos: diff --git a/chatops_deployment/ansible/dev/host_vars/localhost/vars.yml b/chatops_deployment/ansible/dev/host_vars/localhost/vars.yml index 11b73aca..afe2760e 100644 --- a/chatops_deployment/ansible/dev/host_vars/localhost/vars.yml +++ b/chatops_deployment/ansible/dev/host_vars/localhost/vars.yml @@ -1,5 +1,5 @@ --- terraform_deployment: chatops-development -terraform_external_network_id: 5283f642-8bd8-48b6-8608-fa3006ff4539 -terraform_stack_volume_id: cdfe005e-691d-46a5-ae7f-6a50f7f8fa29 +terraform_external_network_id: 0dc30001-edfb-4137-be76-8e51f38fd650 +terraform_stack_volume_id: f8d37290-598e-4dc7-a8d6-e771a64c549f bastion_key_passphrase: "{{ vault_bastion_key_passphrase }}" diff --git a/chatops_deployment/ansible/dev/hosts.yml b/chatops_deployment/ansible/dev/hosts.yml index 53914bfc..fb6303f2 100644 --- a/chatops_deployment/ansible/dev/hosts.yml +++ b/chatops_deployment/ansible/dev/hosts.yml @@ -1,5 +1,5 @@ --- stack: hosts: - dev-cloud-chatops.nubes.rl.ac.uk: + dev-chatops.nubes.rl.ac.uk: ansible_ssh_private_key_file: "./dev-bastion-key" From 41ecc1e3bad1355d2d83b55714f8cb7a70ae1b38 Mon Sep 17 00:00:00 2001 From: Kalibh Halford Date: Tue, 2 Sep 2025 15:50:22 +0100 Subject: [PATCH 02/12] MAINT: Change volume ID as project has changed The project the production chatops VM runs in has changed and a new volume was created then changed, --- chatops_deployment/ansible/prod/host_vars/localhost/vars.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chatops_deployment/ansible/prod/host_vars/localhost/vars.yml b/chatops_deployment/ansible/prod/host_vars/localhost/vars.yml index d4f607bd..388bf7a7 100644 --- a/chatops_deployment/ansible/prod/host_vars/localhost/vars.yml +++ b/chatops_deployment/ansible/prod/host_vars/localhost/vars.yml @@ -1,5 +1,5 @@ --- terraform_deployment: chatops-production terraform_external_network_id: 5283f642-8bd8-48b6-8608-fa3006ff4539 -terraform_stack_volume_id: 079ba41f-e87f-4a64-abf9-06278580015a +terraform_stack_volume_id: df3fdff2-30fc-4aca-b8e5-03412a507607 bastion_key_passphrase: "{{ vault_bastion_key_passphrase }}" From e4d16d71964517ac4cc09111835d264a1c6742b1 Mon Sep 17 00:00:00 2001 From: Kalibh Halford Date: Fri, 12 Sep 2025 09:34:44 +0100 Subject: [PATCH 03/12] BUG: Add a fix for the MTU packet size Docker does not inherit the MTU config from the host. We need to set this otherwise packets get dropped and the logs show connection failed merge mtu fix --- chatops_deployment/ansible/configure.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/chatops_deployment/ansible/configure.yml b/chatops_deployment/ansible/configure.yml index c9d1ef88..d49cfd78 100644 --- a/chatops_deployment/ansible/configure.yml +++ b/chatops_deployment/ansible/configure.yml @@ -9,6 +9,14 @@ name: add_ssh_key +- name: MTU fix + hosts: stack + gather_facts: false + tasks: + - name: Fix MTU + become: true + ansible.builtin.command: "iptables -I FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu" + - name: Set up filebeat hosts: stack gather_facts: false From 69738808be65a0e4f0e19bd8b7ba4d178beb43fb Mon Sep 17 00:00:00 2001 From: Kalibh Halford Date: Fri, 12 Sep 2025 09:35:02 +0100 Subject: [PATCH 04/12] DOC: Add ansible as a requirement Ansible is a requirement so it should be in this file. --- chatops_deployment/ansible/requirements.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/chatops_deployment/ansible/requirements.txt b/chatops_deployment/ansible/requirements.txt index 4ed4f7bb..b5851394 100644 --- a/chatops_deployment/ansible/requirements.txt +++ b/chatops_deployment/ansible/requirements.txt @@ -1,3 +1,4 @@ bcrypt passlib openstacksdk +ansible From 59efc6ae6963ad9b585a2bc8893e6f1048b157d2 Mon Sep 17 00:00:00 2001 From: Kalibh Halford Date: Fri, 12 Sep 2025 09:41:28 +0100 Subject: [PATCH 05/12] MAINT: Add mail server address for alertmanager Add the mail server address for alertmanager merge mail --- .../ansible/dev/group_vars/all/vars.yml | 1 + .../ansible/dev/group_vars/all/vault.yml | 133 ++++---- .../ansible/prod/group_vars/all/vars.yml | 1 + .../ansible/prod/group_vars/all/vault.yml | 300 +++++++++--------- .../templates/alertmanager.yml.j2 | 2 +- 5 files changed, 222 insertions(+), 215 deletions(-) diff --git a/chatops_deployment/ansible/dev/group_vars/all/vars.yml b/chatops_deployment/ansible/dev/group_vars/all/vars.yml index 95b741c3..be355985 100644 --- a/chatops_deployment/ansible/dev/group_vars/all/vars.yml +++ b/chatops_deployment/ansible/dev/group_vars/all/vars.yml @@ -47,3 +47,4 @@ alertmanager_password: "{{ vault_alertmanager_password }}" elastic_password: "{{ vault_elastic_password }}" kibana_system_password: "{{ vault_kibana_system_password }}" logstash_system_password: "{{ vault_logstash_system_password }}" +alertmanager_smtp_mail_server: "{{ vault_alertmanager_smtp_mail_server }}" diff --git a/chatops_deployment/ansible/dev/group_vars/all/vault.yml b/chatops_deployment/ansible/dev/group_vars/all/vault.yml index d38a5e81..c82e087f 100644 --- a/chatops_deployment/ansible/dev/group_vars/all/vault.yml +++ b/chatops_deployment/ansible/dev/group_vars/all/vault.yml @@ -1,66 +1,69 @@ $ANSIBLE_VAULT;1.1;AES256 -64653865656633616261646462303138646432366231653962326231353338383236656235346635 -3435336637303061616435313430303339303663623236350a376532366136373362353333326137 -38373435356237363935613361316334323930623163326230613130353636653664373462653839 -6437616562323637350a623831646662303332663662656136373963366234366436303266333433 -63353564653033373431303935383739313461656165306238326533623339623531353830396432 -35333038653662663535363537616538613137643730393863366233396461336631383531633633 -39356335346361633762313232313537346361326463396231663364383439616139393561653732 -63653331623237663639633266313530376465633734666630303834396634663761346562383331 -63363535386666626331613164653264313239393363396536343731643963623763653266336632 -37386664343832613265316538306266626434643437353536633834323566623833666364366462 -66626635353862363133623632323434366635626335353533633835306232653139623530363536 -31613031303461643638383631356532333936623239373837323838663830613037626361646562 -37363465663035353335653064623161663537313539303136663332616333336664323963326638 -35643935646635313430646431353063646639353336343434383364386137383632343532616563 -33326636346131313462323666303031663431316131623461356533303136343034313034353466 -33346236373461333836633735623038663331363832323830383332646130666234653439326334 -30383436363464346364393464343930663531376362343065333330353836373538653864306433 -34373437346664363131313431613136363865336338346536373036633930373633353263613265 -63383336633262633835383830383865303131336463343163356132666537343931356633386539 -62623736343561353532653835393537396161323831363934376263343237616663663138306535 -30616465633832663266376431396138336133353465363937633838356236336365626334653730 -38626566333638353463623734623831383430666231343432356161326338326565643166326466 -64613331356430346436306263363632353934613066383764313239646637373365393037376432 -37336335396633363039343166626234613034666266626265306634383233666538326165393064 -37376334353031316237356266373763303265336638336434666132306134666664383233323930 -31313732383066363138633130663665383363336633656539366239363031306161373838343361 -37616262383430313339636538373562613066303436623231383733666637303565353866393365 -37363764383266313461323834393036363732323030316434633562636161613863326237393265 -37346165303438343032306339306130373538366535383537383063356130343130386464363736 -35363936343936373033323465643337353230313032346364363736346236346639306133333735 -37343539633932346165336534636634306362316261333763666134613864396233623230333436 -61306235636232303764653336656239613236373736386636373139383765336131633636396637 -36303732623435303866306164656237316131353439383261383739396630373039656431363230 -63333030626632323035663539323530343235303631306462383530613835363262353233383831 -65316164376262313765393466333731656665636165353064666364313964616534333764383063 -34656262663864656531346132316539666535333937343739643635363365386633643531643065 -38613066363233333162313136343031353534663661396433656532623433393332333734623866 -64313665666139636634306331383035333530396635656632373734656531363838303434373062 -61616337336432386139326564636431653137663064613062653233396630336266663832653861 -33666165366436306537343036336534336138656466656630303664343033386139356331376636 -34633030306630386236366665343830316132333866313535623963323835363430333433313164 -39333935646333636562343262313438376266633638376164643866653261333731646533356665 -39616363636432346430313134393231333138393863323930353438366433373766393061643236 -33346362343962306134303630376231666262623239356638303765326338616230653761383137 -31373036666466646631643238333939613835373534626631336161303264306635323664643036 -37623232363064353136386261336130373961626161646665643230306163383032376134363861 -63313664343632383164326663323464313362653863316565396435333863326362363732316637 -37613763396431643136656264653436643362396362366234666435366562643738306239663134 -31313731323132346363646661613330653137303932636330363334373162323338303930306461 -64353032613665313335646161366530633662353264373264376534616662383461383534346430 -35346435386337646139313930353030646265333032323636353634626135303662313136363536 -37666464343363643861653634326636653138306461613536353066383930366561633661303135 -61633762336166643766333939663962376332383539363239643838653063323331633232373239 -65653232313734633832363865346134623232346537663466386164623635643035363137326333 -34623164613066323161396432343631373039663230303162313233623232326138613762323336 -31656135326361343965383038633237643564616634653539326664636635316538633562366537 -32353931313562346337616337623930613962666237323135643630303534306330373435353831 -32646137333461656631663764663035356634666365306636626335633039646461313339333535 -37316135316334323336333133613832363234313138376336376439313739356430323063653031 -66646466643139363138626263336437626133313635623332386335643632353862313364363439 -64336437383933643763623936393330646666623034353466353665316635373462643939656334 -34636433383737636163363531333034623738323834393235303865316164396639623132643332 -64663866613462363332643131393662383237306132396530313339656530656437353532336265 -33393564616561613264626431663666303839353038303230643338333236383931373333653863 -3366 +61613632663635663262393861333266643261663935373835303362326333303864383237353266 +3166316562356533353536383431616139363362396566320a633039393165643465393133353463 +36643036363963333832646137353535663936356535643432386237393761303933396561653066 +3431353531646431660a316365333865383463396530623064316662656138303234636232306362 +39386130343235306463656532666163323536383236376563636363653231393466313434313535 +33333962616530643139626338663364346332636431303834366163323465666262623638393231 +61396239623337626662663235613731383436623830616263393134663835346638376538663761 +38333064663031313266306162373264316238346336613265666362303664356537616236336133 +31373962663462376539383161333537373939653463353966396364353635303162346234333965 +64643533613363363861633236316161343862376563646466313566626539643365323464313535 +62633430333731333238366435336130623063366462393966313339303730363431366537353562 +39636231303964306463646532316663386636363665653862616135643736383631666336336565 +39623233326465393530376539356430343835656238623531393538363530636463663964333164 +65633436306330323336313132666438353835383133303062623731663530313434643032383466 +39333431363538323731343536306439393865666362346532646264663931623838376134646530 +30313537336135366261333239663565353365653636396166376363363937666233663235303864 +32626236616331656232633839646335623432366132643637353031376231383462326438616239 +38336234633763393038303434336162333764653030343564326365393435653537313630313336 +63656562333337333464646565303837316236393566326461303139613738343262323762333738 +66373330343034653138303939383765613765346662333137323034353466336261333464396561 +39653366383333346639366635303835656361383066373430333732626639623037366166346161 +65633833336137626639636166653634396633626639653163366330643332363636626161626632 +34303065623633656631363538633337343733306461656439306332386231323635313333316264 +38396165326464666264623365346139646563323566363065333638326238393431323261386435 +35383238326163626632623234363338626232363063646439343565633530616462333230353536 +38343634643938373930356230653535656639346263333036643035626134393835363632653732 +39336130613834373636623564643532313437383261653230396430306439656637376564316630 +32643066623539613838333136346138343563383635313162326134666530306237363162383365 +64373239653763663736656134633338393261336133643132306239613163326633653261376130 +37363138356435636333386238643037333666353132383066393839383734663364336130336166 +66666335613165636465343335343465336561306237613166363539316637653465353166306661 +66313930336337356532666437643438646332343631386565323264376631343462653235636664 +66633635623231383832623533643033343536383564656333663863623031613733656566646464 +34343934306233616564376535366232306530303033313564326133393431316138303234663834 +35343066623433303433393361323539616132306337333930316235616264663839626139346362 +31326364646663393339363864623162663465303439303866393032366331363831663938666130 +33393862383662653736623765393566646666636338376534613330636562663462303532626631 +39393561313836393636663334616534396361386535616432653330313964333561363633383434 +30633163623432343234393761636365363234653663366561636131363261323962316364656436 +36316530616531653966306164303866633034393832666630633439343434653062306163653731 +66313333663562386438613436363930313766363963383633636263356331383837663532613930 +33623539323731333938356364666238666662653461396164363566383165613237636364396532 +37323566656361656538363034333563353463396366663832636361666535666438366337393066 +64396530623665373835623030363863396134613362346437353834633035396132653935623431 +34313966613139633964313233303366313033643064353861356632333334333864623864363230 +38623038323230316436366161323662666566616363303631393036646436623032343131336330 +37663965353161323966656439376365393466346137663533346632316331383533626633306566 +33343039653165613664366137663236666535343965616666636565633438663764386461646539 +34616539373634383061323935373066626336306634393163653362386163336339623633666335 +66646533636536313565653133623237303538373662633439383532303561666366653636356538 +35623737653839643532343137373033353663636666643130643265633238663166326438363636 +30333765653934653731386330666366303332303766366238343938643430373666616634326333 +66663664343366393735386339623239336532626263346566643636396439343938383032353531 +33363838353961383633663732316336653366383061386237623134626262663036636366363737 +38363139336137626530333633333164626461653061383132623630343933336665356365623164 +61333162366665636233326261653137316266393433373737386562393630343666666234346164 +37393163646239326164326633383436343063636431326264623035666539323230376236393065 +32663231363263303466376331636165646534643863366431326435646162633339653734366431 +38353766376233313533333532653562316365333534666461623236303262373464623139393064 +37616234653232653765386536643164363438653930373837336464616566643738326662383333 +34623833373335656134373839626537303339643734373234363837643664303264373930363161 +64356262326663376438313937336637373836623937343837396164316533313062636639316636 +36356164323466316261656463373765393433663632376638393239666461633765623761653733 +33373131346631363139616437386334303663363465353665343532376663646663366234366563 +32306633653635383163656536653333366436636138313434663636393538356261373835653233 +31373964656339343663306262626630306366336465396566363366366166633363316366616464 +39623737323063353463353362323631333163646430633664376332363730373737666136326162 +38306163393965393166 \ No newline at end of file diff --git a/chatops_deployment/ansible/prod/group_vars/all/vars.yml b/chatops_deployment/ansible/prod/group_vars/all/vars.yml index c8936bfe..4bb1b4d0 100644 --- a/chatops_deployment/ansible/prod/group_vars/all/vars.yml +++ b/chatops_deployment/ansible/prod/group_vars/all/vars.yml @@ -47,3 +47,4 @@ alertmanager_password: "{{ vault_alertmanager_password }}" elastic_password: "{{ vault_elastic_password }}" kibana_system_password: "{{ vault_kibana_system_password }}" logstash_system_password: "{{ vault_logstash_system_password }}" +alertmanager_smtp_mail_server: "{{ vault_alertmanager_smtp_mail_server }}" diff --git a/chatops_deployment/ansible/prod/group_vars/all/vault.yml b/chatops_deployment/ansible/prod/group_vars/all/vault.yml index 3431c581..879bf0c5 100644 --- a/chatops_deployment/ansible/prod/group_vars/all/vault.yml +++ b/chatops_deployment/ansible/prod/group_vars/all/vault.yml @@ -1,150 +1,152 @@ $ANSIBLE_VAULT;1.1;AES256 -34303336366238363261306430653537316137346139373737306138626437366639333433336532 -6566303736383539356134653364636630653962303638390a303162633132636632336137323930 -65386233303131613061373134376365343636383234636337323664306137353131663330383432 -3134353030393532350a646133396662643863383736353963626237663332323136646435633762 -38323530656630623330343734616239393532666132313265613565376163336264343230616161 -62363764643931353039333636646630313537383964613063643637333662633663313938636635 -32653335343735636563383165653536613262646661353966646361376165633737333962303866 -30313730653935643563346530373237363332653837633562613565353834633433386639303835 -39313764303530363532646234326438326664643430326131303632333661626134353932336530 -31653166386237636438373333303232383963346361316131663331623235623532663765663135 -39656332396438373264643936373164316536626463616637386438643436383036313737363932 -61356266643365623932623230393262643936616539373635383065343737336132653639386261 -62646161393532343438623161633137333962396337396338346537623266653638383463643737 -31333161633964346635663534653239643462373337643839353164666232656664366236356132 -31336166656264366162386235353264386531633535663962353237316461376334626362393164 -33656363666136303535633565633030303361373235626332383839653934366439613039306364 -31383464646265663963663830623736303539356238323437653062313866356662636536353135 -31613261386237383030343061616636653266633164303533666463323066323638303463643432 -37386163636266346563656538643734396537653664643963623661663435313339656562633633 -64326338643136353861383663373538373533643162313934666133366237306439666432383761 -36343937336364393136386438373733316365616233633864353264623937373735626239383533 -36316636613565373330653735306466333334353161336632623635343831653838393939653664 -30656433336232346235653936306264383231376366626562356366383834393239303462336438 -61356566386561393839323730643530623666343835346462343532313364306230323335306438 -62363038393865623164346131653665653239313538616637303062616132613734323831323264 -64636339376137653664383835366230343134626464353566623163633633373661646131393934 -63383764313536643565666534306631383231643536363130353235343433653931336339616233 -39353933623630316638313838393039393735333535663031616633313734633535393364623034 -33643064623936633432633931653531636438373364626265346238353131353136366135613730 -38383935353232336532316232323232323430373864336239316231383066333463326162633164 -65303464643664383761643034653134646666393630353632633732303730356230343163636637 -34393637393131373532636439343033323862373635653365633831653363356438346366353135 -30333562393162313239623765306539616538383033316465316236616537303065316436356434 -61343662633931616133636533616131623537633636373666663065353633356131383537326231 -34626263666330333632316466343262303361313533343736613061383737333766383262353439 -39616432303961303265326338313336346662356538386338393730363732363662313134313633 -63323232306539356231343737316130346535646461353039613161383433303239656164366136 -37383932313638643130383234613036623133643764663333653333366430313664376361356430 -39663430336634383435663265306363666134356531343234346430386563376362373138363933 -39313663323961373835633337396438356238336462616363623435636537666265636535366137 -38363830613632653035306531656335353339333934393332333739373233643138616436333935 -39393265353932643566306637636264396131633465303964646366623337333366626664363861 -32626335333436646164396531643364373332306131643263373963336335663435633066373762 -34396137363539376336383461646164333032376337656163393138333264383430303530303138 -65653663373865636462363732333362396465313635323832333331653233353837656132613161 -39326565646239343261386565396238313132326135313134396431316130373762643637626564 -31316233316662353432343831623531383832396233646564323666663439383835343064653534 -31653661373633373136363931353335626430646237666432313833616632623236656561343730 -34623433376366346635383637616133356637653061616639663862643834613065646539646134 -66376233333931366336316362326135383763336565616562353266333938343434363066326262 -36656332643738653135356339313263646465326535666634613339303233336639656165316665 -62623761616663363063333432343635346536333162616437343535643933333961633936336632 -32636631313665343739353430643639323665356131306633336366623936393165653136353639 -63376531373139666563666335396139306130373364343433663339623666353735396438333636 -38626437373530326139353666636661396366313031336439326439393032323435386562376264 -64663563323465663534316132346338633630646330623032396263356533393830643338663932 -61653336396235626433363735613136643030633032623439366433613630396330316630613239 -61623834373633323265363839366132323134366135306466623439333531373735663831623564 -64653337623838336363373566353330303134646431366566303339303036323465343631633065 -30326661373131303031613433356437396233346166663635653433393338643132363732326564 -61663036383932653630313433366338653764653032323361313532626266626365643539633235 -39313361633163653333343135616466386134623737366164643638316238313061373664393662 -66333564323566303766653433316431306238326565356133633036303734373763633939633831 -34323339663966333866643766323365386639623536623336633238303633623064356339636238 -36663535656162303163363834366431313836353036373032323437353534666337336531383933 -38623962383132373731356139646636656264316535666531633466626531626436366361656261 -30346563666264663331336165633931303133313931366331343337653464636531383261373361 -65626465646563646633633439333862386161343161653761323630356631613334313739306135 -62393537356162333336313733646538643762636134343735626335623530363531386337383335 -38363937386563386464666566643535663361653134356565356330643464373532396239366436 -63653763326663653265383839636163386339396432343138656264303333323264666634643633 -36353933613432613032666530653937663961623336633061356134646439333561613636383231 -65356634663164383937336165373165366463633238353331333562326332346534633338373734 -36383831373366656436396666336436363266393764383165653065366133376231356361633133 -34393532333461343465653936373832366333396662383736313433663861316364613032623661 -36333166663638343934383334343533646565623830303363633433323738393636623237643965 -35626135303032633731613663336661393134356634323435613434366261646133333563386232 -61356337313162386566616533623739623234313034613062366161346432643337633761646366 -65646466323235356166333665353363396263653235373230373066373537323032386439623063 -39356265313636396539363266343963613933626634363733613061653230393964336534303063 -66653033623734323966343063376438653436393138633239353435383830303661346134306634 -30343162616264616131323966643733666666323361626362336162643462366538353831666462 -36366530393566363631376637316535643661333164313461626239626635313338313131613538 -38326630366135616162343939633432343065303936306662313339353366343263373932616431 -39396561643561343066643838663937653864636134396365303032613136386435366130616564 -64613432623366623165326239666137353961636261343833356262316138643635393733313034 -34613865613162356565646333643962366630306261353632313033353265363830356239366261 -64613634333562643764393963313366616364623939313137383335306564373735343130303932 -38666239386166636364366330386338633366306136303965373338623535336364313962333334 -36373833666166653761646330663637313038653266336364306436363030646564363665643138 -37326636613865663565646137613333653633656237636561373865396365646638373432653765 -66333735353765653530393864343563636663353030336536393764383238313035326131643734 -66613064353533333437303032366637303133613231326135643937353864386665633839316634 -37303662323034373438326466303135666263663133346165326432646136663733316530633431 -62326362613933393664353933363637613438626563356265633261336233306634633833356165 -64396635646432353037666464363836346636353334323665623364383665353335656261636139 -37316232303139393663623335653863373261386432393834633430376135666537353431323262 -33613030643566616330366232626664636430663466623866333065623532376531366664323566 -62303839656466623932383838333637376138306466303962303766316235613937383033643439 -34393162316533373064363836313461663836663261393738386561366464666232363736383833 -36313638393462373135643731336466353636623137633537323038663730653365313132666138 -39303935646665346532373532643732323362383837333330393664393761376165343839386565 -36353239653364333934373331313438333065636163663230663837313037343530633966386530 -36373732616263363466623165396663643962366566303131623135386138336638383765336330 -36393961336438666435373638626161383136643037393363616538663564313335633835666438 -66383334663165326164386435643038313663396364393163396163396566376135613532326338 -64393132623362363231666462313137333636386339316635323262613035623763376264396336 -38623865636237663035363234656338613731623436393539396164636532393664373639353137 -38313931613431306631353130373130633130383638303761663164666233323938366462316536 -64616163636364333635626539303239356531306362373835323134373032313863333264633339 -62623734613433616332366164353633383365643365363961613735373733313035613839306534 -35343937346363343665643063353230343461303162346231633735633661316135633331373033 -65386333636435343931663961343134646338383362653864356566303833393335366263626365 -63666332306666653037636664383661656132353965643333366438373032633533376534643065 -30353639333863383337666634386366333565313764646263353435663738396137376136636266 -39613334623439363237363866616137646336643932613866663766383332396433366236303930 -31636434366433396531633338333639646634646634383836373261613662333164636437313366 -38383934653564383730303562386230626132666334306531666136616465383638316164343132 -36373430356239653165633165393065633964666532303566623266666637343666373637653538 -32313934616463353366346632373239346139663765623861393865303136343939373935653161 -30343461626366373064323266643938656138396264393232613239633530646361613634366462 -38373735663162626130643431313361303630386139363762316539306462666264643833393032 -39366238323032643464343731303932383266393130336162643365653437356432623038393830 -62653130376339626132346338356564373163353066343737656531383634366639396566613735 -35336337643831366161353138386432613864393131393330343735343036663766623936363965 -63623337343462653566353334353235373565663261613365376365636633356532316437303561 -65633763623037653266623737633665653666656232656236326263623531663838383530336666 -34656262653630386437626461666439366535623234636366373037336634663430616337313966 -31303065356135393238346461643932333066303438643265653765363964643165343532363964 -35316431626163326133316565313534623664646135313332633366356363363065626565633661 -62663739343364333561613635303966346237643965336330396633333531653738386131623832 -61343162353961346136366661343936613665626166356632326638633464353033363566383837 -62633730636538653661663066643633333165383963623233626132363330396433356539303365 -62336562653261613138393136396266643564396461393635313739653732346339306161356363 -33356333363132353934656631336362663037386238373264303466363361303162633763323433 -38333562633163316337636331306334633231316138376539373032663264353837663765613637 -33666566616665653466306562633637356233313165306139343365383662356134636336313432 -32623830376236336534346264663530303432306532393433353933306665643438343361353830 -61323663623366306238323631643364636163336535316164643537623362303633663961366535 -34326634393063303331346436353266373836343465386137303532383961383364613937316530 -32623935653466613034373763346565356563326266333365616665333866396139393532303335 -39613335363439663134326666663536303966643066313163363335366130653462663130323862 -33386230643631353730343730343030663432393438653035616366356333616239356462353538 -31313435346162363433323835373732366533643137393162613866326365623939343133643336 -62646463303539363162623236656337353263373337623035643464303331376535623762616537 -66656663626463333530313036363765643063343036646437643966326630646232313933616662 -35313263343732626633636238323062643033383336613032613030303263373566353661653635 -62303736306636386466303162303836353464636339356536663736376336363965333939363636 -3165 +61636136343437623131663636306639373237323735633265333330633335623534666338303863 +3837623064393661316332623931656630633834316330360a613537633533613735383365353736 +36373761646566383165323163666534386462656361363630343638313739663436306539613264 +6230376561396464620a333363653562663234353065376161656237376637343361363032643337 +34373335356263633535306164313836386635333332623266396232326165363539633362656564 +32333539303131343732613834396561653932656564633636316565306638643137636361393533 +34396230633462306137376233393663663161656330663638366437353966316561373432363330 +31653334363365343065633632636238313137366664616530396339306136663336373263363064 +38363062643863633032363631666332616536633765383230663164636561303864363664393365 +61646336333164636466633434306238383039633438356233303034336661666365366139396133 +34323332636337393363313361363139663831393730316132623131383833666130613334353537 +63646131366136663066633238303030646464623964326439636563353766383435616235316665 +35643133373162393630386636623162663631336334666337636432356430313761356532306566 +64373236356639376164623463343132363330363862653234643665646462366331396636643838 +38393962366337373939653861666635373430343966356166343663383131613561623834303061 +30363234323663363835623765346631343964333230353930653666336234626336306636613366 +61343239373436653239653062333738373066663938376366396666333962663739326130393461 +62336564636661353433396566353732626365333065353463316631303935316238353061306131 +61303961373534366135383266396131343931333736663037336162313062343834343835353037 +62396464336262393166613163373166613535306131646634346533386361613231373934653766 +66636430656534396363313866393834373563323639343736386538373764613430343937613562 +63666237666239313533386333343133356331333466316539363831393962393435366164343563 +31343831613032383462306430303864346130623036383562663465386536343338386631333662 +36643363613463326564336164656462313537353731656162353635646366306639333333343032 +32313461306537623830333636343238616530396431393039626433333732346331663135333933 +65636239663661643737366638663436623664323138383733623837643161336436396234323539 +61376639656665643530386630623964316335373737626135623330633263393030373665666136 +39316334306462643264646462636132303764653030396237666337656234303931646339633032 +62386636663139306465303264323863346536636665613938366434613639343238356664356134 +65666661393265646665613637643862633263393362666131393234383238643038363735323235 +39623639633434343132653638623834383237396265393030366461333263323235636233373133 +63366336383463336464646230356335333436326433333735323466386639323637393933343863 +64643764643734613433656534376635653439383134363962306562633536653737613565653736 +34313965643661326136356437656638643038666266366131646131353238333536613837326235 +34376662623033623133326639353430336561363331386335643161633737643534313765333833 +64376231613130633138623966393261643263356365323466633466396561333530653030616266 +35303037326139663035323732636236393133396230353766323261366263613334336163326135 +38393363363035633637313062323361346137653930316362616334323261303937356431363436 +36303765663366303137663330396339386334393831326435376239663337383133393934316266 +65316336623336663238633132383132333063396464656236313630306363616538313665383939 +63623566623364323266363736323565306233393834303463363031373434323436333835613333 +36646266633031383263373961393637303861633064663330303866363731363235356664373063 +37306436306635626665626166346262633830363337366230366234363663666439323336313932 +35333235323932316137356631633266343032626235356633663431383663626334383064336262 +39663931623332393739316563613735633964333762623664663231353639623638663433653135 +34616334383637336164303537616465656338326230633062376633366539313831326364643466 +36663162396631333833633631656162366439326137323162303635613031613734613736613662 +39393432633564373661313134633436316633616662643739363239643265636335353632333064 +35653463326261623661373638393436363765343338343735333833336365346363313739396339 +66303964353233343637333332303832326138323732326632353034306235386564643762613136 +32363164343936663036376332376461363134373230313166346536643066306435323365306533 +33326130343233653138376430653666376234393736306562613138646165663532613638663135 +61333134336532633036613132353132323664366432306566323732376165623335623766646132 +65633638393335336332333364386235626536646138363063353531613466393434333539393862 +37643564353437613030306534623738383233336561613631366136363638353334656666623161 +64373666653061356231333566313936633538623937656438306565353763363363343764633230 +36353065303438616161633137326162646330663965663632636234396162623235643633306634 +62323065323230373963383762623136613333363534343937613638333431393965653461346433 +63333731323964653530343932333966613637396162663132386665386561323461396236303931 +31303861636266316663613832353666333366653332356636393364393262343835303962626337 +32333831643262313332343864373532623533333365393861313937386335643331383633613137 +34386230343833653034386133353031383532616662633261633364336335663735353038393963 +65396631373130336237646462316133303435356632613138353363343735616164306339366366 +33346164316262633339656266386438373532613534353164656339336235383263393038386566 +38303163383533313862366235333361303434663165613334623635346662633934643933303633 +32626337333535613162306663393362353131643233383838363134333635663663366461333561 +63383463363864303033376631326333336132356337306330376432383063643161613235363931 +31636465646435623431323362363231393365303338326235316238636337656531643966633938 +36646434663038336162366562323134323336623233333032396236366631376433343339313938 +39663661323530643339613761333561646231313964663131323334393565313739653766313136 +31653332306565336532393062323264633039393137313937343162376230356133663365363938 +63393435333833633435616563343865626332353931653831616131326435663535653361366162 +31613463356231653632396535316137633330316438383730316531663739656238316563366537 +63663061623862356364313638613064393533666566316365353539303536383536353833643663 +30333164643031353431396164656363353337366364646134616330663038313063636139623039 +38386533613136626537643135353030623534663933303636306130313630663165623139316163 +34363336663839306562333061653131373866313932363064626238313664623566376437336437 +36663739633861653637333731393731303232643935646164626537333137626163653666656263 +62303335343537386461653431383030383361633532336531366439653663353233373661613264 +32656134633766343732666538616239393338323562333264386134616463623934333332373132 +32323933633138393861393938653832363832363062313363613166376266313735613863636266 +65663464613232643436396535653632323339373664393031396230363262323464626439613930 +61313939393233306533646439396630623337613038313038623764326134663066363636343637 +63663330323938616561376138633961636433386361376431376433366339616262306330313961 +64353034373639393166663861633632356631383339623633306534663235333164653062643762 +33386231356463323838633638396366643162316537633834646539396263393765393638353433 +36343765323133633965353161336337313961303737333339373463623036373033333830353634 +39653764666233626330346239336636373338393061623732626463623730303365643866643830 +65633834656264356339363230323465663737383333653862353030663565663665666436333634 +36663933363661303832306563346130623364663130363239636130633435396263323932663662 +38383238656364306539643439373138353032636335396262393661303435336536306436376130 +66396636373466313063313733386631326636336262326366383337663665393962336433626262 +31376365623232393835616239303937653231653237303035666636306234643137626435386433 +34643332626430396565366233663638633131663365393536396534346635336163643930626633 +61646366613331323965346532663737306135363639316437323765303464353962633338303733 +33386135323739303033326333363031623830356564663635376533373237643061386232646433 +65316631633764323731666138653333333931323537323365633336333235643063396564633934 +62366336383037643032376663373064663539353861393365353936653365633731616464356535 +35303330373830313235306234356436643036346436386562626233396239636237353961343530 +36643162623966323863333162383064656133643637383637396564656532386235386434396133 +63373766313261316335613035313831383961663636366231373565386335333134623237386434 +65656531393230383830343461663137353765356433656334393062626539666530313938323930 +63646332333834306533376662366232653236646366623364623932313966356437363661633939 +65306263343331373462616165643233656132363637316436383830366339303063623536353339 +62626666663737313463343865376465626239623866643464633632306534386638346531383934 +63616639643938633333313765333761373662363462316263656233326438303033636637373334 +35326165306237663530333136306633613238396536386338316236616333623733356332643333 +64366335336366636431623131656238373237653439626632643031643264396433383030313632 +33313639623661326230613064326662323432366337623166313232663737313634396430316330 +64323766353733323633366235343363393365343632353235373936663066643035386431393630 +38393863663735363130343535343164343939663837346165346561633434303634643433613432 +65376538363236363066326135373361336565323331653061373837333865396134366162376634 +32396135333837363966663436383832363038323732323037366130383138346337393165333336 +39303463626439303666323462383763653461396437616135656134336363623831663539356432 +36313833633531646537623865303532376265663735666134616432363266636132366334653666 +63346565383534616634343166643034666135356638663135336330663132363066346439356138 +37306130363664386566336362346563386563313763393832396334666665336534613238643130 +66366638363031653133396161616663313233633834336334393437613562326365623662313932 +63346163643830336265333361626534303932373839306539663366393430356462333837313236 +37316464393634353030353035313766633066323466613632363735326563323664303663313932 +33313066623132383761376361373830613932366137663230393236383662333037346138626163 +38336566343133306164653233396363363734323733623932396239656232633565326164316533 +34363736346633353361643035646339663234663466386334306538316331303065366238383231 +31343036366332373030653338613762356630366438656334623162356633303135643331396366 +61653034643966613465393536353939333935653236613564353738343061643435616635353164 +65323236303230623430306232383165343361366338313164643862373231343266333531623762 +37633763353539336637356463303334396430346134386535303232666538386531306335373937 +30663630303237616662343333623965643933333732323838353831396433613331313332623734 +38626532646538333665323039303637396466373930363064353138353734336237396636306637 +34303963346135386664353361616466333031336664373563323335396231343339316261383130 +37303836373834353436386365333032343863353632623365653261316231666536303136663865 +37383665343865623961613233373633386132613832376361373963386137613839373238356130 +65643533656665393135376663333563383136373064303432356437323465393531653232303030 +32643035353834366631616436313465623164383963656562646533383864363035653834323935 +32303633303063653835393465653038356237383831643430643233326339613133386463306436 +35613434653737393239333438336163356464363861626135666438343030306635376430386661 +31653236393932303631623837363762306635303830313034396139323035333539633233353634 +36646363623538303638656263653137326662613734353364393264323536383935626332343263 +32633763656338326638653234366437386434363464643062373761646661643032313837613365 +31313134623333336537633930303533663233336632343966326665343466353732633335336230 +38323662386135373535313931326461343635396466643831633838353336663635303539333031 +32353338373930393430356231353635643439646434366234353965316137356133323233366538 +34626138663133656338333635333032653439396536313133613263643363383637373234306532 +33356263376231356164366665393166303436346164353363353738333632333338353766616163 +62336231333934366131306161323361383535306364346339343732373335323031303865656564 +66386539363232383438323537326364613063356138313862373139326563643131663164633737 +38343863386634333230316263353366636332623139613363613165393263316235366431393139 +61653437383031393233613034656664373063646630313339363532656333626130666631616238 +65383937636534663462326432343661366231306263323134643662616237393437373261623639 +30353665646263646564636163626266646337393765393266366531646461613537653839623239 +343061393862616361396632633030613836 diff --git a/chatops_deployment/ansible/roles/alertmanager/templates/alertmanager.yml.j2 b/chatops_deployment/ansible/roles/alertmanager/templates/alertmanager.yml.j2 index 489656ba..49c69324 100644 --- a/chatops_deployment/ansible/roles/alertmanager/templates/alertmanager.yml.j2 +++ b/chatops_deployment/ansible/roles/alertmanager/templates/alertmanager.yml.j2 @@ -1,6 +1,6 @@ global: resolve_timeout: 5m - smtp_smarthost: ${{ alertmanager_smtp_mail_server }} + smtp_smarthost: {{ alertmanager_smtp_mail_server }} smtp_from: cloud-support@stfc.ac.uk smtp_require_tls: false From 1d34310f0a80f1e0a2651332dc284238c91df680 Mon Sep 17 00:00:00 2001 From: Kalibh Halford Date: Thu, 18 Sep 2025 15:00:55 +0100 Subject: [PATCH 06/12] MAINT: Install requirements before linting This will make sure the linter can check non-core collections for formatttttttting --- .github/workflows/chatops.yaml | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/.github/workflows/chatops.yaml b/.github/workflows/chatops.yaml index d9fce0ad..9dc1cbdb 100644 --- a/.github/workflows/chatops.yaml +++ b/.github/workflows/chatops.yaml @@ -29,13 +29,7 @@ jobs: - name: Check Ansible run: | - pip install ansible - pip install ansible-lint cd chatops_deployment + pip install -r ansible/requirements.txt ansible-galaxy install -r ansible/requirements.yml ansible-lint --project-dir ansible - - - name: Run ShellCheck - uses: ludeeus/action-shellcheck@master - with: - scandir: './chatops_deployment' From 30276b92b5e359d047e5806361fd455531168ae7 Mon Sep 17 00:00:00 2001 From: Kalibh Halford Date: Mon, 13 Oct 2025 12:16:38 +0100 Subject: [PATCH 07/12] MAINT: Update secrets --- .../ansible/dev/group_vars/all/vault.yml | 137 +++++++++--------- 1 file changed, 69 insertions(+), 68 deletions(-) diff --git a/chatops_deployment/ansible/dev/group_vars/all/vault.yml b/chatops_deployment/ansible/dev/group_vars/all/vault.yml index c82e087f..2975d6af 100644 --- a/chatops_deployment/ansible/dev/group_vars/all/vault.yml +++ b/chatops_deployment/ansible/dev/group_vars/all/vault.yml @@ -1,69 +1,70 @@ $ANSIBLE_VAULT;1.1;AES256 -61613632663635663262393861333266643261663935373835303362326333303864383237353266 -3166316562356533353536383431616139363362396566320a633039393165643465393133353463 -36643036363963333832646137353535663936356535643432386237393761303933396561653066 -3431353531646431660a316365333865383463396530623064316662656138303234636232306362 -39386130343235306463656532666163323536383236376563636363653231393466313434313535 -33333962616530643139626338663364346332636431303834366163323465666262623638393231 -61396239623337626662663235613731383436623830616263393134663835346638376538663761 -38333064663031313266306162373264316238346336613265666362303664356537616236336133 -31373962663462376539383161333537373939653463353966396364353635303162346234333965 -64643533613363363861633236316161343862376563646466313566626539643365323464313535 -62633430333731333238366435336130623063366462393966313339303730363431366537353562 -39636231303964306463646532316663386636363665653862616135643736383631666336336565 -39623233326465393530376539356430343835656238623531393538363530636463663964333164 -65633436306330323336313132666438353835383133303062623731663530313434643032383466 -39333431363538323731343536306439393865666362346532646264663931623838376134646530 -30313537336135366261333239663565353365653636396166376363363937666233663235303864 -32626236616331656232633839646335623432366132643637353031376231383462326438616239 -38336234633763393038303434336162333764653030343564326365393435653537313630313336 -63656562333337333464646565303837316236393566326461303139613738343262323762333738 -66373330343034653138303939383765613765346662333137323034353466336261333464396561 -39653366383333346639366635303835656361383066373430333732626639623037366166346161 -65633833336137626639636166653634396633626639653163366330643332363636626161626632 -34303065623633656631363538633337343733306461656439306332386231323635313333316264 -38396165326464666264623365346139646563323566363065333638326238393431323261386435 -35383238326163626632623234363338626232363063646439343565633530616462333230353536 -38343634643938373930356230653535656639346263333036643035626134393835363632653732 -39336130613834373636623564643532313437383261653230396430306439656637376564316630 -32643066623539613838333136346138343563383635313162326134666530306237363162383365 -64373239653763663736656134633338393261336133643132306239613163326633653261376130 -37363138356435636333386238643037333666353132383066393839383734663364336130336166 -66666335613165636465343335343465336561306237613166363539316637653465353166306661 -66313930336337356532666437643438646332343631386565323264376631343462653235636664 -66633635623231383832623533643033343536383564656333663863623031613733656566646464 -34343934306233616564376535366232306530303033313564326133393431316138303234663834 -35343066623433303433393361323539616132306337333930316235616264663839626139346362 -31326364646663393339363864623162663465303439303866393032366331363831663938666130 -33393862383662653736623765393566646666636338376534613330636562663462303532626631 -39393561313836393636663334616534396361386535616432653330313964333561363633383434 -30633163623432343234393761636365363234653663366561636131363261323962316364656436 -36316530616531653966306164303866633034393832666630633439343434653062306163653731 -66313333663562386438613436363930313766363963383633636263356331383837663532613930 -33623539323731333938356364666238666662653461396164363566383165613237636364396532 -37323566656361656538363034333563353463396366663832636361666535666438366337393066 -64396530623665373835623030363863396134613362346437353834633035396132653935623431 -34313966613139633964313233303366313033643064353861356632333334333864623864363230 -38623038323230316436366161323662666566616363303631393036646436623032343131336330 -37663965353161323966656439376365393466346137663533346632316331383533626633306566 -33343039653165613664366137663236666535343965616666636565633438663764386461646539 -34616539373634383061323935373066626336306634393163653362386163336339623633666335 -66646533636536313565653133623237303538373662633439383532303561666366653636356538 -35623737653839643532343137373033353663636666643130643265633238663166326438363636 -30333765653934653731386330666366303332303766366238343938643430373666616634326333 -66663664343366393735386339623239336532626263346566643636396439343938383032353531 -33363838353961383633663732316336653366383061386237623134626262663036636366363737 -38363139336137626530333633333164626461653061383132623630343933336665356365623164 -61333162366665636233326261653137316266393433373737386562393630343666666234346164 -37393163646239326164326633383436343063636431326264623035666539323230376236393065 -32663231363263303466376331636165646534643863366431326435646162633339653734366431 -38353766376233313533333532653562316365333534666461623236303262373464623139393064 -37616234653232653765386536643164363438653930373837336464616566643738326662383333 -34623833373335656134373839626537303339643734373234363837643664303264373930363161 -64356262326663376438313937336637373836623937343837396164316533313062636639316636 -36356164323466316261656463373765393433663632376638393239666461633765623761653733 -33373131346631363139616437386334303663363465353665343532376663646663366234366563 -32306633653635383163656536653333366436636138313434663636393538356261373835653233 -31373964656339343663306262626630306366336465396566363366366166633363316366616464 -39623737323063353463353362323631333163646430633664376332363730373737666136326162 -38306163393965393166 \ No newline at end of file +39393939303538303161303261336535616435323666376131336135336435353361383436656233 +3936646432653237306134613633613533346362353663390a363639633664383137626263643430 +32656666366663363838363363623462623831356535626465356665633664666237326565383862 +6564323236333431310a313533303539326662663136623762313335376265653865346636303665 +65646464383666643562633834323365613037393033633830663739626233663462343632396331 +34353730393664653665613837346565333434386136346564613230376236396534313062353834 +64333637333266613863396432623466366132366239326339353936656135643736616535326436 +61306434633131646538346332623830336437623436373864386134646136636432313834346466 +64373364323933636434316437663764663837353166376635616633363338393933653033343366 +33656266366130366366633262323532663561333064323962613765343162383434303733646363 +65616632376566356562333334616535303233323334613961323763373365343866336331343066 +30386134316432326334626539343766343263623433333566636637613638663762666235666134 +62316432383836393439373037323766653763343031356664353364336634333032386535323263 +38663233396263363636666639633063316438626138656534376436353834333461646366383265 +38306462363933666466333736333031633533313330666330623137393265376236613030653333 +32633865353536343936393230323064333535623332376438343265306238653039383839653864 +33626435656533646534363039353038643030346462616262343736356262393862386362643635 +39303432376163633662626631303339363531333434383663336230383037356638336134666435 +32616131666137323234623837303765666633353231366266303737626139623534356239373166 +65643961663436383037656437633361613938306634653766373439343034623733373066623330 +63346233303162316638333437313664663263663639663964393566646432363039303838616431 +61303538613531333061373662363635643831353266386433343633333963363639613732373162 +38373835393964616133313432626631626533626164373930636436373065613835396533333263 +38363338643832623233653461613137613561303533663938353865613465303365333237353136 +65306534623036396261316432306566366533626532363830636536643761303934666439326238 +63356234663931646135633831303432316332363636306639666535343032376439373434383632 +34393164363266386566633466663233383131366132653638323338393931363739323063396663 +66363132303862613431323934333564336435643862346635666264653430663334653866326635 +34346364633335613764383138326237373139306132656235363661393266396538663639653362 +30633563656138393536386432326332363539663866626263326163336365373238633861653136 +30303934323834666639386333323939653465633230333538353634353164343663656434643636 +35663630316235396262663636306463623166383830353430326632643463326364646564336664 +38316331353237313663323538656464303033386437636431323061303536383636626237626364 +32653535363462663436383866666635636331346431353731386163313632303663313636373239 +61373865666338646230333664383265633332356166316535363335353530376532366536306336 +35303730613833393666373235643432393661366364623535656563343564633234663934386534 +30636562643666613065316538306266366633383938646430353932376362633130333331613434 +39306138346131373731633035313462646231363863353438623938323037633532343362636231 +39363334333638646439373263613338336139303132373636336162333262613939353534366133 +35343235303833376638376537373062383032323361343539356463616133626438633762393337 +36643531396666333235323231653661633333326539396434636561663538356234373861343966 +36336432343566366634663833303337623338363833353561626636366139633864646333333036 +62363937336233633338636539396437346434366165386536363536653339363261343164646666 +38663561663138346366626166353561636639376662343335653735623130323034316232636134 +37623630353963616138306530356435303138316430613064626463663361313537666564636634 +33393466393766323234643330656433613435323839333631376334376361323931393738663735 +63616665363261633738303538373733646130396436616537336432336561353238306230336462 +61646534393939356135643064323630336465623733623663376332323838316165363161616561 +35653736373763343262393661623633313431393539376665353966353336623137306132353237 +64336139316164626431656431373365313836636334623138333831313166613930363735313236 +38303566346464306565336635303661613536373363613130383830333134373833353161393333 +34316530643832303464336338333030373865333563616238393036393862303335333132393139 +34613564323737306566386130333061326231353561373361383339313836626439373431363762 +63326263343632323463363764633839643438323737653932663438653632653438636261646536 +64393138663037613031316436343664636664333136633665623063363233303833616566353264 +32306338356238653362616133616265623833353930623633346139663865393338613464663662 +38333635626536663065373233303566336462613437373430613238366632646266656239643536 +37636566653237613361386239303763616435333333616331303363666564343462393730343736 +35663632386137653263363435636338666434303832346132336536316531366438346530383462 +36356231333237666634643838316533626133663264326162393465353734653136363236303933 +62366436316436313233303631356163393138653339356664303264653464633639376438616637 +31373635363337643066393662633938653731623066353035313635386536366536393334623963 +32643134633964363363353164363162653530353362623033633539396238373931363031333462 +61343266313964346238313833393361663763353866353262376564366266666638643566313533 +63306339333530356263353736333234353732336132313439303365656538643330366430633761 +64636161363535336538613736316337613539376162653533353530656463666638373134393062 +63633464633936613063626430663736613836383834316130383662646466653336613035373365 +36386561613734623762396664613162353764373739623531366266376366346131353037613563 +3938 From 4552cb9e44a5c72c02ff98f80680679d5cdf644e Mon Sep 17 00:00:00 2001 From: Kalibh Halford Date: Mon, 13 Oct 2025 12:18:17 +0100 Subject: [PATCH 08/12] BUG: Change ownership of elasticsearch dir THe elasticsearch service cannot access this directory as root owns the top level folder --- .../ansible/roles/elastic/tasks/elasticsearch.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/chatops_deployment/ansible/roles/elastic/tasks/elasticsearch.yml b/chatops_deployment/ansible/roles/elastic/tasks/elasticsearch.yml index 88cc3a24..dcd736c0 100644 --- a/chatops_deployment/ansible/roles/elastic/tasks/elasticsearch.yml +++ b/chatops_deployment/ansible/roles/elastic/tasks/elasticsearch.yml @@ -39,9 +39,9 @@ - name: Set permissions on volume become: true ansible.builtin.file: - path: /var/stack/elasticsearch/data + path: /var/stack/elasticsearch state: directory - owner: root + owner: elasticsearch group: elasticsearch mode: "0774" recurse: true From 32e1defc7087a7e464faeccb03865be0c2786844 Mon Sep 17 00:00:00 2001 From: Kalibh Halford Date: Mon, 13 Oct 2025 12:18:44 +0100 Subject: [PATCH 09/12] TYPO: Fixes typo from a find and replace --- chatops_deployment/ansible/roles/haproxy/tasks/certbot.yml | 1 - .../ansible/roles/ssl_certificates/tasks/ssl.yml | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/chatops_deployment/ansible/roles/haproxy/tasks/certbot.yml b/chatops_deployment/ansible/roles/haproxy/tasks/certbot.yml index fbf2668f..b3266f13 100644 --- a/chatops_deployment/ansible/roles/haproxy/tasks/certbot.yml +++ b/chatops_deployment/ansible/roles/haproxy/tasks/certbot.yml @@ -101,4 +101,3 @@ ansible.builtin.systemd_service: state: restarted name: haproxy.service - when: haproxy_copy_cert.rc == 0 diff --git a/chatops_deployment/ansible/roles/ssl_certificates/tasks/ssl.yml b/chatops_deployment/ansible/roles/ssl_certificates/tasks/ssl.yml index 1302f26f..6f73423b 100644 --- a/chatops_deployment/ansible/roles/ssl_certificates/tasks/ssl.yml +++ b/chatops_deployment/ansible/roles/ssl_certificates/tasks/ssl.yml @@ -1,12 +1,12 @@ --- - name: Get key info - community.crypto.openssl_privatekey_info: + community.crypto.openssl_ssl_certificates_privatekey_info: path: "./{{ env }}_ssl/{{ service }}.key" register: ssl_certificates_privatekey_info ignore_errors: true - name: Get certificate info - community.crypto.x509_certificate_info: + community.crypto.x509_ssl_certificates_certificate_info: path: "./{{ env }}_ssl/{{ service }}.crt" register: ssl_certificates_certificate_info ignore_errors: true From 20bfc366504808ef8fe9f23878bd1e6788fcb03c Mon Sep 17 00:00:00 2001 From: Kalibh Halford Date: Tue, 21 Oct 2025 11:40:35 +0100 Subject: [PATCH 10/12] lint: Add changed when to command Add a changed when clause so ansible correctly reports when this task changes. --- chatops_deployment/ansible/configure.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/chatops_deployment/ansible/configure.yml b/chatops_deployment/ansible/configure.yml index d49cfd78..c6f7d5ca 100644 --- a/chatops_deployment/ansible/configure.yml +++ b/chatops_deployment/ansible/configure.yml @@ -16,6 +16,8 @@ - name: Fix MTU become: true ansible.builtin.command: "iptables -I FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu" + register: _ + changed_when: _.rc != 0 - name: Set up filebeat hosts: stack From 5bfc68928de261f5a2be212e60da6205890f8a42 Mon Sep 17 00:00:00 2001 From: Kalibh Halford Date: Wed, 22 Oct 2025 08:37:50 +0100 Subject: [PATCH 11/12] bug: Add ansile-lint as requirement ansible-lint is required for the workflow to run so I'm adding it to the requirements file. --- chatops_deployment/ansible/requirements.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/chatops_deployment/ansible/requirements.txt b/chatops_deployment/ansible/requirements.txt index b5851394..d341d260 100644 --- a/chatops_deployment/ansible/requirements.txt +++ b/chatops_deployment/ansible/requirements.txt @@ -2,3 +2,4 @@ bcrypt passlib openstacksdk ansible +ansible-lint From 1411cd11dd8695db5945660b0fb8839713ee9d1f Mon Sep 17 00:00:00 2001 From: Kalibh Halford Date: Wed, 22 Oct 2025 09:29:13 +0100 Subject: [PATCH 12/12] bug: flip changed when statement When the rc is 0 the command ran successfully. --- chatops_deployment/ansible/configure.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chatops_deployment/ansible/configure.yml b/chatops_deployment/ansible/configure.yml index c6f7d5ca..0fef540f 100644 --- a/chatops_deployment/ansible/configure.yml +++ b/chatops_deployment/ansible/configure.yml @@ -17,7 +17,7 @@ become: true ansible.builtin.command: "iptables -I FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu" register: _ - changed_when: _.rc != 0 + changed_when: _.rc == 0 - name: Set up filebeat hosts: stack