File tree Expand file tree Collapse file tree 5 files changed +14
-12
lines changed
deployment/ansible/ibm-cloud Expand file tree Collapse file tree 5 files changed +14
-12
lines changed Original file line number Diff line number Diff line change 76
76
# ----------------------------------------------------------------
77
77
- name : ✅ Verify commit checks passed
78
78
env :
79
- SHA : ${{ steps.meta.outputs.sha }}
80
- REPO : ${{ github.repository }}
79
+ SHA : ${{ steps.meta.outputs.sha }}
80
+ REPO : ${{ github.repository }}
81
81
run : |
82
82
set -euo pipefail
83
83
STATUS=$(curl -sSL \
Original file line number Diff line number Diff line change 7
7
# Ignore every YAML (and *.tpl) file under the Helm chart directory.
8
8
ignore: |
9
9
charts/mcp-stack/**/*.yaml
10
- charts/mcp-stack/**/*.tpl # if you template using .tpl files
10
+ charts/mcp-stack/**/*.tpl # templates using .tpl files
11
11
charts/mcp-stack/**/values.yaml
12
12
charts/mcp-stack/**/Chart.yaml
13
+ charts/mcpgateway/templates/*.yaml
Original file line number Diff line number Diff line change 1
1
# 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"
7
7
8
8
# Databases
9
9
postgres_version : " 14"
10
- redis_version : " 7"
10
+ redis_version : " 7"
11
11
12
12
# 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"
14
14
gateway_replicas : 2
15
- ingress_class : public-iks-k8s-nginx
15
+ ingress_class : public-iks-k8s-nginx
Original file line number Diff line number Diff line change 58
58
# 5️⃣ Convenience facts for later templates
59
59
- name : Extract DB connection strings
60
60
set_fact :
61
- pg_conn : " {{ pg_key.resource.connection[0].postgres.composed[0] }}"
61
+ pg_conn : " {{ pg_key.resource.connection[0].postgres.composed[0] }}"
62
62
redis_conn : " {{ redis_key.resource.connection[0].rediss.composed[0] }}"
63
63
64
64
# 6️⃣ Fetch kubeconfig (CLI) — simplest universal path
Original file line number Diff line number Diff line change @@ -140,6 +140,7 @@ dev = [
140
140
" tox>=4.27.0" ,
141
141
" tox-uv>=1.26.0" ,
142
142
" uv>=0.7.13" ,
143
+ " yamllint>=1.37.1" ,
143
144
]
144
145
145
146
# Convenience meta-extras
You can’t perform that action at this time.
0 commit comments