.env.ce.example•2.19 kB
###############################################################################
# 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