Compare commits

..

2 Commits

Author SHA1 Message Date
505d3401fb Start adding readme for wordpress chart. 2023-01-11 16:14:13 +13:00
63d89f3122 Set iv postgresql chart version to 12.1.6. Bitnami deleted 11.1.3.
Force postgresql image tag version
2023-01-11 16:12:06 +13:00
3 changed files with 32 additions and 2 deletions

View File

@ -1,9 +1,9 @@
apiVersion: v2 apiVersion: v2
name: invidious name: invidious
description: A helm chart for deploying invidious youtube front-end on kubernetes. description: A helm chart for deploying invidious youtube front-end on kubernetes.
version: 1.1.1 version: 1.1.2
appVersion: 0.20.1 appVersion: 0.20.1
dependencies: dependencies:
- name: postgresql - name: postgresql
version: ~11.1.3 version: ~12.1.6
repository: "https://charts.bitnami.com/bitnami/" repository: "https://charts.bitnami.com/bitnami/"

View File

@ -29,6 +29,7 @@ securityContext:
postgresql: postgresql:
image: image:
registry: quay.io registry: quay.io
tag: 13
auth: auth:
username: kemal username: kemal
password: kemal password: kemal

29
wordpress/README.org Normal file
View 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