Skip to content

Commit 9c2b83e

Browse files
committed
Yamllint
Signed-off-by: Mihai Criveti <[email protected]>
1 parent c4eeae6 commit 9c2b83e

File tree

5 files changed

+14
-12
lines changed

5 files changed

+14
-12
lines changed

.github/workflows/docker-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,8 @@ jobs:
7676
# ----------------------------------------------------------------
7777
- name: ✅ Verify commit checks passed
7878
env:
79-
SHA: ${{ steps.meta.outputs.sha }}
80-
REPO: ${{ github.repository }}
79+
SHA: ${{ steps.meta.outputs.sha }}
80+
REPO: ${{ github.repository }}
8181
run: |
8282
set -euo pipefail
8383
STATUS=$(curl -sSL \

.yamllint

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ rules:
77
# Ignore every YAML (and *.tpl) file under the Helm chart directory.
88
ignore: |
99
charts/mcp-stack/**/*.yaml
10-
charts/mcp-stack/**/*.tpl # if you template using .tpl files
10+
charts/mcp-stack/**/*.tpl # templates using .tpl files
1111
charts/mcp-stack/**/values.yaml
1212
charts/mcp-stack/**/Chart.yaml
13+
charts/mcpgateway/templates/*.yaml
Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
# IBM Cloud
2-
region: eu-gb
3-
prefix: mcpgw
4-
k8s_workers: 1
5-
cluster_flavor: bx2.4x16
6-
kube_version: "1.29"
2+
region: eu-gb
3+
prefix: mcpgw
4+
k8s_workers: 1
5+
cluster_flavor: bx2.4x16
6+
kube_version: "1.29"
77

88
# Databases
99
postgres_version: "14"
10-
redis_version: "7"
10+
redis_version: "7"
1111

1212
# Application
13-
gateway_image: "ghcr.io/ibm/mcp-context-forge:v0.1.1"
13+
gateway_image: "ghcr.io/ibm/mcp-context-forge:v0.1.1"
1414
gateway_replicas: 2
15-
ingress_class: public-iks-k8s-nginx
15+
ingress_class: public-iks-k8s-nginx

deployment/ansible/ibm-cloud/roles/ibm_cloud/tasks/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
# 5️⃣ Convenience facts for later templates
5959
- name: Extract DB connection strings
6060
set_fact:
61-
pg_conn: "{{ pg_key.resource.connection[0].postgres.composed[0] }}"
61+
pg_conn: "{{ pg_key.resource.connection[0].postgres.composed[0] }}"
6262
redis_conn: "{{ redis_key.resource.connection[0].rediss.composed[0] }}"
6363

6464
# 6️⃣ Fetch kubeconfig (CLI) — simplest universal path

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,7 @@ dev = [
140140
"tox>=4.27.0",
141141
"tox-uv>=1.26.0",
142142
"uv>=0.7.13",
143+
"yamllint>=1.37.1",
143144
]
144145

145146
# Convenience meta-extras

0 commit comments

Comments
 (0)