refactor: update project references from Agathos to Ouranos across documentation and configuration files

This commit is contained in:
2026-03-14 01:15:02 +00:00
parent d996d179eb
commit 06118fbd40
38 changed files with 78 additions and 78 deletions

View File

@@ -72,7 +72,7 @@
openssl req -x509 -nodes -days 365 -newkey rsa:2048
-keyout {{ haproxy_cert_path }}
-out {{ haproxy_cert_path }}
-subj "/C=US/ST=State/L=City/O=Agathos/CN=*.{{ haproxy_domain }}"
-subj "/C=US/ST=State/L=City/O=Ouranos/CN=*.{{ haproxy_domain }}"
-addext "subjectAltName=DNS:*.{{ haproxy_domain }},DNS:{{ haproxy_domain }}"
when: not cert_file.stat.exists and 'certbot' not in services

View File

@@ -1,4 +1,4 @@
# HAProxy configuration for Agathos Titania
# HAProxy configuration for Ouranos Titania
# Managed by Ansible - Red Panda Approved
global

View File

@@ -10,11 +10,11 @@ keeper_group: robert
keeper_home: /srv/ponos
watcher_user: poros
watcher_uid: 520
deployment_environment: "agathos"
deployment_environment: "ouranos"
ansible_python_interpreter: /usr/bin/python3
# Incus configuration (matches terraform.tfvars)
incus_project_name: agathos
incus_project_name: ouranos
incus_storage_pool: default
# Gitea Runner
@@ -89,7 +89,7 @@ rabbitmq_permissions:
smtp_host: oberon.incus
smtp_port: 22025
smtp_from: noreply@ouranos.helu.ca
smtp_from_name: "Agathos"
smtp_from_name: "Ouranos"
# Release directory paths
github_dir: ~/gh

View File

@@ -92,7 +92,7 @@ searxng_group: searxng
searxng_directory: /srv/searxng
searxng_port: 22083
searxng_base_url: http://oberon.incus:22083/
searxng_instance_name: "Agathos Search"
searxng_instance_name: "Ouranos Search"
searxng_secret_key: "{{ vault_searxng_secret_key }}"
# SearXNG OAuth2-Proxy Sidecar

View File

@@ -423,7 +423,7 @@
openssl req -x509 -nodes -days 365 -newkey rsa:2048
-keyout {{pplg_haproxy_cert_path}}
-out {{pplg_haproxy_cert_path}}
-subj "/C=US/ST=State/L=City/O=Agathos/CN=*.{{pplg_haproxy_domain}}"
-subj "/C=US/ST=State/L=City/O=Ouranos/CN=*.{{pplg_haproxy_domain}}"
-addext "subjectAltName=DNS:*.{{pplg_haproxy_domain}},DNS:{{pplg_haproxy_domain}}"
when: "'titania.incus' not in groups['ubuntu']"
args:

View File

@@ -3,7 +3,7 @@
# Incus configuration (should match terraform.tfvars)
storage_pool: default
project_name: agathos
project_name: ouranos
bucket_role: admin
# Service-specific variables (must be provided)

View File

@@ -2,7 +2,7 @@
# Role metadata and dependencies
galaxy_info:
author: Agathos Project
author: Ouranos Project
description: Manages Incus S3-compatible storage buckets with Ansible Vault credential storage
license: MIT
min_ansible_version: "2.9"

View File

@@ -1,5 +1,5 @@
---
- name: Stop Agathos Sandbox Uranian Hosts
- name: Stop Ouranos Sandbox Uranian Hosts
hosts: localhost
gather_facts: false
vars:
@@ -16,7 +16,7 @@
tasks:
- name: Stop Uranian host containers
ansible.builtin.command:
cmd: incus stop {{ item }} --project agathos
cmd: incus stop {{ item }} --project ouranos
loop: "{{ uranian_hosts }}"
register: stop_result
failed_when: stop_result.rc != 0 and 'not running' not in stop_result.stderr

View File

@@ -1,5 +1,5 @@
---
- name: Start Agathos Sandbox Uranian Hosts
- name: Start Ouranos Sandbox Uranian Hosts
hosts: localhost
gather_facts: false
vars:
@@ -16,7 +16,7 @@
tasks:
- name: Start Uranian host containers
ansible.builtin.command:
cmd: incus start {{ item }} --project agathos
cmd: incus start {{ item }} --project ouranos
loop: "{{ uranian_hosts }}"
register: start_result
failed_when: start_result.rc != 0 and 'already running' not in start_result.stderr