Compare commits
2 Commits
4764e6d4f9
...
505d3401fb
| Author | SHA1 | Date | |
|---|---|---|---|
| 505d3401fb | |||
| 63d89f3122 |
@ -1,9 +1,9 @@
|
||||
apiVersion: v2
|
||||
name: invidious
|
||||
description: A helm chart for deploying invidious youtube front-end on kubernetes.
|
||||
version: 1.1.1
|
||||
version: 1.1.2
|
||||
appVersion: 0.20.1
|
||||
dependencies:
|
||||
- name: postgresql
|
||||
version: ~11.1.3
|
||||
version: ~12.1.6
|
||||
repository: "https://charts.bitnami.com/bitnami/"
|
||||
|
||||
@ -29,6 +29,7 @@ securityContext:
|
||||
postgresql:
|
||||
image:
|
||||
registry: quay.io
|
||||
tag: 13
|
||||
auth:
|
||||
username: kemal
|
||||
password: kemal
|
||||
|
||||
29
wordpress/README.org
Normal file
29
wordpress/README.org
Normal file
@ -0,0 +1,29 @@
|
||||
#+TITLE: Wordpress content management
|
||||
#+AUTHOR: James Blair
|
||||
#+EMAIL: mail@jamesblair.net
|
||||
#+DATE: <2022-12-01 Thu 07:45>
|
||||
|
||||
[[https://wordpress.org][Wordpress]] is a free and open-source content management system paired with a MySQL or MariaDB database. Features include a plugin architecture and a template system, referred to within WordPress as "Themes". WordPress was originally created as a blog-publishing system but has evolved to support other web content types.
|
||||
|
||||
I created this helm chart for self-hosting wordpress in a container on ~k3s~. Complete the steps below to deploy this chart.
|
||||
|
||||
#+NAME: Deploy wordpress via helm
|
||||
#+begin_src tmate
|
||||
# Ensure wordpress namespace exists
|
||||
kubectl create namespace jamma-wordpress
|
||||
|
||||
# Create directories if they don't already exist
|
||||
#mkdir --parent "/home/${USER}/Services/wordpress"
|
||||
|
||||
# Clone charts repository
|
||||
#cd "/home/${USER}/Services/wordpress" && git clone https://gitea.jamma.life/jmhbnz/charts.git
|
||||
|
||||
# Ensure the repository is up to date
|
||||
#cd charts/wordpress && git pull
|
||||
|
||||
# Install the chart
|
||||
helm upgrade --install -n jamma-wordpress jamma-wordpress . \
|
||||
--set "ingress.hosts[0]=wordpress.jamma.dev" \
|
||||
--set "ingress.tls[0].hosts[0]=wordpress.jamma.dev" \
|
||||
--set "ingress.tls[0].secretName=tls-jamma-wordpress"
|
||||
#+end_src
|
||||
Reference in New Issue
Block a user