forked from IBM/mcp-context-forge
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.ce.example
More file actions
45 lines (32 loc) · 2.14 KB
/
.env.ce.example
File metadata and controls
45 lines (32 loc) · 2.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
###############################################################################
# IBM Cloud Code Engine - deployment-only variables
# - Required *only* when you deploy MCP Gateway to IBM Cloud.
# - These keys are consumed by the Makefile / ibmcloud CLI and are **NOT**
# injected into the running container.
# - Copy this file to `.env.ce`, fill in real values, keep it out of Git.
###############################################################################
# ── Core IBM Cloud context ──────────────────────────────────────────────
# Region where your Code Engine project lives (e.g. us-south, eu-de, au-syd)
IBMCLOUD_REGION=us-south
# Resource group that owns the project (often "default")
IBMCLOUD_RESOURCE_GROUP=default
# Code Engine project name
IBMCLOUD_PROJECT=my-codeengine-project
# Desired application name in Code Engine
IBMCLOUD_CODE_ENGINE_APP=mcpgateway
# ── Container image details ─────────────────────────────────────────────
# Fully-qualified tag in IBM Container Registry
IBMCLOUD_IMAGE_NAME=us.icr.io/myspace/mcpgateway:latest
# Local tag produced by `make podman` or `make docker`
IBMCLOUD_IMG_PROD=mcpgateway/mcpgateway
# ── Authentication ──────────────────────────────────────────────────────
# IAM API key for scripted logins.
# Leave **blank** if you prefer interactive SSO (`ibmcloud login --sso`)
IBMCLOUD_API_KEY=
# ── Compute sizing (must match a valid CPU/MEM combo) ───────────────────
# Reference table: https://cloud.ibm.com/docs/codeengine?topic=codeengine-mem-cpu-combo
IBMCLOUD_CPU=1
IBMCLOUD_MEMORY=4G
# ── Registry secret ─────────────────────────────────────────────────────
# Name for the pull secret Code Engine uses to fetch from ICR
IBMCLOUD_REGISTRY_SECRET=my-regcred