kube: clean up PersistentVolumeClaims

There's no difference as far as jsonnet is concerned, but it may confuse newbies, as Service and SimpleIngress use double colon for its top-level kube helpers. This also removes any ambiguity as to whether this is manifested in final JSON. So we can make that a convention.

Change-Id: I01ad4ea63f4d5d8ee6e5d41c79637ba186548c6f
Reviewed-on: https://gerrit.hackerspace.pl/c/hscloud/+/1803
Reviewed-by: q3k <q3k@hackerspace.pl>
diff --git a/app/matrix/lib/synapse.libsonnet b/app/matrix/lib/synapse.libsonnet
index 925a715..07656da 100644
--- a/app/matrix/lib/synapse.libsonnet
+++ b/app/matrix/lib/synapse.libsonnet
@@ -31,8 +31,8 @@
     appservices:: error "appservices need to be provided",
 
     dataVolume: app.ns.Contain(kube.PersistentVolumeClaim("synapse-data-waw3")) {
-        storage: "50Gi",
-        storageClass: cfg.storageClassName,
+        storage:: "50Gi",
+        storageClass:: cfg.storageClassName,
     },
 
     // homeserver.yaml that will be used to run synapse (in configMap).