# Wordpress ```{warning} This site is still under development. ``` Wordpress is a free and open-source content management system (CMS) based on PHP and MySQL. Features include a plugin architecture and a template system. WordPress was used by more than 27.5% of the top 10 million websites as of February 2017. WordPress is reportedly the most popular website management or blogging system in use on the Web, supporting more than 60 million websites. ## Pre-requirements - A [Kubernetes Serverless](/quickstart/quickstart.md) cluster - kubectl installed ## Setup the database First, create a MariaDB database using the StatefulSet controller. ```bash kubectl apply -f - <Deployment controller. ```bash kubectl apply -f - < ``` Resolve the DNS name to an IP address. ```bash dig +short # ``` Add an entry to your `/etc/hosts` file, replacing `` with the IP address of the cluster. Or add an entry to your DNS server. ```bash echo " wordpress.example.com" | sudo tee -a /etc/hosts ``` Now, you can access the application at http://wordpress.example.com. ## Cleanup ```bash kubectl delete deployment wordpress kubectl delete service wordpress kubectl delete ingress wordpress kubectl delete pvc wordpress kubectl delete statefulset mariadb kubectl delete service mariadb kubectl delete pvc mariadb-mariadb-0 ```