Skip to content

v1.3.0

Latest
Compare
Choose a tag to compare
@LeonaChen2727 LeonaChen2727 released this 23 Aug 05:59
· 1 commit to main since this release

New Features

  • Added support for Kubernetes v1.30.
  • Added support for QuTS hero, allowing you to use QuTS hero as a persistent volume.
  • Added support for QTS 5.1.x and QuTS hero h5.1.x.
  • You can now enable SSD cache in the QoS configuration instead of using annotation in the volume.
      features:
        raidLevel: "0"
        ssdCache: "true"
  • The backend can now automatically update physical pools.
  • Added a new QoS setting for RAID levels in QTS and QuTS hero.
    - serviceLevel: RAID1
      labels:
        performance: basic
      features:
        raidLevel: "1"
  • Added support for volume features such as deduplication, compression, and fast clone in QuTS hero.
kind: PersistentVolumeClaim
apiVersion: v1
metadata:
  name: pvc-premium-hero
  annotations:
    # thin allocate is customized
    trident.qnap.io/ThinAllocate: "false"

    # QuTS-hero features
    trident.qnap.io/Deduplication: "true"
    trident.qnap.io/Compression: "true"
    trident.qnap.io/FastClone: "true"
spec:
  accessModes:
    - ReadWriteOnce
  resources:
    requests:
      storage: 5Gi
  storageClassName: premium