update
diff --git a/charts/goproxy/templates/install.yaml b/charts/goproxy/templates/install.yaml
new file mode 100644
index 0000000..d2bc499
--- /dev/null
+++ b/charts/goproxy/templates/install.yaml
@@ -0,0 +1,56 @@
+apiVersion: v1
+kind: Service
+metadata:
+  name: goproxy
+  namespace: {{ .Release.Namespace }}
+spec:
+  type: ClusterIP
+  selector:
+    app: goproxy
+  ports:
+  - name: http
+    port: {{ .Values.servicePort }}
+    targetPort: http
+    protocol: TCP
+---
+apiVersion: apps/v1
+kind: Deployment
+metadata:
+  name: goproxy
+  namespace: {{ .Release.Namespace }}
+spec:
+  selector:
+    matchLabels:
+      app: goproxy
+  replicas: 1
+  template:
+    metadata:
+      labels:
+        app: goproxy
+    spec:
+      containers:
+      - name: goproxy
+        image: {{ .Values.image.repository }}:{{ .Values.image.tag }}
+        imagePullPolicy: {{ .Values.image.pullPolicy }}
+        ports:
+        - name: http
+          containerPort: {{ .Values.port }}
+          protocol: TCP
+        command:
+        - server
+        - --address=:{{ .Values.port }}
+        env:
+        - name: GOMODCACHE
+          value: /go/pkg/mod
+         volumeMounts:
+           - name: cache-volume
+             mountPath: /go/pkg/mod
+         volumes:
+         - name: cache-volume
+           persistentVolumeClaim:
+             claimName: {{ .Values.persistentVolumeClaimName }}
+      tolerations:
+      - key: "pcloud"
+        operator: "Equal"
+        value: "role"
+        effect: "NoSchedule"