Skip to content

Commit

Permalink
include qps and burst in chart values
Browse files Browse the repository at this point in the history
  • Loading branch information
jaireddjawed committed Feb 12, 2025
1 parent 77874c5 commit 768eeb8
Showing 1 changed file with 20 additions and 8 deletions.
28 changes: 20 additions & 8 deletions chart/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,6 @@ controller:

# Settings related to the vault-secrets-operator container.
manager:

# Image sets the repo and tag of the vault-secrets-operator image to use for the controller.
image:
pullPolicy: IfNotPresent
Expand Down Expand Up @@ -465,6 +464,21 @@ controller:
# @type: integer
maxConcurrentReconciles:

kubeClient:
# QPS indicates the maximum QPS to the kubernetes API.
# When the value is 0, the kubernetes client's default is used.
# May also set via the `VSO_KUBE_CLIENT_QPS` environment variable.
# Default: 0
# @type: float
qps:

# Maximum burst for throttling requests to the kubernetes API.
# When the value is 0, the kubernetes client's default is used.
# May also set via the `VSO_KUBE_CLIENT_BURST` environment variable.
# Default: 0
# @type: int
burst:

# Defines additional environment variables to be added to the
# vault-secrets-operator manager container.
# Example:
Expand Down Expand Up @@ -552,10 +566,10 @@ metricsService:
# https://kubernetes.io/docs/concepts/services-networking/service/
# @type: map
ports:
- name: https
port: 8443
protocol: TCP
targetPort: https
- name: https
port: 8443
protocol: TCP
targetPort: https
type: ClusterIP

# Configures the default VaultConnection CR which will be used by resources
Expand Down Expand Up @@ -593,7 +607,6 @@ defaultVaultConnection:
# @type: map
headers: {}


# Configures and deploys the default VaultAuthMethod CR which will be used by resources
# if they do not specify a VaultAuthMethod reference. The name is 'default' and will
# always be installed in the same namespace as the operator.
Expand Down Expand Up @@ -791,7 +804,6 @@ defaultAuthMethod:
# @type: string
params: none


# Configures a Prometheus ServiceMonitor
telemetry:
serviceMonitor:
Expand Down Expand Up @@ -859,7 +871,7 @@ hooks:

# Limit the number of retries for the CRD upgrade.
# @type: integer
backoffLimit: 5
backoffLimit: 5

# Set the timeout for the CRD upgrade. The operation should typically take less than 5s
# to complete.
Expand Down

0 comments on commit 768eeb8

Please sign in to comment.