Skip to content

Commit f493713

Browse files
committed
Fork to the Leaseweb org
1 parent 64f3029 commit f493713

File tree

16 files changed

+33
-35
lines changed

16 files changed

+33
-35
lines changed

.github/workflows/pr-check.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
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:

.github/workflows/release.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
- v*
99

1010
env:
11-
REGISTRY_NAME: quay.io/apalia
11+
REGISTRY_NAME: ghcr.io/leaseweb
1212
IMAGES: "cloudstack-csi-driver cloudstack-csi-sc-syncer"
1313

1414
jobs:
@@ -34,9 +34,9 @@ jobs:
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'

README.md

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
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

87
This repository provides a [Container Storage Interface (CSI)](https://github.com/container-storage-interface/spec)
98
plugin 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

cmd/cloudstack-csi-driver/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM alpine:3.14.0
22

33
LABEL \
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

77
RUN apk add --no-cache \
88
ca-certificates \

cmd/cloudstack-csi-driver/main.go

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@
22
//
33
// To get usage information:
44
//
5-
// cloudstack-csi-driver -h
6-
//
5+
// cloudstack-csi-driver -h
76
package main
87

98
import (
@@ -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

2221
var (

cmd/cloudstack-csi-sc-syncer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM alpine:3.14.0
22

33
LABEL \
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

77
RUN apk add --no-cache ca-certificates
88

cmd/cloudstack-csi-sc-syncer/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ You may use it locally or as a Kubernetes Job.
2020
You must have a CloudStack configuration file and a Kubernetes `kubeconfig`
2121
file.
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

2525
1. Set the execution permission:
2626

@@ -85,7 +85,7 @@ spec:
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=-"

cmd/cloudstack-csi-sc-syncer/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

1616
const agent = "cloudstack-csi-sc-syncer"

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/apalia/cloudstack-csi-driver
1+
module github.com/leaseweb/cloudstack-csi-driver
22

33
go 1.15
44

pkg/cloud/fake/fake.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ import (
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

1414
const zoneID = "a1887604-237c-4212-a9cd-94620b7880fa"

0 commit comments

Comments
 (0)