> For the complete documentation index, see [llms.txt](https://docs.keyless.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.keyless.io/on-premise/installation-procedure/operations-service.md).

# Operations Service

To correctly set up this service the cluster’s internal endpoint is required to allow Operations Service to connect to Core Daemon.\
As above, the default values are usually enough, unless each service is deployed in its own dedicated namespace:

```yaml
global:
  namespace: <operations-service-namespace>

image:
  tag: 2.34.0

configMap:
  # -- Core Daemon URI
  apiCoreDaemonBasePath: http://core-daemon.default.svc.cluster.local/

# -- Suggested sizing
resources:
  ## -- Limits
  limits:
    cpu: 1800m
    memory: 2048Mi
  ## -- Requests
  requests:
    cpu: 100m
    memory: 512Mi
```
