Skip to content

anyscale-operator-0.1.0

Compare
Choose a tag to compare
@github-actions github-actions released this 21 Nov 03:09
2a6f1f3

What's Changed

  • Release: anyscale-operator 0.1.0 by @csivanich in #3
  • Adds better support for per-instance type NodeSelectors:
# example values.yaml
# specifies this instance type should use m5.large instance type
# assumes you have a NodeGroup capable of launching m5.large instance types
additionalInstanceTypes:
  2CPU-8GB-m5-large:
    resources:
      CPU: 2
      memory: 8Gi
    nodeSelectors:
      node.kubernetes.io/instance-type: m5.large
# example values.yaml
# specifies this instance type should use nodes which are labeled for "team A" to use
additionalInstanceTypes:
  2CPU-8GB-team-A:
    resources:
      CPU: 2
      memory: 8Gi
    nodeSelectors:
      team: "A"
  • Backwards-compatible

Full Changelog: anyscale-operator-0.0.3...anyscale-operator-0.1.0