mirror of
https://github.com/haiwen/seafile-admin-docs.git
synced 2025-12-26 02:32:50 +00:00
147 lines
6.9 KiB
Markdown
147 lines
6.9 KiB
Markdown
# Setup Seafile with a single K8S pod with K8S resources files
|
|
|
|
This manual explains how to deploy and run Seafile server on a Linux server using *Kubernetes* (***k8s*** thereafter) in a single pod (i.e., single node mode). So this document is essentially an extended description of the [Docker-based Seafile single-node deployment](./overview.md) (support both CE and Pro).
|
|
|
|
For specific environment and configuration requirements, please refer to the description of the [Docker-based Seafile single-node deployment](./setup_pro_by_docker.md#requirements). Please also refer to the description of the ***K8S tool*** section in [here](./cluster_deploy_with_k8s.md#k8s-tools).
|
|
|
|
## System requirements
|
|
|
|
Please refer [here](./system_requirements.md) for the details of system requirements about Seafile service. By the way, this will apply to all nodes where Seafile pods may appear in your K8S cluster. In general, we recommend that each node should have at least 2G RAM and a 2-core CPU (> 2GHz).
|
|
|
|
## Gettings started
|
|
|
|
For persisting data using in the docker-base deployment, `/opt/seafile-data`, is still adopted in this manual. What's more, all K8S YAML files will be placed in `/opt/seafile-k8s-yaml` (replace it when following these instructions if you would like to use another path).
|
|
|
|
By the way, we don't provide the deployment methods of basic services (e.g., **Redis**, **MySQL** and **Elasticsearch**) and seafile-compatibility components (e.g., **SeaDoc**) for K8S in our document. If you need to install these services in K8S format, ***you can refer to the rewrite method of this document.***
|
|
|
|
## Create namespace and secretMap
|
|
|
|
=== "Seafile Pro"
|
|
|
|
```sh
|
|
kubectl create ns seafile
|
|
|
|
kubectl create secret generic seafile-secret --namespace seafile \
|
|
--from-literal=JWT_PRIVATE_KEY='<required>' \
|
|
--from-literal=SEAFILE_MYSQL_DB_PASSWORD='<required>' \
|
|
--from-literal=INIT_SEAFILE_ADMIN_PASSWORD='<required>' \
|
|
--from-literal=INIT_SEAFILE_MYSQL_ROOT_PASSWORD='<required>' \
|
|
--from-literal=REDIS_PASSWORD='' \
|
|
--from-literal=S3_SECRET_KEY='' \
|
|
--from-literal=S3_SSE_C_KEY=''
|
|
```
|
|
=== "Seafile CE"
|
|
|
|
```sh
|
|
kubectl create ns seafile
|
|
|
|
kubectl create secret generic seafile-secret --namespace seafile \
|
|
--from-literal=JWT_PRIVATE_KEY='<required>' \
|
|
--from-literal=SEAFILE_MYSQL_DB_PASSWORD='<required>' \
|
|
--from-literal=INIT_SEAFILE_ADMIN_PASSWORD='<required>' \
|
|
--from-literal=INIT_SEAFILE_MYSQL_ROOT_PASSWORD='<required>' \
|
|
--from-literal=REDIS_PASSWORD=''
|
|
```
|
|
|
|
## Down load the YAML files for Seafile Server
|
|
|
|
=== "Pro edition"
|
|
|
|
```sh
|
|
mkdir -p /opt/seafile-k8s-yaml
|
|
|
|
wget -P /opt/seafile-k8s-yaml https://manual.seafile.com/13.0/repo/k8s/pro/seafile-deployment.yaml
|
|
wget -P /opt/seafile-k8s-yaml https://manual.seafile.com/13.0/repo/k8s/pro/seafile-persistentvolume.yaml
|
|
wget -P /opt/seafile-k8s-yaml https://manual.seafile.com/13.0/repo/k8s/pro/seafile-persistentvolumeclaim.yaml
|
|
wget -P /opt/seafile-k8s-yaml https://manual.seafile.com/13.0/repo/k8s/pro/seafile-service.yaml
|
|
wget -P /opt/seafile-k8s-yaml https://manual.seafile.com/13.0/repo/k8s/pro/seafile-env.yaml
|
|
```
|
|
|
|
=== "Community edition"
|
|
|
|
```sh
|
|
mkdir -p /opt/seafile-k8s-yaml
|
|
|
|
wget -P /opt/seafile-k8s-yaml https://manual.seafile.com/13.0/repo/k8s/ce/seafile-deployment.yaml
|
|
wget -P /opt/seafile-k8s-yaml https://manual.seafile.com/13.0/repo/k8s/ce/seafile-persistentvolume.yaml
|
|
wget -P /opt/seafile-k8s-yaml https://manual.seafile.com/13.0/repo/k8s/ce/seafile-persistentvolumeclaim.yaml
|
|
wget -P /opt/seafile-k8s-yaml https://manual.seafile.com/13.0/repo/k8s/ce/seafile-service.yaml
|
|
wget -P /opt/seafile-k8s-yaml https://manual.seafile.com/13.0/repo/k8s/ce/seafile-env.yaml
|
|
```
|
|
|
|
In here we suppose you download the YAML files in `/opt/seafile-k8s-yaml`, which mainly include about:
|
|
|
|
- `seafile-deployment.yaml` for Seafile server pod management and creation,
|
|
- `seafile-service.yaml` for exposing Seafile services to the external network,
|
|
- `seafile-persistentVolume.yaml` for defining the location of a volume used for persistent storage on the host
|
|
- `seafile-persistentvolumeclaim.yaml` for declaring the use of persistent storage in the container.
|
|
|
|
!!! tip "Use PV bound from a storage class"
|
|
If you would like to use automatically allocated persistent volume (PV) by a storage class, please modify `seafile-persistentvolumeclaim.yaml` and specify `storageClassName`. On the other hand, the PV defined by `seafile-persistentvolume.yaml` can be disabled:
|
|
|
|
```sh
|
|
rm /opt/seafile-k8s-yaml/seafile-persistentvolume.yaml
|
|
```
|
|
|
|
For futher configuration details, you can refer [the official documents](https://kubernetes.io/docs/tasks/configure-pod-container/).
|
|
|
|
## Modify `seafile-env.yaml`
|
|
|
|
Similar to Docker-base deployment, Seafile cluster in K8S deployment also supports use files to configure startup progress, you can modify common [environment variables](./setup_pro_by_docker.md#downloading-and-modifying-env) by
|
|
|
|
```sh
|
|
nano /opt/seafile-k8s-yaml/seafile-env.yaml
|
|
```
|
|
|
|
!!! warning
|
|
For the fields marked with `<...>` are **required**, please make sure these items are filled in, otherwise Seafile server may not run properly.
|
|
|
|
## Start Seafile server
|
|
|
|
You can start Seafile server and specify the resources into the namespace `seafile` for easier management by
|
|
|
|
```sh
|
|
kubectl apply -f /opt/seafile-k8s-yaml/ -n seafile
|
|
```
|
|
|
|
!!! warning "Important for Pro edition"
|
|
By default, Seafile (***Pro***) will access the ***Elasticsearch*** with the specific service name:
|
|
|
|
- ***Elasticsearch***: `elasticsearch` with port 9200
|
|
|
|
If the above services are:
|
|
|
|
- Not in your K8S pods (including using an external service)
|
|
- With different service name
|
|
- With different server port
|
|
|
|
Please modfiy the files in `/opt/seafile-data/seafile/conf/seafevents.conf` to make correct the configurations for above services, otherwise the Seafile server cannot start normally. Then restart Seafile server:
|
|
|
|
```sh
|
|
kubectl delete pods -n seafile $(kubectl get pods -n seafile -o jsonpath='{.items[*].metadata.name}' | grep seafile)
|
|
```
|
|
|
|
## Activating the Seafile License (Pro)
|
|
|
|
If you have a `seafile-license.txt` license file, simply put it in the volume of the Seafile container. The volumne's default path in the Compose file is `/opt/seafile-data`. If you have modified the path, save the license file under your custom path.
|
|
|
|
!!! danger "If the license file has a different name or cannot be read, Seafile server will start with in trailer mode with most THREE users"
|
|
|
|
Then restart Seafile:
|
|
|
|
```bash
|
|
kubectl delete pods -n seafile $(kubectl get pods -n seafile -o jsonpath='{.items[*].metadata.name}' | grep seafile)
|
|
```
|
|
|
|
## Uninstall Seafile K8S
|
|
|
|
You can uninstall the Seafile K8S by the following command:
|
|
|
|
```sh
|
|
kubectl delete -f /opt/seafile-k8s-yaml/ -n seafile
|
|
```
|
|
|
|
## Advanced operations
|
|
|
|
Please refer from [here](./k8s_advanced_management.md) for futher advanced operations.
|