This repository was archived by the owner on May 28, 2021. It is now read-only.
This repository was archived by the owner on May 28, 2021. It is now read-only.
Toleration for mysql cluster resource #214
Closed
Description
Is this a BUG REPORT or FEATURE REQUEST?
FEATURE REQUEST
I would like to make use of the taint and toleration concept (https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/) to run a mysql cluster only on specific nodes. Therefore I want to specify tolerations for the cluster kubernetes resource.
apiVersion: mysql.oracle.com/v1alpha1
kind: Cluster
metadata:
name: mysql
spec:
members: 3
tolerations:
- key: "database-node"
operator: "Equal"
value: "true"
effect: "NoSchedule"