File tree Expand file tree Collapse file tree 16 files changed +33
-35
lines changed
Expand file tree Collapse file tree 16 files changed +33
-35
lines changed Original file line number Diff line number Diff line change 1212 - name : golangci-lint
1313 uses : golangci/golangci-lint-action@v2
1414 with :
15- version : v1.41.1
15+ version : v1.53.2
1616 args : --timeout=5m
1717
1818 build :
Original file line number Diff line number Diff line change 88 - v*
99
1010env :
11- REGISTRY_NAME : quay .io/apalia
11+ REGISTRY_NAME : ghcr .io/leaseweb
1212 IMAGES : " cloudstack-csi-driver cloudstack-csi-sc-syncer"
1313
1414jobs :
3434 - name : Log into registry
3535 uses : docker/login-action@v1
3636 with :
37- registry : quay .io
38- username : apalia+github_cloudstack_csi_driver
39- password : ${{ secrets.QUAY_TOKEN }}
37+ registry : ghcr .io
38+ username : ${{github.actor}}
39+ password : ${{secrets.GITHUB_TOKEN }}
4040
4141 - name : Push master
4242 if : github.ref == 'refs/heads/master'
Original file line number Diff line number Diff line change 11# CloudStack CSI Driver
22
3- [ ![ Quay.io] ( https://img.shields.io/badge/Quay.io-container_image-informational )] ( https://quay.io/repository/apalia/cloudstack-csi-driver )
4- [ ![ Go Reference] ( https://pkg.go.dev/badge/github.com/apalia/cloudstack-csi-driver.svg )] ( https://pkg.go.dev/github.com/apalia/cloudstack-csi-driver )
5- [ ![ Go Report Card] ( https://goreportcard.com/badge/github.com/apalia/cloudstack-csi-driver )] ( https://goreportcard.com/report/github.com/apalia/cloudstack-csi-driver )
6- [ ![ Release] ( https://github.com/apalia/cloudstack-csi-driver/workflows/Release/badge.svg?branch=master )] ( https://github.com/apalia/cloudstack-csi-driver/actions )
3+ [ ![ Go Reference] ( https://pkg.go.dev/badge/github.com/leaseweb/cloudstack-csi-driver.svg )] ( https://pkg.go.dev/github.com/leaseweb/cloudstack-csi-driver )
4+ [ ![ Go Report Card] ( https://goreportcard.com/badge/github.com/leaseweb/cloudstack-csi-driver )] ( https://goreportcard.com/report/github.com/leaseweb/cloudstack-csi-driver )
5+ [ ![ Release] ( https://github.com/leaseweb/cloudstack-csi-driver/workflows/Release/badge.svg?branch=master )] ( https://github.com/leaseweb/cloudstack-csi-driver/actions )
76
87This repository provides a [ Container Storage Interface (CSI)] ( https://github.com/container-storage-interface/spec )
98plugin for [ Apache CloudStack] ( https://cloudstack.apache.org/ ) .
@@ -12,7 +11,7 @@ plugin for [Apache CloudStack](https://cloudstack.apache.org/).
1211
1312### Requirements
1413
15- - Minimal Kubernetes version: v1.17
14+ - Minimal Kubernetes version: v1.25
1615
1716- The Kubernetes cluster must run in CloudStack. Tested only in a KVM zone.
1817
@@ -57,7 +56,7 @@ you may use the same secret for both tools.
5756### Deployment
5857
5958```
60- kubectl apply -f https://github.com/apalia /cloudstack-csi-driver/releases/latest/download/manifest.yaml
59+ kubectl apply -f https://github.com/leaseweb /cloudstack-csi-driver/releases/latest/download/manifest.yaml
6160```
6261
6362### Creation of Storage classes
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ FROM alpine:3.14.0
22
33LABEL \
44 org.opencontainers.image.description="CloudStack CSI driver" \
5- org.opencontainers.image.source="https://github.com/apalia /cloudstack-csi-driver/"
5+ org.opencontainers.image.source="https://github.com/leaseweb /cloudstack-csi-driver/"
66
77RUN apk add --no-cache \
88 ca-certificates \
Original file line number Diff line number Diff line change 22//
33// To get usage information:
44//
5- // cloudstack-csi-driver -h
6- //
5+ // cloudstack-csi-driver -h
76package main
87
98import (
@@ -15,8 +14,8 @@ import (
1514 "go.uber.org/zap"
1615 "go.uber.org/zap/zapcore"
1716
18- "github.com/apalia /cloudstack-csi-driver/pkg/cloud"
19- "github.com/apalia /cloudstack-csi-driver/pkg/driver"
17+ "github.com/leaseweb /cloudstack-csi-driver/pkg/cloud"
18+ "github.com/leaseweb /cloudstack-csi-driver/pkg/driver"
2019)
2120
2221var (
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ FROM alpine:3.14.0
22
33LABEL \
44 org.opencontainers.image.description="CloudStack disk offering to Kubernetes storage class syncer" \
5- org.opencontainers.image.source="https://github.com/apalia /cloudstack-csi-driver/"
5+ org.opencontainers.image.source="https://github.com/leaseweb /cloudstack-csi-driver/"
66
77RUN apk add --no-cache ca-certificates
88
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ You may use it locally or as a Kubernetes Job.
2020You must have a CloudStack configuration file and a Kubernetes ` kubeconfig `
2121file.
2222
23- 1 . Download ` cloudstack-csi-sc-syncer ` from [ latest release] ( https://github.com/apalia /cloudstack-csi-driver/releases/latest/ ) ;
23+ 1 . Download ` cloudstack-csi-sc-syncer ` from [ latest release] ( https://github.com/leaseweb /cloudstack-csi-driver/releases/latest/ ) ;
2424
25251 . Set the execution permission:
2626
8585 serviceAccountName: cloudstack-csi-sc-syncer
8686 containers:
8787 - name: cloudstack-csi-sc-syncer
88- image: quay .io/apalia /cloudstack-csi-sc-syncer:${version}
88+ image: ghcr .io/leaseweb /cloudstack-csi-sc-syncer:${version}
8989 args:
9090 - "-cloudstackconfig=/etc/cloudstack-csi-driver/cloud-config"
9191 - "-kubeconfig=-"
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ import (
1010 "os"
1111 "path"
1212
13- "github.com/apalia /cloudstack-csi-driver/pkg/syncer"
13+ "github.com/leaseweb /cloudstack-csi-driver/pkg/syncer"
1414)
1515
1616const agent = "cloudstack-csi-sc-syncer"
Original file line number Diff line number Diff line change 1- module github.com/apalia /cloudstack-csi-driver
1+ module github.com/leaseweb /cloudstack-csi-driver
22
33go 1.15
44
Original file line number Diff line number Diff line change 77
88 "github.com/hashicorp/go-uuid"
99
10- "github.com/apalia /cloudstack-csi-driver/pkg/cloud"
11- "github.com/apalia /cloudstack-csi-driver/pkg/util"
10+ "github.com/leaseweb /cloudstack-csi-driver/pkg/cloud"
11+ "github.com/leaseweb /cloudstack-csi-driver/pkg/util"
1212)
1313
1414const zoneID = "a1887604-237c-4212-a9cd-94620b7880fa"
You can’t perform that action at this time.
0 commit comments