diff --git a/Chart.yaml b/Chart.yaml
index fcf15f2a7bc1683e9054208b1b1a91d1bdf3ea98..2518d95445d4687c96de0a7f00b06d097b8454cd 100644
--- a/Chart.yaml
+++ b/Chart.yaml
@@ -1,6 +1,6 @@
 apiVersion: v1
-appVersion: 0.0.1
+appVersion: 0.0.2
 description: cache deployment
 name: cache
-version: 0.0.1
+version: 0.0.2
 icon: "https://www.vereign.com/wp-content/themes/vereign2020/images/vereign-logo.svg"
diff --git a/templates/deployment.yaml b/templates/deployment.yaml
index 504124c1fa7377a0d06dcdfd32080fe90e6ffba2..ead891f441212c38121816123dd38db9ae1367d0 100644
--- a/templates/deployment.yaml
+++ b/templates/deployment.yaml
@@ -72,7 +72,7 @@ spec:
           containerPort: {{ .Values.cache.http.port }}
         readinessProbe:
           httpGet:
-            path: /v1/health
+            path: /readiness
             port: {{ .Values.cache.http.port }}
           initialDelaySeconds: 5
           periodSeconds: 5
diff --git a/templates/service.yaml b/templates/service.yaml
index 150056a8b49abe7ebc88085b40ea86f3dfaae142..92420d98644c0abaa143b78a043163e6aff2877c 100644
--- a/templates/service.yaml
+++ b/templates/service.yaml
@@ -9,8 +9,7 @@ spec:
   clusterIP: None
   ports:
   - name: http
-    port: {{ .Values.service.port }}
-    targetPort: {{ .Values.cache.http.port }}
+    targetPort: {{ .Values.service.port }}
+    port: {{ .Values.cache.http.port }}
   selector:
     {{- include "app.selectorLabels" . | nindent 4 }}
-