Skip to content

Latest commit

 

History

History
60 lines (39 loc) · 1.08 KB

README.md

File metadata and controls

60 lines (39 loc) · 1.08 KB

kubernetes-filesystem

System to browse, upload or download files for pods or containers in kubernetes.

Language

中文文档

How to Use

  • Create your cluster with your kubeconfig

image

  • Browse, upload or download file(s)

image

Requirements

Docker is installed in your system.

How to Run

Build

bash build.sh

Pack to docker image

bash pack.sh

Run

docker run --name kubernetes-filesystem -d \
    -v /usr/local/bin/kubectl:/usr/local/bin/kubectl \  # mount kubectl into container
    -v /root/k8s-config/:/root/k8s-config/ \            # optional, config persistence
    -p 80:80 \
    kubernetes-filesystem:1.0.0

or

bash run.sh

How to Develop

git clone https://github.com/ErikXu/kubernetes-filesystem.git
cd kubernetes-filesystem/src/WebApi
dotnet restore
dotnet run