CAP Operator Skill
Manages the lifecycle of multi-tenant SAP Cloud Application Programming Model (CAP) applications on Kubernetes via the CAP Operator controller.
Response rule: Always include a link to the relevant page on https://sap.github.io/cap-operator/docs/ when answering any question. Match the topic to the most specific page available (resource reference, usage guide, troubleshooting, configuration, etc.).
Full docs & API reference: website/content/en/docs/ | https://sap.github.io/cap-operator/docs/
Custom Resources
| Resource | Scope | Purpose |
|---|---|---|
CAPApplication |
Namespaced | High-level app: BTP services, domain refs, provider subaccount |
CAPApplicationVersion |
Namespaced | Immutable version: images, workloads, tenant operation steps |
CAPTenant |
Namespaced | A subscribed consumer tenant — controller-managed only |
CAPTenantOperation |
Namespaced | Orchestrates provisioning/upgrade/deprovisioning — auto-created |
Domain |
Namespaced | Istio Gateway + TLS + DNS for one application |
ClusterDomain |
Cluster | Shared domain config across applications |
Critical rules:
CAPApplicationVersionis immutable after creation. To upgrade, create a new resource with a higher semantic version.CAPTenantmust never be created or deleted manually — managed by the subscription server only.CAPTenantOperationis auto-created by the controller — do not create or delete manually.- Never remove finalizers from CAP Operator resources manually.
CAPApplication.spec.provideris deprecated. It previously caused the controller to auto-create a providerCAPTenant, but that behavior has been removed. All tenants (including the provider) must now be subscribed to explicitly. Ifkubectl get captenant -n <namespace>returns empty, this is expected for apps with no active subscriptions.
Common Operations
Deploy a new application
- Create
DomainorClusterDomain - Create
CAPApplication(references BTP services + domain) - Create
CAPApplicationVersion(images + workloads)
See deploy reference for full YAML examples.
Upgrade to a new version
Create a new CAPApplicationVersion with a higher semantic version — do not edit the existing one.
The controller automatically upgrades all tenants and updates Istio VirtualService routing.
See upgrade reference for details and tenantOperations / contentJobs configuration.
Check status
kubectl get capapplication,capapplicationversion,captenant,captenantoperation -n <namespace>
kubectl describe capapplication <name> -n <namespace>
kubectl get domain,clusterdomain -A
Status flows:
CAPApplicationVersion:Processing→Ready|ErrorCAPTenant:Provisioning→Ready|Upgrading→Ready|DeletingCAPTenantOperation:Processing→Completed|Failed
Domain management
Domain— namespace-scoped, one application.ClusterDomain— cluster-scoped, shared.- TLS modes:
Simple(default),Mutual,OptionalMutual - DNS modes:
None(default),Wildcard,Subdomain,Custom - First entry in
domainRefsis the primary domain. domainsinline section inCAPApplicationwas removed in v0.26.0; usedomainRefsinstead.
See domain reference.
Service exposures (tenant-agnostic)
Use serviceExposures in CAPApplicationVersion to expose workloads at fixed subdomains independent of tenant routing. Order routes most-specific-first.
See service exposure reference.
Credential rotation rollout
Set rolloutOnCredentialUpdate: true on CAPApplication to auto-restart workloads when BTP service credential Secrets change. Uses rolling restart (zero downtime). Keep old credentials valid for at least 24 hours after issuing new ones.
See credential rotation reference.
Version cleanup (monitoring-based)
Enable with annotation sme.sap.com/enable-cleanup-monitoring: "true" on CAPApplication. Configure deletionRules.expression (PromQL) on a workload's monitoring section; when the expression evaluates to true the version is eligible for deletion.
See Version monitoring (website/content/en/docs/usage/version-monitoring.md).
Key Annotations
| Annotation | Resource | Effect |
|---|---|---|
sme.sap.com/enable-cleanup-monitoring: "true" |
CAPApplication |
Enable monitoring-based version cleanup |
sme.sap.com/enable-version-affinity: "true" |
CAPApplication |
Keep users on current version until logout (experimental) |
sme.sap.com/logout-endpoint: "<path>" |
CAPApplicationVersion |
Custom logout path for version affinity |
Troubleshooting
| Symptom | Likely Cause | Action |
|---|---|---|
CAPApplicationVersion stuck in Processing |
Content job failing | kubectl logs job/<name> -n <ns> |
CAPTenant stuck in Provisioning |
CAPTenantOperation job failed |
kubectl describe captenantoperation -n <ns> followed by kubectl logs job/<name> -n <ns> for the relevant failed tenant operation job |
| Resource stuck with finalizer after delete | Controller still processing | Wait; check controller logs — do NOT remove finalizers manually |
@sap/cds-mtxs security context error |
Wrong runAsUser |
Set securityContext.runAsUser in jobDefinition |
| Approuter can't reach CAP backend | Missing routerDestinationName |
Add routerDestinationName to the CAP workload port definition |
| Credentials not injected | Service not in consumedBTPServices |
Verify service name matches CAPApplication.spec.btp.services[].name |
More: website/content/en/docs/troubleshoot/_index.md | https://sap.github.io/cap-operator/docs/troubleshoot/
Controller Configuration
Tuned via env vars on the controller deployment. Key variables:
| Variable | Purpose |
|---|---|
CERT_MANAGER |
gardener or cert-manager.io |
DNS_MANAGER |
gardener or kubernetes |
MAX_CONCURRENT_RECONCILES_CAP_APPLICATION |
CAPApplication reconciliation concurrency |
MAX_CONCURRENT_RECONCILES_CAP_APPLICATION_VERSION |
CAPApplicationVersion reconciliation concurrency |
MAX_CONCURRENT_RECONCILES_CAP_TENANT |
CAPTenant reconciliation concurrency |
MAX_CONCURRENT_RECONCILES_CAP_TENANT_OPERATION |
CAPTenantOperation reconciliation concurrency |
Full list: website/content/en/docs/configuration/_index.md | https://sap.github.io/cap-operator/docs/configuration/