diff --git a/Chart.yaml b/Chart.yaml
index 75892c9a4a4ca66f38ff859a153fe2935b1da41b..f8df66c4d966c416ab448dbb90f9f3853a0b751b 100644
--- a/Chart.yaml
+++ b/Chart.yaml
@@ -1,6 +1,6 @@
 apiVersion: v1
-appVersion: v0.0.5
+appVersion: v0.0.6
 description: caddy deployment
-name: caddy-test
-version: 0.0.6
+name: caddy
+version: 0.0.7
 icon: "https://www.vereign.com/wp-content/themes/vereign2020/images/vereign-logo.svg"
diff --git a/templates/configMap.yaml b/templates/configMap.yaml
index 77d5e5d04560b5d4d65ce31f68cc8da564864a9b..4207a97f830c6d8b7b48a5fc43591d239db499e6 100644
--- a/templates/configMap.yaml
+++ b/templates/configMap.yaml
@@ -18,12 +18,12 @@ data:
 
         # Handle any traffic that matches the `@websockets` pattern
         handle @websockets {
-                reverse_proxy SERVICE:PORT
+                reverse_proxy http://mediator:3000
         }
 
         # Handle all other traffic.
         handle {
-                reverse_proxy http://SERVICE:PORT
+                reverse_proxy http://mediator:3000
         }
 
         # What logs should look like.
diff --git a/templates/deployment.yaml b/templates/deployment.yaml
index d2721f7b2f3fbd5734eb635aa5bdb4e932b6ddbc..f64a7731ead6c621918090bbfb02ba5fea5e6530 100644
--- a/templates/deployment.yaml
+++ b/templates/deployment.yaml
@@ -1,7 +1,7 @@
 apiVersion: apps/v1
 kind: Deployment
 metadata:
-  name: "caddy-test"
+  name: "caddy"
   namespace: {{ .Release.Namespace }}
   labels:
     {{- include "app.labels" . | nindent 4 }}
diff --git a/values.yaml b/values.yaml
index 9f7bd846562ca8c5cb6361061a5df3c36383a9ec..303677cdb28cff0e143262cb1e867f0847269979 100644
--- a/values.yaml
+++ b/values.yaml
@@ -1,7 +1,7 @@
 # -- Default number of instances to start 
 replicaCount: 1
 # -- Application name
-name: caddy-test
+name: caddy
 # -- Ovverwrites application name
 nameOverride: ""