Skip to content

Commit

Permalink
add default to rollout operator from loki chart
Browse files Browse the repository at this point in the history
Signed-off-by: AvivGuiser <avivguiser@gmail.com>
  • Loading branch information
KyriosGN0 committed Jun 26, 2024
1 parent 58b276b commit 7e44391
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 2 deletions.
10 changes: 9 additions & 1 deletion charts/tempo-distributed/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -766,7 +766,15 @@ The memcached default args are removed and should be provided manually. The sett
| rbac.create | bool | `false` | Specifies whether RBAC manifests should be created |
| rbac.pspEnabled | bool | `false` | Specifies whether a PodSecurityPolicy should be created |
| reportingEnabled | bool | `true` | If true, Tempo will report anonymous usage data about the shape of a deployment to Grafana Labs |
| rollout_operator | object | `{"enabled":false}` | Enable rollout-operator. It must be enabled when using Zone Aware Replication. |
| rollout_operator.enabled | bool | `false` | Enable rollout-operator. It must be enabled when using Zone Aware Replication. |
| rollout_operator.podSecurityContext.fsGroup | int | `10001` | |
| rollout_operator.podSecurityContext.runAsGroup | int | `10001` | |
| rollout_operator.podSecurityContext.runAsNonRoot | bool | `true` | |
| rollout_operator.podSecurityContext.runAsUser | int | `10001` | |
| rollout_operator.podSecurityContext.seccompProfile.type | string | `"RuntimeDefault"` | |
| rollout_operator.securityContext.allowPrivilegeEscalation | bool | `false` | |
| rollout_operator.securityContext.capabilities.drop[0] | string | `"ALL"` | |
| rollout_operator.securityContext.readOnlyRootFilesystem | bool | `true` | |
| server.grpc_server_max_recv_msg_size | int | `4194304` | Max gRPC message size that can be received |
| server.grpc_server_max_send_msg_size | int | `4194304` | Max gRPC message size that can be sent |
| server.httpListenPort | int | `3100` | HTTP server listen host |
Expand Down
17 changes: 16 additions & 1 deletion charts/tempo-distributed/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -992,10 +992,25 @@ enterpriseFederationFrontend:

multitenancyEnabled: false

# -- Enable rollout-operator. It must be enabled when using Zone Aware Replication.
rollout_operator:
# -- Enable rollout-operator. It must be enabled when using Zone Aware Replication.
enabled: false

podSecurityContext:
fsGroup: 10001
runAsGroup: 10001
runAsNonRoot: true
runAsUser: 10001
seccompProfile:
type: RuntimeDefault

# Set the container security context
securityContext:
readOnlyRootFilesystem: true
capabilities:
drop: [ALL]
allowPrivilegeEscalation: false

traces:
jaeger:
grpc:
Expand Down

0 comments on commit 7e44391

Please sign in to comment.