-
Notifications
You must be signed in to change notification settings - Fork 469
Expand file tree
/
Copy pathvalues.yaml
More file actions
1008 lines (859 loc) · 36.8 KB
/
Copy pathvalues.yaml
File metadata and controls
1008 lines (859 loc) · 36.8 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
certificate: "" # base64 encoded
logLevel: INFO
# When true, logs are emitted as JSON (one object per line) instead of colored
# text. Useful for log scrapers like Filebeat. When Holmes is deployed as a
# subchart of the Robusta umbrella chart, global.enableJsonLogsFormat takes
# precedence over this value.
enableJsonLogsFormat: false
# Values shared with/from a parent umbrella chart. Declared so templates can
# safely reference .Values.global.* when Holmes is installed standalone.
global: {}
# Serve the Holmes API over HTTPS directly from the pod (in-app TLS, no ingress/proxy).
# When enabled you must provide your own TLS secret via secretName (e.g. issued by
# cert-manager or created manually); the chart does not generate a self-signed cert.
tls:
enabled: false
# Name of a kubernetes.io/tls (or generic) secret containing tls.crt and tls.key.
secretName: ""
# Optional: key within secretName holding the password for an encrypted private
# key (tls.key). Sourced via secretKeyRef so the password is not stored in the
# pod spec in plaintext.
keyfilePasswordSecretKey: ""
# Optional: key within the same secret holding a CA bundle. When set, mTLS is
# enabled and the server requires & verifies client certificates.
caCertsSecretKey: ""
additionalEnvVars: []
additional_env_vars: []
# Mirrors runner.additional_env_froms: a list of envFrom entries (secretRef /
# configMapRef) loaded onto the Holmes pod. Prefer `extraEnvVarsSecrets` below
# when all you need is to mount one or more Secrets by name — this block
# remains for the configMapRef case and for sharing entries with the runner
# (e.g. ROBUSTA_UI_TOKEN, SLACK_TOKEN) without declaring each key twice.
additional_env_froms: []
imagePullSecrets: []
podAnnotations: {}
commonLabels: {}
commonAnnotations: {}
replicas: 1
imagePullPolicy: IfNotPresent
# Deployment rollout strategy.
# Leave unset (empty) to use the Kubernetes default (RollingUpdate with maxSurge=25%, maxUnavailable=25%).
# Set maxSurge: 0 if you need zero extra capacity during upgrades (e.g. tight resource quotas).
# Example:
# strategy:
# type: RollingUpdate
# rollingUpdate:
# maxSurge: 0
# maxUnavailable: 1
strategy: {}
autoscaling:
enabled: false
minReplicas: 1
maxReplicas: 5
targetCPU: "60"
targetMemory: ""
behavior: {}
image: holmes:0.0.0
registry: robustadev
sentryDSN: ""
#Enabled custom DNS configuration for runner
dnsConfig:
enabled: false
policy: ClusterFirst
nameservers: []
searches: []
options: []
enableAccountsCreate: true
revisionHistoryLimit: 10
createServiceAccount: true
customServiceAccountName: ""
k8sRBAC: false
customClusterRoleRules: []
# CRD permissions for common Kubernetes operators and tools
crdPermissions:
argo: true
flux: true
kafka: true
keda: true
crossplane: true
istio: true
gatewayApi: true
velero: true
externalSecrets: true
openshift: false
affinity: {}
nodeSelector: ~
tolerations: []
# Pod-level security context
# Applied to spec.securityContext in the Deployment
podSecurityContext: {}
# runAsNonRoot: true
# runAsUser: 10001
# runAsGroup: 10001
# fsGroup: 10001
# seccompProfile:
# type: RuntimeDefault
# Container-level security context for the Holmes container
# Applied to containers[].securityContext in the Deployment
# Note: readOnlyRootFilesystem is always true (required for Holmes operation)
containerSecurityContext: {}
# allowPrivilegeEscalation: false
# capabilities:
# drop:
# - ALL
serviceAccount:
imagePullSecrets: []
annotations: {}
toolsets:
kubernetes/core:
enabled: true
kubernetes/logs:
enabled: true
robusta:
enabled: true
internet:
enabled: true
prometheus/metrics:
enabled: true
skills:
enabled: true
connectivity_check:
enabled: true
bash:
enabled: true
config:
builtin_allowlist: "extended"
mcp_servers: {}
# Paths inside the Holmes container to scan for custom skills (SKILL.md files).
# Use this when you mount skill files yourself via `additionalVolumes` /
# `initContainers`. Each path may be a directory (scanned for SKILL.md files
# up to 2 levels deep) or an individual SKILL.md file. The chart sets
# CUSTOM_SKILL_PATHS in the Holmes pod from this list (joined with `customSkills`).
customSkillPaths: []
# - /etc/holmes/my-skills
# Inline skill definitions. When non-empty, the chart creates a ConfigMap
# named `<release>-holmes-skills` and mounts it at /etc/holmes/skills/, with
# each entry projected to /etc/holmes/skills/<name>/SKILL.md. The mount path
# is automatically appended to CUSTOM_SKILL_PATHS, so you do not need to add
# /etc/holmes/skills to customSkillPaths.
customSkills: {}
# my-skill:
# content: |
# ---
# description: My custom skill description
# ---
# ## Goal
# ...
# Git repositories to sync skills from. Holmes clones each repo at startup and
# re-pulls it periodically (every TOOLSET_STATUS_REFRESH_INTERVAL_SECONDS,
# default 5 minutes), so pushed skill changes reach a running agent without a
# pod restart. The chart sets SKILL_REPOS in the Holmes pod from this list and,
# for entries with tokenSecret, injects the token env var from that Secret.
# After rotating a credential Secret, run `helm upgrade`: the chart checksums
# the Secret data into the pod template, so the upgrade rolls the pod with the
# new credential. A Secret edit alone does not reach running pods (env comes
# from secretKeyRef); without an upgrade, restart the Deployment yourself.
skillRepos: []
# - name: team-skills # optional; defaults to the repo name from the URL
# url: https://github.com/acme/holmes-skills.git
# branch: main # optional; defaults to the repo's default branch
# subPath: skills # optional; subdirectory holding the SKILL.md dirs
# username: oauth2 # optional; "x-token-auth" for Bitbucket tokens
# tokenSecret: # omit for public repos / GitHub App auth
# name: holmes-skills-git-credentials
# key: token
# githubApp: # alternative to tokenSecret: GitHub App auth.
# appId: "123456" # Holmes mints short-lived installation tokens
# installationId: "7890" # from the App's private key on every sync.
# privateKeySecret:
# name: holmes-github-app
# key: GITHUB_APP_PRIVATE_KEY
# apiUrl: https://api.github.com # optional; override for GitHub Enterprise
resources:
requests:
cpu: 100m
memory: 2048Mi
limits:
memory: 2048Mi
additionalVolumes: []
additionalVolumeMounts: []
# Init containers run before the main Holmes container starts
# Useful for fetching secrets from external sources (e.g., vault, secret managers)
# Example:
# initContainers:
# - name: fetch-secret
# image: curlimages/curl:8.5.0
# command: ["sh", "-c", "curl -s http://vault:8200/v1/secret/api-key > /shared/api-key"]
# volumeMounts:
# - name: shared-data
# mountPath: /shared
initContainers: []
# Additional arguments to pass to the Holmes server
# Example:
# args:
# - "--config=/etc/holmes/custom-config.yaml"
args: []
priorityClassName: ""
# List of Kubernetes Secret names whose keys are auto-mounted as env vars on
# the Holmes pod via `envFrom`. Use this together with the `envRef:` sugar
# below to avoid repeating each API key in `additionalEnvVars`. Every listed
# Secret becomes an `envFrom.secretRef` entry, so keys across secrets share a
# single env-var namespace — same-name keys shadow each other in list order.
#
# Example:
# kubectl create secret generic holmes-llm-keys \
# --from-literal=OPENAI_API_KEY=sk-... \
# --from-literal=ANTHROPIC_API_KEY=sk-ant-... \
# -n <namespace>
# kubectl create secret generic holmes-aws-keys \
# --from-literal=AWS_ACCESS_KEY_ID=... \
# --from-literal=AWS_SECRET_ACCESS_KEY=... \
# -n <namespace>
#
# extraEnvVarsSecrets:
# - holmes-llm-keys
# - holmes-aws-keys
# modelList:
# gpt-4.1:
# model: openai/gpt-4.1
# api_key: envRef:OPENAI_API_KEY # rewritten to "{{ env.OPENAI_API_KEY }}"
extraEnvVarsSecrets: []
# List of models available to Holmes. Any string value prefixed with
# `envRef:` is rewritten at chart-render time to the runtime env-var
# templating (`{{ env.<KEY> }}`), so you never repeat the key name in an
# `additionalEnvVars` block. Set `extraEnvVarsSecrets` above so the
# underlying Kubernetes Secrets are actually mounted on the pod.
modelList: {}
# MCP (Model Context Protocol) Add-ons
# These are optional MCP servers that can be deployed alongside Holmes
mcpAddons:
aws:
enabled: false
# Service account configuration for IRSA (IAM Roles for Service Accounts)
serviceAccount:
create: true
name: "aws-api-mcp-sa"
annotations: {} # Add EKS IRSA annotations here, e.g., eks.amazonaws.com/role-arn
image: "aws-api-mcp-server:2.1.0"
registry: "us-central1-docker.pkg.dev/genuine-flight-317411/mcp"
resources:
requests:
memory: "512Mi"
cpu: "250m"
limits:
memory: "1Gi"
cpu: "500m"
config:
region: "us-east-1"
readOnlyMode: true # Set to false to allow write operations (use with caution)
namespace: "" # Kubernetes namespace (defaults to release namespace if empty)
# Multi-account configuration
# When multiAccount.profiles is defined, the chart will use EKS token projection
multiAccount:
enabled: false # Set to true to enable multi-account access
image: "multi-aws-api-mcp-server:2.1.0"
# See docs/data-sources/builtin-toolsets/aws.md for configuration examples
profiles: {}
llm_account_descriptions: ""
# Network policy to restrict access to MCP server
networkPolicy:
enabled: true # Enable network isolation (recommended)
# Custom LLM instructions (optional)
# Leave empty to use default comprehensive instructions
# Set to override the default investigation patterns and guidelines
llmInstructions: ""
# Additional environment variables for the AWS MCP container
additionalEnvVars: []
# Extra volumes to add to the AWS MCP pod
extraVolumes: []
# Extra volume mounts to add to the AWS MCP container
extraVolumeMounts: []
# Extra init containers to add to the AWS MCP pod
extraInitContainers: []
nodeSelector: {}
tolerations: []
affinity: {}
# Google Cloud Platform MCP addon - provides access to GCP services
# Docker images and deployment scripts: https://github.com/robusta-dev/holmes-mcp-integrations/tree/master/servers/gcp
#
# AUTHENTICATION:
# The recommended method is using a service account key file:
# 1. Create a service account key:
# gcloud iam service-accounts keys create key.json \
# --iam-account=YOUR_SA@PROJECT.iam.gserviceaccount.com
# 2. Create a Kubernetes secret:
# kubectl create secret generic gcp-sa-key \
# --from-file=key.json=key.json -n YOUR_NAMESPACE
# 3. Set serviceAccountKey.secretName below to "gcp-sa-key"
#
# MULTI-PROJECT SUPPORT:
# The gcloud MCP can query multiple GCP projects. To enable:
# 1. Grant the service account permissions in all target projects:
# gcloud projects add-iam-policy-binding PROJECT_ID \
# --member="serviceAccount:SA_EMAIL" --role="roles/viewer"
# 2. Holmes will automatically query across projects when you specify --project flag
gcp:
enabled: false
# Service account key authentication (recommended)
serviceAccountKey:
secretName: "" # Name of K8s secret containing the service account key (e.g., "gcp-sa-key")
# Secret must have a key named "key.json" with the service account JSON key
# Kubernetes service account (for Workload Identity - currently not working with gcloud CLI)
serviceAccount:
create: true
name: "gcp-mcp-sa"
annotations: {} # Add GKE Workload Identity annotations if needed
# Container registry for GCP MCP images
# Build images from: https://github.com/robusta-dev/holmes-mcp-integrations/tree/master/servers/gcp
registry: "us-central1-docker.pkg.dev/genuine-flight-317411/mcp"
imagePullPolicy: "IfNotPresent"
# Workload Identity configuration (works for observability/storage MCPs, not gcloud)
workloadIdentity:
enabled: false # Set to true for observability/storage MCPs
networkPolicy:
enabled: true
config:
project: "" # Optional: Holmes uses this if not asked about a specific project
projectNumber: "" # GCP project number (only needed if using Workload Identity)
region: "us-central1" # Optional: Holmes uses this if not asked about a specific region
namespace: "" # MCP server installation namespace (defaults to release namespace if empty)
# Individual MCP server toggles and configurations
# gcloud MCP - General GCP management via gcloud CLI
gcloud:
enabled: true
image: "gcloud-cli-mcp:1.0.9"
port: 8000
resources:
requests:
memory: "256Mi"
cpu: "100m"
limits:
memory: "1Gi"
# Observability MCP - Cloud Logging, Monitoring, Trace, Error Reporting
observability:
enabled: true
image: "gcloud-observability-mcp:1.0.1"
port: 8001
resources:
requests:
memory: "256Mi"
cpu: "100m"
limits:
memory: "512Mi"
# Storage MCP - Cloud Storage operations
storage:
enabled: true
image: "gcloud-storage-mcp:1.0.1"
port: 8002
resources:
requests:
memory: "256Mi"
cpu: "100m"
limits:
memory: "512Mi"
# Custom LLM instructions (optional) - These will override the default instructions for each of the gcp MCPs
# Leave empty to use default instructions
llmInstructions:
gcloud: ""
observability: ""
storage: ""
# Azure MCP Server Configuration
azure:
enabled: false
# Service account configuration for Azure Workload Identity
serviceAccount:
create: true
name: "azure-api-mcp-sa"
annotations: {} # Add workload identity annotations here
# azure.workload.identity/client-id: "YOUR_CLIENT_ID"
# azure.workload.identity/tenant-id: "YOUR_TENANT_ID"
image: "azure-cli-mcp:1.0.2"
registry: "us-central1-docker.pkg.dev/genuine-flight-317411/mcp"
imagePullPolicy: "IfNotPresent"
config:
tenantId: "" # Azure tenant ID (required for workload identity)
subscriptionId: "" # Default Azure subscription ID
clientId: "" # Azure client ID (required for workload-identity and managed-identity)
readOnlyMode: true # Blocks write operations against the Azure API. Set to false to allow writes (use with caution). Default true matches AWS/MariaDB MCP addons.
authMethod: "workload-identity" # Options: workload-identity, managed-identity, service-principal
enableSecurityPolicy: false # Enable additional security policies
timeout: "120" # Command execution timeout in seconds
namespace: "" # MCP installation namespace (defaults to release namespace if empty)
# Secret name for service principal authentication (if using service-principal auth)
secretName: "azure-mcp-creds"
resources:
requests:
memory: "256Mi"
cpu: "100m"
limits:
memory: "512Mi"
service:
port: 8000
networkPolicy:
enabled: false
additionalIngressRules: []
additionalEgressRules: []
additionalEnvVars: []
nodeSelector: {}
tolerations: []
affinity: {}
# Custom LLM instructions (optional) - leave empty to use default
llmInstructions: ""
# GitHub MCP Server Configuration
# Provides access to GitHub repositories, pull requests, issues, and GitHub Actions
#
# AUTHENTICATION (choose one):
# Option 1 - PAT: Deploys a self-hosted MCP server using the standard github-mcp image
# kubectl create secret generic github-mcp-token --from-literal=token=<YOUR_GITHUB_PAT> -n <NAMESPACE>
# Option 2 - GitHub App: Deploys a self-hosted MCP server using the github-app-mcp image
# which generates and auto-refreshes installation tokens from GitHub App credentials
# kubectl create secret generic holmes-github-app --from-literal=GITHUB_APP_ID=... -n <NAMESPACE>
#
# GITHUB ENTERPRISE:
# Set config.host to your GitHub Enterprise hostname (e.g., "github.mycompany.com")
#
# CUSTOM IMAGE (PAT only):
# To build your own image, see: https://github.com/robusta-dev/holmes-mcp-integrations/tree/master/servers/github
github:
enabled: false
# github-mcp:2.0.0 = native HTTP mode (github-mcp-server v1.4.0+). PAT auth only.
# The github-app path uses auth.githubApp.image and is unchanged.
image: "github-mcp:2.0.0"
registry: "us-central1-docker.pkg.dev/genuine-flight-317411/mcp"
imagePullPolicy: IfNotPresent
# Authentication - choose ONE of the two methods below
auth:
# Option 1: Personal Access Token (PAT)
# Create a secret: kubectl create secret generic github-mcp-token --from-literal=token=<PAT> -n <NAMESPACE>
secretName: "" # Name of K8s secret containing the GitHub PAT
secretKey: "token" # Key in secret (default: "token")
# Option 2: GitHub App installation token
# Deploys a self-hosted MCP server that generates and caches installation tokens
# from GitHub App credentials. Uses a separate image with built-in token management.
# kubectl create secret generic holmes-github-app \
# --from-literal=GITHUB_APP_ID=<APP_ID> \
# --from-literal=GITHUB_APP_INSTALLATION_ID=<INSTALLATION_ID> \
# --from-file=GITHUB_APP_PRIVATE_KEY=/path/to/private-key.pem \
# -n <NAMESPACE>
githubApp:
secretName: "" # Name of K8s secret containing GitHub App credentials
image: "github-app-mcp:1.0.7" # Image with GitHub App token management
registry: "us-central1-docker.pkg.dev/genuine-flight-317411/mcp"
# ALPHA. Serve every organization the App is installed on, routing each
# tool call to that organization's installation token. Runs multiOrgImage
# instead of image, and makes GITHUB_APP_INSTALLATION_ID optional.
multiOrg: false
multiOrgImage: "github-app-mcp:2.0.0"
config:
# GitHub Enterprise hostname (leave empty for github.com)
# Example: "https://github.mycompany.com"
host: ""
# Custom CA certificate bundle for GitHub Enterprise with internal CA
customCACert:
enabled: false
secretName: "github-ca-cert"
secretKey: "ca.crt"
# Toolsets to enable (comma-separated list of toolset names)
# Available: repos, issues, pull_requests, actions, code_security, users, context, etc.
# Default: repos, issues, pull_requests, actions, context (covers most investigation needs).
# 'context' exposes the read-only get_me tool, which Holmes uses to validate
# the GitHub token at startup (a bad PAT marks the toolset disabled instead of
# appearing connected). Keep 'context' enabled unless you have a reason not to.
# Note: when using GitHub App auth, 'context' is automatically stripped — App
# installation tokens 403 on GET /user, so get_me is not a valid auth probe.
# Ignored when `tools` below is set (tools takes precedence as a hard allowlist).
toolsets: "repos,issues,pull_requests,actions,context"
# Individual tools to enable (comma-separated, optional).
# When set, restricts Holmes to EXACTLY this list of tools — takes precedence
# over `toolsets` above. Leave empty (the default) to expose every tool from
# the toolsets listed above.
# Example: "get_file_contents,list_commits,list_workflow_runs"
tools: ""
resources:
requests:
memory: "256Mi"
cpu: "100m"
limits:
memory: "512Mi"
networkPolicy:
enabled: true
# Custom LLM instructions (optional) - leave empty to use default
llmInstructions: ""
nodeSelector: {}
tolerations: []
affinity: {}
# GitLab MCP Server Configuration
# Provides access to GitLab projects, merge requests, issues, pipelines, and code.
# Supports both gitlab.com (cloud) and self-hosted GitLab instances.
#
# AUTHENTICATION:
# Create a GitLab Personal Access Token with scopes: api, read_repository (and write_repository if you
# want Holmes to create branches/MRs). Then store it in a Kubernetes secret:
# kubectl create secret generic gitlab-mcp-token --from-literal=token=<YOUR_GITLAB_PAT> -n <NAMESPACE>
#
# SELF-HOSTED GITLAB:
# Set config.apiUrl to your instance API URL (e.g., "https://gitlab.mycompany.com/api/v4").
# For self-signed certificates, mount a CA bundle via config.caCert.secretName (preferred)
# or disable verification entirely with config.verifySsl: false (insecure).
gitlabMcp:
enabled: false
registry: docker.io
image: "supercorp/supergateway:3.4.3"
imagePullPolicy: IfNotPresent
# Pinned version of the @zereight/mcp-gitlab npm package executed via npx.
mcpGitlabVersion: "2.1.46"
auth:
# K8s secret holding the GitLab Personal Access Token.
# kubectl create secret generic gitlab-mcp-token --from-literal=token=<PAT> -n <NAMESPACE>
secretName: "" # Required when enabled=true
secretKey: "token"
config:
# GitLab API URL — set to your self-hosted instance for on-prem GitLab.
# Examples: "https://gitlab.com/api/v4", "https://gitlab.mycompany.com/api/v4"
apiUrl: "https://gitlab.com/api/v4"
# When true, blocks all write operations (no MR/issue creation, no commits).
readOnly: false
# Optional feature toggles for the @zereight/mcp-gitlab server
useWiki: false # USE_GITLAB_WIKI — enable wiki tools
useMilestone: false # USE_MILESTONE — enable milestone tools
usePipeline: true # USE_PIPELINE — enable pipeline/CI tools (recommended)
# Scope the MCP server to specific projects (optional)
projectId: "" # GITLAB_PROJECT_ID — default project ID
allowedProjectIds: "" # GITLAB_ALLOWED_PROJECT_IDS — comma-separated allowlist
# Tool exposure (optional). Mirrors the github addon pattern.
# `toolsets` enables groups of tools; `tools` is a hard allowlist that takes precedence.
toolsets: "" # GITLAB_TOOLSETS — comma-separated toolset IDs (empty = all)
tools: "" # GITLAB_TOOLS — comma-separated individual tool names
# SSL/TLS for self-hosted GitLab
# Preferred: mount a trusted CA bundle via the caCert block below.
# Last resort: set verifySsl: false (disables ALL TLS verification — insecure).
verifySsl: true
caCert:
secretName: "" # K8s secret containing the CA bundle (sets GITLAB_CA_CERT_PATH)
secretKey: "ca.crt"
resources:
requests:
memory: "256Mi"
cpu: "100m"
limits:
memory: "512Mi"
networkPolicy:
enabled: true
# Custom LLM instructions (optional) - leave empty to use default
llmInstructions: ""
# Additional environment variables to inject into the gitlab-mcp container
additionalEnvVars: []
nodeSelector: {}
tolerations: []
affinity: {}
# Sentry MCP Server Configuration
# Provides access to Sentry error tracking and monitoring
# Authentication: Create a Sentry Auth Token with appropriate scopes
# Then create a Kubernetes secret:
# kubectl create secret generic sentry-mcp-token --from-literal=token=<YOUR_SENTRY_AUTH_TOKEN> -n <NAMESPACE>
sentry:
enabled: false
image: "sentry-mcp:1.0.1"
registry: "us-central1-docker.pkg.dev/genuine-flight-317411/mcp"
imagePullPolicy: IfNotPresent
auth:
secretName: "" # Required: name of K8s secret containing the Sentry auth token
secretKey: "token" # Key in secret (default: "token")
config:
# Sentry host URL (leave empty for sentry.io)
# Set to your self-hosted Sentry URL (e.g., "https://sentry.mycompany.com")
host: ""
resources:
requests:
memory: "128Mi"
cpu: "100m"
limits:
memory: "512Mi"
cpu: "500m"
networkPolicy:
enabled: false
llmInstructions: ""
nodeSelector: {}
tolerations: []
affinity: {}
# Prefect MCP Server Configuration
# Provides access to Prefect workflow orchestration for monitoring and troubleshooting
# Authentication: Create a Prefect Cloud API key (optional for self-hosted)
# Then create a Kubernetes secret:
# kubectl create secret generic prefect-mcp-token --from-literal=token=<YOUR_PREFECT_API_KEY> -n <NAMESPACE>
prefect:
enabled: false
image: "prefect-mcp:1.0.0"
registry: "us-central1-docker.pkg.dev/genuine-flight-317411/mcp"
imagePullPolicy: IfNotPresent
auth:
secretName: "" # Name of K8s secret containing the Prefect API key (required for Cloud, optional for self-hosted)
secretKey: "token" # Key in secret (default: "token")
config:
# Prefect API URL (required)
# Cloud: https://api.prefect.cloud/api/accounts/<ACCOUNT_ID>/workspaces/<WORKSPACE_ID>
# Self-hosted: http://prefect-server:4200/api
apiUrl: ""
resources:
requests:
memory: "128Mi"
cpu: "100m"
limits:
memory: "512Mi"
cpu: "500m"
networkPolicy:
enabled: false
llmInstructions: ""
nodeSelector: {}
tolerations: []
affinity: {}
# Kubernetes Remediation MCP Server Configuration
# Provides safe kubectl command execution with security controls
# WARNING: This addon can execute write operations. Configure allowedCommands carefully.
kubernetesRemediation:
enabled: false # opt-in; defaults work once enabled (plug-and-play)
image: "kubernetes-remediation-mcp:1.2.0"
registry: "us-central1-docker.pkg.dev/genuine-flight-317411/mcp"
imagePullPolicy: IfNotPresent
# Bearer-token authentication for the server's HTTP endpoint. Without it,
# any pod that can reach the port gets the full tool surface (including
# cluster mutations) with the remediation ServiceAccount's RBAC, bypassing
# Holmes's human-approval gate. The chart generates a random per-release
# token Secret and wires both the server and Holmes automatically; the
# token is preserved across `helm upgrade` (rotate by deleting the Secret
# and upgrading again).
# Requires server image >= 1.2.0; when running an older pinned image, the
# extra env/header are ignored and behavior is unchanged (unauthenticated).
auth:
enabled: true
# Name of a pre-existing Secret holding the token under the key "token".
# When set, the chart creates no Secret and uses this one on both sides.
# Required for clusterless rendering (`helm template`, ArgoCD), where the
# auto-generated token cannot be looked up and would otherwise change on
# every render. Create it once with, e.g.:
# kubectl create secret generic my-remediation-auth \
# --from-literal=token="$(openssl rand -hex 32)"
existingSecret: ""
serviceAccount:
create: true
name: "k8s-remediation-mcp-sa"
annotations: {}
clusterRole: "" # empty -> chart creates the scoped, least-privilege
# ClusterRole below. Set to bring-your-own ClusterRole name.
config:
# Hard verb allowlist for the approval-gated run_kubectl_command fallback
allowedCommands: "edit,patch,delete,scale,rollout,cordon,uncordon,drain,taint,label,annotate,run,exec"
# Comma-separated list of blocked flags
dangerousFlags: "--kubeconfig,--context,--cluster,--user,--token,--as,--as-group,--as-uid"
# Pre-approved read-only commands for run_preapproved_kubectl_command (auto-approved)
preapprovedCommands: "exec * -- ps*,exec * -- top*,exec * -- df*,exec * -- ls*,exec * -- netstat*,exec * -- ss*"
# Pre-approved troubleshooting images for run_preapproved_diagnostic_image (auto-approved)
diagnosticImages: "nicolaka/netshoot:v0.13,busybox:1.37.0,curlimages/curl:8.11.1"
# ---- Diagnostic-pod target policy (server >= 1.2.0) ----
# run_preapproved_diagnostic_image is auto-approved and its images are
# network-probing tools, so the probe TARGET is the security boundary.
# Without this policy, prompt-injected agent output could point curl at the
# cloud metadata service and read instance credentials back, or POST cluster
# data to an external collector, with no human in the loop.
#
# Master switch. false disables ALL target checks, including the
# cloud-metadata/link-local ranges, and restores that behaviour. Prefer the
# two narrower knobs below; only disable if neither fits your environment.
diagnosticTargetPolicyEnabled: true
# Allow probes to reach hosts outside the cluster. false keeps probes
# in-cluster so an auto-approved probe cannot ship data to an external host.
# Cloud-metadata and link-local stay denied either way.
diagnosticAllowExternalTargets: false
# DNS suffixes counted as cluster-internal. Set this if you run a custom
# cluster domain (e.g. ".svc,.svc.mycorp.internal").
diagnosticInternalDnsSuffixes: ".svc,.svc.cluster.local,.cluster.local"
# read_file_from_container path policy (allow roots minus secret/token mounts)
fileReadAllowedPaths: "/"
fileReadDeniedPaths: "/var/run/secrets/,/run/secrets/,/var/run/secrets/kubernetes.io/serviceaccount/"
# Enable the approval-gated fallback (set false for a fully locked-down mode)
allowArbitraryKubectlCommands: true
# Command timeout in seconds
timeout: "60"
# Log level
logLevel: "INFO"
resources:
requests:
memory: "64Mi"
cpu: "50m"
limits:
memory: "128Mi"
cpu: "200m"
networkPolicy:
enabled: true # ingress-only; inert where the CNI doesn't enforce
# HolmesGPT-side approval mapping. Only the mutating fallback prompts a human;
# the read-only tools (read_file_from_container, run_preapproved_kubectl_command,
# run_preapproved_diagnostic_image, get_remediation_mcp_config) run immediately.
approvalRequiredTools:
- "run_kubectl_command"
# Optional override of the default LLM instructions
llmInstructions: ""
nodeSelector: {}
tolerations: []
affinity: {}
# Kubernetes MCP Server Configuration
# Provides advanced Kubernetes cluster access via the containers/kubernetes-mcp-server
# Uses in-cluster ServiceAccount by default. For external clusters, provide a kubeconfig secret.
# Repository: https://github.com/containers/kubernetes-mcp-server
kubernetes:
enabled: false
image: "kubernetes-mcp-server:v0.0.61-oauth"
registry: "us-central1-docker.pkg.dev/genuine-flight-317411/mcp"
imagePullPolicy: IfNotPresent
serviceAccount:
create: true
name: "k8s-mcp-sa"
annotations: {}
# Create a ClusterRoleBinding for the ServiceAccount
# Set to false for OAuth mode (the OAuth token provides permissions instead)
createClusterRoleBinding: true
# ClusterRole to bind to the ServiceAccount
# Use "view" for read-only access or "cluster-admin" for full access
clusterRole: "view"
config:
# Enable read-only mode (disables all write operations)
readOnly: true
# Disable destructive operations (delete/update) while allowing other writes
disableDestructive: false
# Comma-separated list of toolsets to enable
# Available: config, core, helm, tekton, kubevirt, kiali, kcp
# Default (empty): enables "config" and "core" toolsets
toolsets: ""
# Log level (0-9, similar to kubectl verbosity)
logLevel: ""
# Extra CLI arguments to pass to the server
extraArgs: []
# Kubeconfig secret for connecting to external clusters
# Create a secret: kubectl create secret generic k8s-mcp-kubeconfig --from-file=kubeconfig=/path/to/kubeconfig -n <NAMESPACE>
kubeconfig:
secretName: "" # Name of K8s secret containing the kubeconfig file
secretKey: "kubeconfig" # Key in secret (default: "kubeconfig")
# Inline TOML server config. The chart creates a Secret containing this
# content and mounts it at /etc/kubernetes-mcp/config.toml. Use this for
# OAuth/OIDC settings — the kubernetes-mcp-server only accepts those via
# config.toml (no CLI flags or env vars exist for them).
# For OAuth mode also set serviceAccount.createClusterRoleBinding=false.
#
# Example (OpenShift OAuth, opaque-token passthrough):
# serverConfig: |
# require_oauth = true
# accept_opaque_tokens = true
# cluster_auth_mode = "passthrough"
#
# Example (Microsoft Entra ID / Azure AD):
# serverConfig: |
# require_oauth = true
# authorization_url = "https://login.microsoftonline.com/<TENANT_ID>/v2.0"
# oauth_audience = "6dae42f8-4368-4678-94ff-3960e28e3630"
# oauth_scopes = ["6dae42f8-4368-4678-94ff-3960e28e3630/.default", "openid", "profile"]
# issuer_url = "https://sts.windows.net/<TENANT_ID>/"
#
# Mutually exclusive with `configSecret.secretName` below.
serverConfig: ""
# Reference an externally-managed Secret containing config.toml. Use this
# if you'd rather create the Secret out-of-band:
# kubectl create secret generic k8s-mcp-config --from-file=config.toml=/path/to/config.toml -n <NAMESPACE>
configSecret:
secretName: "" # Name of K8s secret containing config.toml
secretKey: "config.toml" # Key in secret (default: "config.toml")
# OAuth settings for Holmes → k8s-mcp-server authentication.
# Passed as-is into the Holmes mcp_servers oauth config.
# Example for OpenShift OAuth (per-user RBAC):
# oauth:
# enabled: true
# authorization_url: "https://oauth-openshift.apps.<cluster>/oauth/authorize"
# token_url: "https://oauth-openshift.apps.<cluster>/oauth/token"
# client_id: "mcp-openshift"
# client_secret: "{{ env.MCP_OAUTH_CLIENT_SECRET }}"
# callback_port: 10234
# scopes: ["user:full"]
oauth: {}
resources:
requests:
memory: "128Mi"
cpu: "100m"
limits:
memory: "512Mi"
networkPolicy:
enabled: false
llmInstructions: ""
nodeSelector: {}
tolerations: []
affinity: {}
# Confluence MCP Server Configuration
# Provides access to Confluence documentation search and retrieval
# Authentication: Create an Atlassian API token
# Then create a Kubernetes secret:
# kubectl create secret generic confluence-mcp-credentials \
# --from-literal=confluence-username=<YOUR_EMAIL> --from-literal=confluence-api-token=<YOUR_API_TOKEN> -n <NAMESPACE>
confluenceMcp:
enabled: false
image: "mcp-atlassian:v0.21.2"
registry: "us-central1-docker.pkg.dev/genuine-flight-317411/mcp"
imagePullPolicy: IfNotPresent
#Enabled custom DNS configuration for confluenceMcp
dnsConfig:
enabled: false
policy: ClusterFirst
nameservers: [ ]
searches: [ ]
options: [ ]
auth:
secretName: "" # Required: name of K8s secret containing Confluence credentials
usernameKey: "confluence-username" # Key in secret for the username/email
tokenKey: "confluence-api-token" # Key in secret for the API token
config:
# Confluence instance URL (required)
# Example: "https://your-company.atlassian.net/wiki"
url: ""
# Restrict available tools (comma-separated, leave empty for all)
enabledTools: "confluence_search,confluence_get_page,confluence_get_page_content,confluence_get_comments"
# Set to true to disable write operations
readOnly: true
resources:
requests:
memory: "128Mi"
cpu: "100m"
limits:
memory: "256Mi"
cpu: "500m"
networkPolicy:
enabled: false
llmInstructions: ""
# Additional environment variables for the Confluence MCP container
additionalEnvVars: []
nodeSelector: {}
tolerations: []
affinity: {}
# Holmes Operator Configuration
operator:
enabled: false # Set to true to deploy the operator
# Container image
image: holmes-operator:0.0.0
registry: robustadev
imagePullPolicy: IfNotPresent
# Holmes API connection
holmesApiUrl: "" # Defaults to "http://<release-name>-holmes:80"
holmesApiTimeout: 300 # seconds
# Logging
logLevel: INFO
# History management
maxHistoryItems: 10
cleanupCompletedChecks: false
completedCheckTTLHours: 24
# Resources
resources:
requests:
memory: 256Mi
cpu: 100m
limits:
memory: 512Mi
# Additional configuration
additionalEnvVars: []
nodeSelector: {}