2023-07-03 00:18:30 +02:00
|
|
|
# Running a Firefish server with Kubernetes and Helm
|
2023-05-11 01:07:45 +02:00
|
|
|
|
|
|
|
This is a [Helm](https://helm.sh/) chart directory in the root of the project
|
2023-07-03 00:18:30 +02:00
|
|
|
that you can use to deploy firefish to a Kubernetes cluster
|
2023-05-11 01:07:45 +02:00
|
|
|
|
|
|
|
## Deployment
|
|
|
|
|
|
|
|
1. Copy the example helm values and make your changes:
|
|
|
|
```shell
|
|
|
|
cp .config/helm_values_example.yml .config/helm_values.yml
|
|
|
|
```
|
|
|
|
|
|
|
|
2. Update helm dependencies:
|
|
|
|
```shell
|
|
|
|
cd chart
|
|
|
|
helm dependency list $dir 2> /dev/null | tail +2 | head -n -1 | awk '{ print "helm repo add " $1 " " $3 }' | while read cmd; do $cmd; done;
|
|
|
|
cd ../
|
|
|
|
```
|
|
|
|
|
2023-07-03 00:18:30 +02:00
|
|
|
3. Create the firefish helm release (also used to update existing deployment):
|
2023-05-11 01:07:45 +02:00
|
|
|
```shell
|
|
|
|
helm upgrade \
|
|
|
|
--install \
|
2023-07-03 00:18:30 +02:00
|
|
|
--namespace firefish \
|
2023-05-11 01:07:45 +02:00
|
|
|
--create-namespace \
|
2023-07-03 00:18:30 +02:00
|
|
|
firefish chart/ \
|
2023-05-11 01:07:45 +02:00
|
|
|
-f .config/helm_values.yml
|
|
|
|
```
|
|
|
|
|
2023-07-03 00:18:30 +02:00
|
|
|
4. Watch your firefish server spin up:
|
2023-05-11 01:07:45 +02:00
|
|
|
```shell
|
2023-07-03 00:18:30 +02:00
|
|
|
kubectl -n firefish get po -w
|
2023-05-11 01:07:45 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
5. Initial the admin user and managed config:
|
|
|
|
```shell
|
2023-07-03 00:18:30 +02:00
|
|
|
export firefish_USERNAME="my_desired_admin_handle" && \
|
|
|
|
export firefish_PASSWORD="myDesiredInitialPassword" && \
|
|
|
|
export firefish_HOST="firefish.example.com" && \
|
|
|
|
export firefish_TOKEN=$(curl -X POST https://$firefish_HOST/api/admin/accounts/create -H "Content-Type: application/json" -d "{ \"username\":\"$firefish_USERNAME\", \"password\":\"$firefish_PASSWORD\" }" | jq -r '.token') && \
|
|
|
|
echo "Save this token: ${firefish_TOKEN}" && \
|
|
|
|
curl -X POST -H "Authorization: Bearer $firefish_TOKEN" https://$firefish_HOST/api/admin/accounts/hosted
|
2023-05-11 01:07:45 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
6. Enjoy!
|