diff --git a/kubernetes-config/overlays/cat4/kustomization.yaml b/kubernetes-config/overlays/cat4/kustomization.yaml
new file mode 100644
index 00000000..d0c6680d
--- /dev/null
+++ b/kubernetes-config/overlays/cat4/kustomization.yaml
@@ -0,0 +1,27 @@
+apiVersion: kustomize.config.k8s.io/v1beta1
+kind: Kustomization
+namespace: grumpycat
+resources:
+- ../../base
+
+
+images:
+- name: quay.io/wpernath/grumpycat-melonjs:latest
+ newName: quay.io/wpernath/grumpycat-melonjs
+ newTag: v0.6.4
+- name: quay.io/wpernath/quarkus-grumpycat:latest
+ newName: quay.io/wpernath/quarkus-grumpycat
+ newTag: v0.6.4
+
+# generate a configmap
+configMapGenerator:
+ # Cat - Client ConfigMap, note that the client app runs entirely on the browser,
+ # so we need to use the external URL of the grumpycat server service
+ #
+ - name: client-config
+ literals:
+ - APPLICATION_BASESERVERURL=http://cat-server-grumpycat.apps.cat4.ocp.lan/
+ # Grumpycat Server configmap, just point to the internal service name of the kafka service
+ - name: server-config
+ literals:
+ - KAFKA_BOOTSTRAP_SERVERS=grumpy-kafka-kafka-bootstrap:9092
diff --git a/melonjs-client/pom.xml b/melonjs-client/pom.xml
index 1a0dd8a6..4031f2c3 100644
--- a/melonjs-client/pom.xml
+++ b/melonjs-client/pom.xml
@@ -7,7 +7,7 @@
org.wanja.grumpycat
umbrella
- 0.6.4
+ 0.6.5
../
diff --git a/pom.xml b/pom.xml
index 4a0209ad..5205d4be 100644
--- a/pom.xml
+++ b/pom.xml
@@ -3,7 +3,7 @@
4.0.0
org.wanja.grumpycat
umbrella
- 0.6.4
+ 0.6.5
pom
diff --git a/quarkus-server/pom.xml b/quarkus-server/pom.xml
index 21cc9661..01a1442c 100644
--- a/quarkus-server/pom.xml
+++ b/quarkus-server/pom.xml
@@ -5,7 +5,7 @@
org.wanja.grumpycat
umbrella
- 0.6.4
+ 0.6.5
../