-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- A new backend parameter called "NetworkInterface" is now available, which allows users to specify the network adapter for iSCSI connections. If you leave this parameter empty, the backend IP address becomes the default route. - Users can now use the TridentBackendConfig custom resource to create and manage Trident backends directly through the Kubernetes interface. - Added support for ARM64 and ARMv7 architectures. Fixed Issue - Fixed an issue where when creating a volume on QTS 5.1.x, the creation status would get stuck on "Pending" and an "iSCSI CREATE Failed" log message would be recorded.
- Loading branch information
1 parent
72ab65f
commit b3f20e4
Showing
7 changed files
with
56 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
apiVersion: v1 | ||
kind: Secret | ||
metadata: | ||
name: backend-qts-sample-secret | ||
namespace: trident | ||
type: Opaque | ||
stringData: | ||
username: david | ||
password: abcd1234 | ||
storageAddress: 10.20.91.69 | ||
--- | ||
apiVersion: trident.qnap.io/v1 | ||
kind: TridentBackendConfig | ||
metadata: | ||
name: backend-qts-sample-config | ||
namespace: trident | ||
spec: | ||
version: 1 | ||
storageDriverName: qnap-iscsi | ||
backendName: qts-david | ||
networkInterfaces: ["K8s-ISCSI"] #optional | ||
credentials: | ||
name: backend-qts-sample-secret | ||
debugTraceFlags: | ||
method: false | ||
storage: | ||
- labels: | ||
storage: qts-david | ||
serviceLevel: Any | ||
- labels: | ||
performance: premium | ||
features: | ||
tiering: Enable | ||
tierType: SSD | ||
ssdCache: "true" | ||
serviceLevel: SSD-Cache | ||
- labels: | ||
performance: standard | ||
features: | ||
tiering: Enable | ||
serviceLevel: Tiering | ||
- labels: | ||
performance: basic | ||
features: | ||
tiering: Disable | ||
serviceLevel: Non-Tiering |
Oops, something went wrong.