Skip to content

Commit 4ce3534

Browse files
committed
fix releaser, update readme
1 parent 1a298e4 commit 4ce3534

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.goreleaser.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,4 +61,4 @@ docker_manifests:
6161
release:
6262
draft: true
6363
extra_files:
64-
- glob: "rbs-csi-deploy-*.yaml"
64+
- glob: "rbs-csi-deploy.yaml"

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ kubectl create secret generic rbs-csi-secret \
2222
--from-literal=api-token="your-api-token" \
2323
--namespace=kube-system
2424

25-
# 2. Deploy driver
26-
kubectl apply -f deploy/rbac.yaml
27-
kubectl apply -f deploy/csi-driver.yaml
28-
kubectl apply -f deploy/controller.yaml
29-
kubectl apply -f deploy/node-daemonset.yaml
25+
# 2. Deploy latest driver version
26+
kubectl apply -f https://github.com/serverscom/serverscom-rbs-csi/releases/latest/download/rbs-csi-deploy.yaml
27+
28+
# or specific version
29+
kubectl apply -f https://github.com/serverscom/serverscom-rbs-csi/releases/download/v0.1.0/rbs-csi-deploy.yaml
3030

3131
# 3. Create StorageClass
3232
kubectl apply -f examples/storageclass.yaml

scripts/build-deploy-manifest.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ set -euo pipefail
33

44
VERSION="$1"
55

6-
OUTPUT="rbs-csi-deploy-${VERSION}.yaml"
6+
OUTPUT="rbs-csi-deploy.yaml"
77

88
echo "# Generated deploy manifest for version ${VERSION}" > "$OUTPUT"
99
echo "# Do not edit manually" >> "$OUTPUT"

0 commit comments

Comments
 (0)