Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions charts/workflows-cluster/Chart.lock
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ dependencies:
version: 2.23.0
- name: vcluster
repository: https://charts.loft.sh
version: 0.28.0
version: 0.36.1
- name: secrets
repository: file://./charts/secrets
version: 0.0.18
digest: sha256:b33147fb1c7b15ffeb219185d1b7eeab1c97bdf0a2cd93d49a1b948bd3ca15b3
generated: "2026-08-07T10:36:31.823636509+01:00"
digest: sha256:33c7f258fb406fba2568dc99358d2392aab8cae2c6a621e58a314e9d0fda5296
generated: "2026-08-10T08:03:22.693209742+01:00"
4 changes: 2 additions & 2 deletions charts/workflows-cluster/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@ name: workflows-cluster
description: A virtual cluster for Data Analysis workflows
type: application

version: 0.13.21
version: 0.13.22
dependencies:
- name: common
version: 2.23.0
repository: oci://docker.io/bitnamicharts
- name: vcluster
repository: https://charts.loft.sh
version: 0.28.0
version: 0.36.1
- name: secrets
repository: file://./charts/secrets
version: 0.0.18
Expand Down
53 changes: 51 additions & 2 deletions charts/workflows-cluster/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,9 @@ vcluster:
enabled: true
fromHost:
nodes:
enabled: true
enabled: false
events:
enabled: false
secrets:
enabled: true
mappings:
Expand Down Expand Up @@ -169,11 +171,58 @@ vcluster:
rbac:
clusterRole:
enabled: false
role:
enabled: true
overwriteRules:
# Overwrite rules due to incompatibility of defaults with host cluster permissions
# On upgrading vCluster version compare these rules with the default rules
# (cf helm template with overwriteRules disabled) in case the minimum required permissions change
# see: https://www.vcluster.com/docs/vcluster/configure/vcluster-yaml/rbac#overwrite-rules
- apiGroups: [""]
resources:
[
"configmaps",
"secrets",
"services",
"pods",
"pods/attach",
"pods/portforward",
"pods/exec",
"persistentvolumeclaims",
]
verbs: ["create", "delete", "patch", "update", "get", "list", "watch"]
- apiGroups: [""]
resources: ["pods/status", "pods/ephemeralcontainers"]
verbs: ["patch", "update"]
- apiGroups: [""]
resources: ["pods/resize"]
verbs: ["patch", "update"]
- apiGroups: ["apps"]
resources: ["statefulsets", "replicasets", "deployments"]
verbs: ["get", "list", "watch", "patch", "update"]
- apiGroups: [""]
resources: ["endpoints", "pods/log"]
verbs: ["get", "list", "watch"]
- apiGroups: [""]
resources: ["events"]
verbs: ["create", "get", "list", "watch"]
- apiGroups: [""]
resources: ["endpoints"]
verbs: ["create", "delete", "patch", "update"]
- apiGroups: ["discovery.k8s.io"]
resources: ["endpointslices"]
verbs: ["create", "list", "get", "delete", "patch", "update", "watch"]
- apiGroups: ["coordination.k8s.io"]
resources: ["leases"]
verbs: ["create", "list", "get", "delete", "patch", "update", "watch"]
- apiGroups: ["networking.k8s.io"]
resources: ["ingresses"]
verbs: ["create", "list", "get", "delete", "patch", "update", "watch"]

integrations:
metricsServer:
enabled: true
nodes: true
nodes: false
pods: true

ingress:
Expand Down
Loading