You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using the secret provider helm chart, values for retryCountLimit and retryIntervalSec are set but only retryCountLimit is evaluated correctly and written to ENV.
We are using terraform with helm provider.
set {
name = "environment.conjur.retryCountLimit"
value = 10
}
set {
name = "environment.conjur.retryIntervalSec"
value = 5
}
I suspect that this is not being evaluated correctly
{{- if kindIs "float64" .Values.environment.conjur.retryCountLimit }}
- name: RETRY_COUNT_LIMIT
value: {{ .Values.environment.conjur.retryCountLimit | quote }}
{{- end }}
Summary
When using the secret provider helm chart, values for retryCountLimit and retryIntervalSec are set but only retryCountLimit is evaluated correctly and written to ENV.
We are using terraform with helm provider.
I suspect that this is not being evaluated correctly
https://github.com/cyberark/secrets-provider-for-k8s/blob/main/helm/secrets-provider/templates/secrets-provider.yaml
Steps to Reproduce
Expected Results
There are 10 retries with 5 second delay between retries.
Actual Results
There are 5 retries (default) with 5 seconds delay in between
Reproducible
Version/Tag number
Conjur V13.0
secrets-provider-for-k8s:1.5.0
Environment setup
GKE with K8S v1.25
Terraform with helm provider >= 2.1.0
Additional Information
n/a
The text was updated successfully, but these errors were encountered: