Skip to content

Commit 32ac586

Browse files
authored
Merge pull request #527 from andyzhangx/move-repo
chore: change image repo address
2 parents 17906d1 + 70e2aa9 commit 32ac586

File tree

3 files changed

+12
-14
lines changed

3 files changed

+12
-14
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@
77
This driver allows Kubernetes to use [Azure disk](https://azure.microsoft.com/en-us/services/storage/disks/) volume, csi plugin name: `disk.csi.azure.com`
88

99
### Container Images & Kubernetes Compatibility
10-
|Azure Disk CSI Driver Version | Image | 1.14+ |
11-
|-------------------------------|----------------------------------------------------|-------|
12-
|master branch |mcr.microsoft.com/k8s/csi/azuredisk-csi:latest | yes |
13-
|v0.8.0 |mcr.microsoft.com/k8s/csi/azuredisk-csi:v0.8.0 | yes |
14-
|v0.7.0 |mcr.microsoft.com/k8s/csi/azuredisk-csi:v0.7.0 | yes |
15-
|v0.6.0 |mcr.microsoft.com/k8s/csi/azuredisk-csi:v0.6.0 | yes |
10+
|Driver Version |Image | 1.14+ |
11+
|----------------|------------------------------------------------|-------|
12+
|master branch |mcr.microsoft.com/k8s/csi/azuredisk-csi:latest | yes |
13+
|v0.8.0 |mcr.microsoft.com/k8s/csi/azuredisk-csi:v0.8.0 | yes |
14+
|v0.7.0 |mcr.microsoft.com/k8s/csi/azuredisk-csi:v0.7.0 | yes |
15+
|v0.6.0 |mcr.microsoft.com/k8s/csi/azuredisk-csi:v0.6.0 | yes |
1616

1717
### Driver parameters
1818
Please refer to [`disk.csi.azure.com` driver parameters](./docs/driver-parameters.md)

charts/README.md

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -51,13 +51,10 @@ The following table lists the configurable parameters of the latest Azure Disk C
5151
| `image.csiProvisioner.tag` | csi-provisioner docker image tag | v1.5.0 |
5252
| `image.csiProvisioner.pullPolicy` | csi-provisioner image pull policy | IfNotPresent |
5353
| `image.csiAttacher.repository` | csi-attacher docker image | mcr.microsoft.com/oss/kubernetes-csi/csi-attacher |
54-
| `image.csiAttacher.tag` | csi-attacher docker image tag | v1.2.0 |
54+
| `image.csiAttacher.tag` | csi-attacher docker image tag | v2.2.0 |
5555
| `image.csiAttacher.pullPolicy` | csi-attacher image pull policy | IfNotPresent |
56-
| `image.clusterDriverRegistrar.repository` | cluster-driver-registrar docker image | mcr.microsoft.com/oss/kubernetes-csi/csi-cluster-driver-registrar |
57-
| `image.clusterDriverRegistrar.tag` | cluster-driver-registrar docker image tag | v1.0.1 |
58-
| `image.clusterDriverRegistrar.pullPolicy` | cluster-driver-registrar image pull policy | IfNotPresent |
5956
| `image.csiResizer.repository` | csi-resizer docker image | mcr.microsoft.com/oss/kubernetes-csi/csi-resizer |
60-
| `image.csiResizer.tag` | csi-resizer docker image tag | v0.3.0 |
57+
| `image.csiResizer.tag` | csi-resizer docker image tag | v0.5.0 |
6158
| `image.csiResizer.pullPolicy` | csi-resizer image pull policy | IfNotPresent |
6259
| `image.livenessProbe.repository` | liveness-probe docker image | mcr.microsoft.com/oss/kubernetes-csi/livenessprobe |
6360
| `image.livenessProbe.tag` | liveness-probe docker image tag | v1.1.0 |
@@ -73,10 +70,10 @@ The following table lists the configurable parameters of the latest Azure Disk C
7370
| `node.metricsPort` | metrics port of csi-azuredisk-node |29605 |
7471
| `snapshot.enabled` | whether enable snapshot feature | false |
7572
| `snapshot.image.csiSnapshotter.repository` | csi-snapshotter docker image | mcr.microsoft.com/oss/kubernetes-csi/csi-snapshotter |
76-
| `snapshot.image.csiSnapshotter.tag` | csi-snapshotter docker image tag | v2.0.0 |
73+
| `snapshot.image.csiSnapshotter.tag` | csi-snapshotter docker image tag | v2.0.1 |
7774
| `snapshot.image.csiSnapshotter.pullPolicy` | csi-snapshotter image pull policy | IfNotPresent |
7875
| `snapshot.image.csiSnapshotController.repository` | snapshot-controller docker image | mcr.microsoft.com/oss/kubernetes-csi/snapshot-controller |
79-
| `snapshot.image.csiSnapshotController.tag` | snapshot-controller docker image tag | v2.0.0 |
76+
| `snapshot.image.csiSnapshotController.tag` | snapshot-controller docker image tag | v2.1.1 |
8077
| `snapshot.image.csiSnapshotController.pullPolicy` | snapshot-controller image pull policy | IfNotPresent |
8178
| `snapshot.snapshotController.replicas` | the replicas of snapshot-controller | 1 |
8279
| `snapshot.snapshotController.serviceAccount` | whether create service account of snapshot-controller | true |

deploy/example/snapshot/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
# Azure Disk Snapshot feature
22

33
- Snapshot feature is beta since Kubernetes v1.17.0, refer to [Snapshot & Restore Feature](https://kubernetes-csi.github.io/docs/snapshot-restore-feature.html) for more details.
4+
- [Use velero to backup & restore Azure disk by snapshot feature](https://velero.io/blog/csi-integration/)
45

56
## Introduction
67
This driver supports both [full and incremental snapshot functionalities](https://docs.microsoft.com/en-us/azure/virtual-machines/windows/incremental-snapshots), user could set `incremental` in `VolumeSnapshotClass` to control whether create full or incremental(by default) snapshot(refer to [VolumeSnapshotClass](../../../docs/driver-parameters.md#volumesnapshotclass) for detailed parameters description):
78

8-
```
9+
```yaml
910
apiVersion: snapshot.storage.k8s.io/v1beta1
1011
kind: VolumeSnapshotClass
1112
metadata:

0 commit comments

Comments
 (0)