Skip to content

Commit 0e86365

Browse files
committed
Merge branch 'main' of https://github.com/shapeblue/cloudstack-csi-driver into enhancements-csi
2 parents f979be1 + 5183b54 commit 0e86365

File tree

6 files changed

+24
-20
lines changed

6 files changed

+24
-20
lines changed

.github/workflows/charts-release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Release Charts
33
on:
44
push:
55
branches:
6-
- master
6+
- main
77
paths:
88
- 'charts/**'
99

.github/workflows/release.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Release
33
on:
44
push:
55
branches:
6-
- master
6+
- main
77
tags:
88
- v*
99

@@ -38,12 +38,12 @@ jobs:
3838
username: ${{github.actor}}
3939
password: ${{secrets.GITHUB_TOKEN}}
4040

41-
- name: Push master
42-
if: github.ref == 'refs/heads/master'
41+
- name: Push main
42+
if: github.ref == 'refs/heads/main'
4343
run: |
4444
for img in $IMAGES; do
45-
docker tag ${img} ${REGISTRY_NAME}/${img}:master
46-
docker push ${REGISTRY_NAME}/${img}:master
45+
docker tag ${img} ${REGISTRY_NAME}/${img}:main
46+
docker push ${REGISTRY_NAME}/${img}:main
4747
done
4848
4949
- name: Push tagged release

README.md

Lines changed: 15 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -240,18 +240,22 @@ kubectl logs -f <cloudstack-csi-controller pod_name> -n kube-system -c external-
240240
- [CloudStack documentation on storage](http://docs.cloudstack.apache.org/en/latest/adminguide/storage.html)
241241
- [CSI (Container Storage Interface) specification](https://github.com/container-storage-interface/spec)
242242

243-
---
243+
## History
244244

245-
Copyright 2021 Apalia SAS
245+
Apalia SAS originally started the [CloudStack CSI Driver](https://github.com/apalia/cloudstack-csi-driver)
246+
project, which was later [forked and progressed](https://github.com/apalia/cloudstack-csi-driver/forks)
247+
by several members of the CloudStack community, notably [Leaseweb](https://github.com/leaseweb/cloudstack-csi-driver).
246248

247-
Licensed under the Apache License, Version 2.0 (the "License");
248-
you may not use this file except in compliance with the License.
249-
You may obtain a copy of the License at
249+
This repository attempts to widen the scope of the original project to make it work across
250+
hypervisors (KVM, VMware, XenServer/XCP-ng) and add support for domains, projects, CKS, CAPC, and advanced storage
251+
operations such as volume snapshots.
250252

251-
http://www.apache.org/licenses/LICENSE-2.0
253+
## License
252254

253-
Unless required by applicable law or agreed to in writing, software
254-
distributed under the License is distributed on an "AS IS" BASIS,
255-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
256-
See the License for the specific language governing permissions and
257-
limitations under the License.
255+
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
256+
this file except in compliance with the License. You may obtain a copy of the
257+
License at <http://www.apache.org/licenses/LICENSE-2.0>
258+
259+
## Contributors
260+
261+
[![CloudStack CSI Driver Contributors](https://contrib.rocks/image?repo=shapeblue/cloudstack-csi-driver&anon=0&max=500)](https://github.com/shapeblue/cloudstack-csi-driver/graphs/contributors)

charts/cloudstack-csi/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: v2
22
name: cloudstack-csi
33
description: A Helm chart for CloudStack CSI driver
44
type: application
5-
version: 2.0.2
5+
version: 3.0.0
66
appVersion: 0.6.1
77
sources:
88
- https://github.com/shapeblue/cloudstack-csi-driver

deploy/k8s/controller-deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ spec:
6161

6262
containers:
6363
- name: cloudstack-csi-controller
64-
image: ghcr.io/shapeblue/cloudstack-csi-driver:master
64+
image: ghcr.io/shapeblue/cloudstack-csi-driver:main
6565
imagePullPolicy: Always
6666
args:
6767
- "controller"

deploy/k8s/node-daemonset.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ spec:
3636

3737
containers:
3838
- name: cloudstack-csi-node
39-
image: ghcr.io/shapeblue/cloudstack-csi-driver:master
39+
image: ghcr.io/shapeblue/cloudstack-csi-driver:main
4040
imagePullPolicy: IfNotPresent
4141
args:
4242
- "node"

0 commit comments

Comments
 (0)