https://github.com/eyolas/k3s-owncloud
Install k3s with owncloud, pg and letsencrypt
https://github.com/eyolas/k3s-owncloud
Last synced: 8 months ago
JSON representation
Install k3s with owncloud, pg and letsencrypt
- Host: GitHub
- URL: https://github.com/eyolas/k3s-owncloud
- Owner: eyolas
- Created: 2020-01-23T12:48:04.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-02-04T22:44:09.000Z (over 6 years ago)
- Last Synced: 2025-05-20T19:36:41.422Z (about 1 year ago)
- Language: Shell
- Size: 8.79 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# K3s owncloud
Single-node K3s server showing some Open Source Kubernetes tools :
- zalando postgres-operator: https://github.com/zalando/postgres-operator
- owncloud
- cert-manager: https://github.com/jetstack/cert-manager
- letsencrypt
- k3sup: https://github.com/alexellis/k3sup#download-k3sup-tldr
## Installation
### Installation k3s
```sh
export IP=ipdserver
export USER_SERVER=userserver
k3sup install --ip $IP --user $USER_SERVER
```
Export kubeconfig
## Customize configuration
Change values in :
- owncloud/owncloud-configmap.yaml (OWNCLOUD_DOMAIN and OWNCLOUD_ADMIN_USERNAME)
- le/certificate.yaml (commonName and dnsNames)
- owncloud/owncloud-ingress.yaml (host)
- owncloud/owncloud-secret.yaml (OWNCLOUD_ADMIN_PASSWORD)
### Installation all
```sh
git clone https://github.com/eyolas/k3s-owncloud
cd k3s-owncloud
./install.sh
```