Skip to content

Commit b868438

Browse files
committed
fix(infra): resolve yaml linting errors in ansible playbooks
- Added required spacing before inline comments in 04-aleph-habitat.yml - Removed trailing spaces in multiline blocks in 05-aleph-protocol.yml
1 parent b3154d9 commit b868438

2 files changed

Lines changed: 7 additions & 7 deletions

File tree

QuanuX-Infra/ansible/04-aleph-habitat.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
ufw:
5555
rule: allow
5656
proto: tcp
57-
port: '5432' # DuckDB-Oculus emulated pg-port
57+
port: '5432' # DuckDB-Oculus emulated pg-port
5858
src: "{{ hostvars[groups['panopticon_nexus'][0]]['internal_ip'] }}"
5959

6060
- name: Aleph Protocol - Vault Fencing (panopticon-vault)
@@ -65,14 +65,14 @@
6565
ufw:
6666
rule: allow
6767
proto: tcp
68-
port: '9000' # MinIO S3 API port
68+
port: '9000' # MinIO S3 API port
6969
src: "{{ hostvars[groups['panopticon_forge'][0]]['internal_ip'] }}"
7070

7171
- name: Strict Fencing - Accept S3 reads exclusively from Oracle IP
7272
ufw:
7373
rule: allow
7474
proto: tcp
75-
port: '9000' # MinIO S3 API port
75+
port: '9000' # MinIO S3 API port
7676
src: "{{ hostvars[groups['panopticon_oracle'][0]]['internal_ip'] }}"
7777

7878
- name: Aleph Protocol - MCP Translation Layer Conditioning (panopticon-nexus)

QuanuX-Infra/ansible/05-aleph-protocol.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,15 +49,15 @@
4949
Documentation=https://min.io/docs/minio/linux/index.html
5050
Wants=network-online.target
5151
After=network-online.target
52-
52+
5353
[Service]
5454
User=minio-user
5555
Group=minio-user
5656
EnvironmentFile=/etc/default/minio
5757
ExecStart=/usr/local/bin/minio server $MINIO_OPTS $MINIO_VOLUMES
5858
Restart=always
5959
LimitNOFILE=65536
60-
60+
6161
[Install]
6262
WantedBy=multi-user.target
6363
@@ -192,7 +192,7 @@
192192
access_key_id = "{{ minio_root_user }}"
193193
secret_access_key = "{{ minio_root_password }}"
194194
region = "nyc3"
195-
195+
196196
# Enforce Hive Partitioning for DuckDB Oculus partition pruning
197197
[storage.manifest]
198198
partition_format = "year=%Y/month=%m/day=%d/hour=%H"
@@ -325,7 +325,7 @@
325325
SET s3_use_ssl=false;
326326
327327
-- Force Byte-Range Requests and Hive Partition Pruning against the Vault
328-
CREATE VIEW IF NOT EXISTS quanux_telemetry_live AS
328+
CREATE VIEW IF NOT EXISTS quanux_telemetry_live AS
329329
SELECT * FROM read_parquet('s3://quanux-telemetry/telemetry/*/*/*/*/*.parquet', hive_partitioning=1);
330330
331331
- name: Install Native PostgreSQL Database

0 commit comments

Comments
 (0)