From b21b5f1f8ff758a5336b13f556debed1989840a3 Mon Sep 17 00:00:00 2001
From: "motherofbots.eth" <126520850+apo77yon@users.noreply.github.com>
Date: Thu, 16 Mar 2023 20:21:14 -0700
Subject: [PATCH] Update README.md
---
kubernetes/kustomize/README.md | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/kubernetes/kustomize/README.md b/kubernetes/kustomize/README.md
index ba42077..23d5994 100644
--- a/kubernetes/kustomize/README.md
+++ b/kubernetes/kustomize/README.md
@@ -1,4 +1,6 @@
-# Introduction to Kustomize - Wordpress Example
+## wordpress with cdk
+
+
[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).
+
### Set Minukube
@@ -19,6 +22,7 @@ Start your cluster:
minikube start
```
+
### Install Kustomize
@@ -87,6 +91,7 @@ Now, you can check that the services are up (you should see `mysql` and `wordpre
kubectl get services
```
+
### Applying Overlays