You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Skbn is a tool for copying files and directories between Kubernetes and cloud storage providers. It is named after the 1981 video game [Sokoban](https://en.wikipedia.org/wiki/Sokoban).
4
10
Skbn currently supports the following providers:
5
11
6
12
* AWS S3
13
+
* Azure Blob Storage
7
14
8
15
## Install
9
16
10
-
```
11
-
wget -qO- https://github.com/nuvo/skbn/releases/download/0.1.1/skbn.tar.gz | sudo tar xvz -C /usr/local/bin
12
-
```
17
+
### Prerequisites
13
18
14
-
## Build from source
19
+
1. git
20
+
2.[dep](https://github.com/golang/dep)
15
21
16
-
Skbn uses [glide](https://github.com/Masterminds/glide) as a dependency management tool, since some of the referenced packages are not available using [dep](https://github.com/golang/dep).
22
+
### From a release
23
+
24
+
Download the latest release from the [Releases page](https://github.com/nuvo/skbn/releases) or use it with a [Docker image](https://hub.docker.com/r/nuvo/skbn)
25
+
26
+
### From source
17
27
18
28
```
19
-
glide up
20
-
go build -o skbn cmd/skbn.go
29
+
mkdir -p $GOPATH/src/github.com/nuvo && cd $_
30
+
git clone https://github.com/nuvo/skbn.git && cd skbn
0 commit comments