Skip to content

Commit

Permalink
QNAP-CSI-PlugIn-v1.2.1-release
Browse files Browse the repository at this point in the history
  • Loading branch information
LeonaChen2727 committed Jun 6, 2024
1 parent 117b6df commit 337b02e
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Deploy/Trident/bundle.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -533,7 +533,7 @@ spec:
- command:
- /trident-operator
- --log-level=debug
- --qts-cgi-image=qnapsystem/qnap-csi-backend-qts-sidecar:v1.2.0
- --qts-cgi-image=qnapsystem/qnap-csi-backend-qts-sidecar:v1.2.1
env:
- name: POD_NAME
valueFrom:
Expand Down
2 changes: 1 addition & 1 deletion Deploy/Trident/tridentorchestrator.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ metadata:
spec:
debug: true
namespace: trident
tridentImage: qnapsystem/qnap-csi:v1.2.0
tridentImage: qnapsystem/qnap-csi:v1.2.1
4 changes: 2 additions & 2 deletions Helm/trident/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ replicaCount: 1

tridentOperator:
image: qnapsystem/qnap-csi-operator:v1.2.0
cgiServerImage : qnapsystem/qnap-csi-backend-qts-sidecar:v1.2.0
cgiServerImage : qnapsystem/qnap-csi-backend-qts-sidecar:v1.2.1
imagePullPolicy: IfNotPresent
logLevel: debug

tridentOrchestrator:
image: qnapsystem/qnap-csi:v1.2.0
image: qnapsystem/qnap-csi:v1.2.1
debug: true
8 changes: 4 additions & 4 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ This is the official [Container Storage Interface](https://github.com/container-
### CSI Driver Version and Compatibility
| **Driver Version** | **Supported Kubernetes Versions** | **Supported QNAP NAS** |
|------------------- | --------------------------------- | ------------------------------------- |
| v1.2.0 | 1.21 to 1.27 | NAS running QTS 5.0.0 or later |
| v1.2.1 | 1.21 to 1.27 | NAS running QTS 5.0.0 or later |

### Supported Host Operating Systems
- Debian 8 or later
Expand Down Expand Up @@ -48,7 +48,7 @@ kubectl auth can-i '*' '*' --all-namespaces
- The result should be "yes".
3. Verify that you can launch a pod that uses an image from Docker Hub and can reach your storage system over the pod network.
```
kubectl run -i --ttyping --image=busybox --restart=Never --rm --\ping <NAS management IP>
kubectl run -i --tty ping --image=busybox --restart=Never --rm -- \ping <NAS management IP>
```
- For example: `kubectl run -i --tty ping --image=busybox --restart=Never --rm -- \ping 10.64.118.157`
4. Verify that your NAS has created a storage pool and iSCSI service is enabled.
Expand Down Expand Up @@ -267,12 +267,12 @@ spec:
1. Make sure you have a corresponding pool.
2. Add a backend based on the yaml file you configured earlier.
```
./tridentctl create backend -f <backend.json> -n trident
kubectl apply -f <backend yaml file path>
```
3. Check the result.
- Run the following commands one at a time.
```
kubectl apply -f <backend yaml file path>
kubectl get tridentbackendconfigs.trident.qnap.io -n trident
```
### Adding a Backend by CLI(tridentctl)
1. Make sure you have a corresponding pool.
Expand Down

0 comments on commit 337b02e

Please sign in to comment.