fix: remove argos tarball transfer task, update argos release version to latest, and adjust backend port for Titania
This commit is contained in:
@@ -48,15 +48,6 @@
|
|||||||
state: directory
|
state: directory
|
||||||
mode: '750'
|
mode: '750'
|
||||||
|
|
||||||
- name: Transfer and unarchive git archive
|
|
||||||
become: true
|
|
||||||
ansible.builtin.unarchive:
|
|
||||||
src: "~/rel/argos_{{argos_rel}}.tar"
|
|
||||||
dest: "{{argos_directory}}"
|
|
||||||
owner: "{{argos_user}}"
|
|
||||||
group: "{{argos_group}}"
|
|
||||||
mode: '550'
|
|
||||||
|
|
||||||
- name: Template docker-compose.yml
|
- name: Template docker-compose.yml
|
||||||
become: true
|
become: true
|
||||||
ansible.builtin.template:
|
ansible.builtin.template:
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
services:
|
services:
|
||||||
argos-searxng:
|
argos-searxng:
|
||||||
build: .
|
image: git.helu.ca/r/argos:{{argos_rel}}
|
||||||
|
pull_policy: always
|
||||||
depends_on:
|
depends_on:
|
||||||
- kvdb
|
- kvdb
|
||||||
environment:
|
environment:
|
||||||
|
|||||||
@@ -1,34 +0,0 @@
|
|||||||
---
|
|
||||||
- name: Stage Argos release tarball
|
|
||||||
hosts: localhost
|
|
||||||
gather_facts: false
|
|
||||||
vars:
|
|
||||||
argos_repo_dir: "{{repo_dir}}/argos"
|
|
||||||
archive_path: "{{rel_dir}}/argos_{{argos_rel}}.tar"
|
|
||||||
|
|
||||||
tasks:
|
|
||||||
- name: Ensure release directory exists
|
|
||||||
file:
|
|
||||||
path: "{{rel_dir}}"
|
|
||||||
state: directory
|
|
||||||
mode: '755'
|
|
||||||
|
|
||||||
- name: Fetch all remote branches and tags
|
|
||||||
ansible.builtin.command: git fetch --all
|
|
||||||
args:
|
|
||||||
chdir: "{{argos_repo_dir}}"
|
|
||||||
|
|
||||||
- name: Git pull
|
|
||||||
ansible.builtin.command: git pull
|
|
||||||
args:
|
|
||||||
chdir: "{{argos_repo_dir}}"
|
|
||||||
|
|
||||||
- name: Checkout specified argos release branch or tag
|
|
||||||
ansible.builtin.command: git checkout "{{argos_rel}}"
|
|
||||||
args:
|
|
||||||
chdir: "{{argos_repo_dir}}"
|
|
||||||
|
|
||||||
- name: Create argos archive for specified release
|
|
||||||
ansible.builtin.command: git archive -o "{{archive_path}}" "{{argos_rel}}"
|
|
||||||
args:
|
|
||||||
chdir: "{{argos_repo_dir}}"
|
|
||||||
@@ -26,7 +26,7 @@ agent_s_rel: main
|
|||||||
anythingllm_rel: master
|
anythingllm_rel: master
|
||||||
athena_rel: main
|
athena_rel: main
|
||||||
athena_mcp_rel: main
|
athena_mcp_rel: main
|
||||||
argos_rel: main
|
argos_rel: latest
|
||||||
arke_rel: main
|
arke_rel: main
|
||||||
angelia_rel: main
|
angelia_rel: main
|
||||||
kairos_rel: master
|
kairos_rel: master
|
||||||
|
|||||||
@@ -122,7 +122,7 @@ haproxy_backends:
|
|||||||
|
|
||||||
- subdomain: "daedalus"
|
- subdomain: "daedalus"
|
||||||
backend_host: "puck.incus"
|
backend_host: "puck.incus"
|
||||||
backend_port: 23081
|
backend_port: 20080
|
||||||
health_path: "/api/health"
|
health_path: "/api/health"
|
||||||
timeout_server: 120s
|
timeout_server: 120s
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user