https://github.com/thesurlydev/confluence-k8s
Install Atlassian Confluence on Kubernetes
https://github.com/thesurlydev/confluence-k8s
confluence confluence-server k8s kubernetes
Last synced: 3 months ago
JSON representation
Install Atlassian Confluence on Kubernetes
- Host: GitHub
- URL: https://github.com/thesurlydev/confluence-k8s
- Owner: thesurlydev
- Created: 2020-07-29T17:13:49.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2020-07-30T02:34:24.000Z (almost 5 years ago)
- Last Synced: 2025-02-06T18:52:28.447Z (5 months ago)
- Topics: confluence, confluence-server, k8s, kubernetes
- Language: Shell
- Homepage:
- Size: 1000 Bytes
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# confluence-k8s
```bash
helm repo add mox https://helm.mox.sh
helm repo update
``````bash
kubectl create ns confluence
```## Install
Update `values.yaml` with values that suit your needs (see https://chartcenter.io/mox/confluence-server) then run the following:
```bash
helm install confluence mox/confluence-server -f values.yaml -n confluence
```## Uninstall
```bash
helm delete confluence -n confluence
```The PostgreSQL PVC will not get automatically delete so:
```bash
kubectl delete -n confluence persistentvolumeclaim data-confluence-software-db-0
```