diff --git a/README.md b/README.md index ad2d4bf..9518701 100644 --- a/README.md +++ b/README.md @@ -93,7 +93,7 @@ The command removes all the Kubernetes components associated with the chart and | `serviceAccount.create` | Enable creation of ServiceAccount for Cyral Sidecar pod | `true` | | `serviceAccount.name` | The name of the ServiceAccount to use. | `""` | | `serviceAccount.annotations` | Annotations for service account. Evaluated as a template. | `{}` | -| `serviceAccount.automountServiceAccountToken` | Auto-mount the service account token in the pod | `false` | +| `serviceAccount.automountServiceAccountToken` | Auto-mount the service account token in the pod | `true` | | `rbac.create` | Create Role and RoleBinding | `true` | | `rbac.rules` | Custom RBAC rules to set | `[]` | | `podSecurityContext.enabled` | Enabled Cyral Sidecar pods' Security Context | `false` | diff --git a/values.yaml b/values.yaml index d8a0297..631a156 100644 --- a/values.yaml +++ b/values.yaml @@ -158,7 +158,7 @@ serviceAccount: annotations: {} ## @param serviceAccount.automountServiceAccountToken Auto-mount the service account token in the pod ## - automountServiceAccountToken: false + automountServiceAccountToken: true ## Role Based Access ## Ref: https://kubernetes.io/docs/admin/authorization/rbac/ ## @param rbac.create Create Role and RoleBinding