We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I want to use tolerations AND storage class settings.
Tolerations are not passed from the StatefulSet to the pods when adding storage definition.
This is working:
redis: replicas: {{ .Values.Redis.Replicas }} tolerations: - key: "node/{{ .Values.Redis.Node.TaintKey }}" operator: "Exists" effect: "NoSchedule" - key: "node/{{ .Values.Redis.Node.TaintKey }}" operator: "Exists" effect: "NoExecute"
This is not:
redis: storage: persistentVolumeClaim: metadata: name: redisfailover-persistent spec: accessModes: - ReadWriteOnce resources: requests: storage: 0.2Gi storageClassName: st1 replicas: {{ .Values.Redis.Replicas }} tolerations: - key: "node/{{ .Values.Redis.Node.TaintKey }}" operator: "Exists" effect: "NoSchedule" - key: "node/{{ .Values.Redis.Node.TaintKey }}" operator: "Exists" effect: "NoExecute"
Combine Storage definition with Tolerations - like I showed above.
How are the pieces configured?
The text was updated successfully, but these errors were encountered:
Sure will test this and pick this up. But we do welcome if there is a PR from you on this.
BTW what does, Redis Operator version: 3.2.9, mean?
Sorry, something went wrong.
No branches or pull requests
Expected behaviour
I want to use tolerations AND storage class settings.
Actual behaviour
Tolerations are not passed from the StatefulSet to the pods when adding storage definition.
This is working:
This is not:
Steps to reproduce the behaviour
Combine Storage definition with Tolerations - like I showed above.
Environment
How are the pieces configured?
The text was updated successfully, but these errors were encountered: