Skip to content

Commit

Permalink
Enable alternator authorization
Browse files Browse the repository at this point in the history
  • Loading branch information
Pythoner6 committed Feb 17, 2024
1 parent a0b18c6 commit baf28f7
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions k8s/gerrit/gerrit.cue
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
scyllaoperator "pythoner6.dev/netserv/k8s/scylla-operator:netserv"
//externalsecrets "external-secrets.io/externalsecret/v1beta1"
//issuers "cert-manager.io/issuer/v1"
//corev1 "k8s.io/api/core/v1"
corev1 "k8s.io/api/core/v1"
//rbacv1 "k8s.io/api/rbac/v1"
)

Expand Down Expand Up @@ -42,6 +42,11 @@ kustomizations: $default: manifest: {
"pod-security.kubernetes.io/warn": "privileged"
}
}
"scylla-config": corev1.#ConfigMap & {
data: "scylla.yaml": """
alternator_enforce_authorization: true
"""
}
"global-refdb": scyllaclusters.#ScyllaCluster & {
spec: {
version: "5.2.15"
Expand All @@ -57,11 +62,11 @@ kustomizations: $default: manifest: {
resources: {
requests: {
cpu: "1"
memory: "2Gi"
memory: "3Gi"
}
limits: {
cpu: "1"
memory: "2Gi"
memory: "3Gi"
}
}
storage: {
Expand Down

0 comments on commit baf28f7

Please sign in to comment.