Update README.md

This commit is contained in:
motherofbots.eth 2023-03-16 20:21:14 -07:00 committed by GitHub
parent 0b4b875d8b
commit b21b5f1f8f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,4 +1,6 @@
# Introduction to Kustomize - Wordpress Example ## wordpress with cdk
<br>
[Kustomize](https://kustomize.io/) is a tool that lets you create an entire Kubernetes application out of individual pieces — without touching the YAML for the individual components. [Kustomize](https://kustomize.io/) is a tool that lets you create an entire Kubernetes application out of individual pieces — without touching the YAML for the individual components.
@ -8,6 +10,7 @@ Kustomize enables you to do that by creating a file that ties everything togethe
In this example, you will learn how to use Kustomize to setup a Wordpress Kubernetes clusters. Please also check out [this article for a more deatailed explanation](https://medium.com/python-for-the-utopian/a-quick-introduction-to-kustomize-for-kubernetes-73490efa0966). In this example, you will learn how to use Kustomize to setup a Wordpress Kubernetes clusters. Please also check out [this article for a more deatailed explanation](https://medium.com/python-for-the-utopian/a-quick-introduction-to-kustomize-for-kubernetes-73490efa0966).
<br>
### Set Minukube ### Set Minukube
@ -19,6 +22,7 @@ Start your cluster:
minikube start minikube start
``` ```
<br>
### Install Kustomize ### Install Kustomize
@ -87,6 +91,7 @@ Now, you can check that the services are up (you should see `mysql` and `wordpre
kubectl get services kubectl get services
``` ```
<br>
### Applying Overlays ### Applying Overlays