Skip to content

Commit 08978ea

Browse files
committed
Fixed Storage
1 parent 39a8f5b commit 08978ea

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

.github/workflows/deploy-azure.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ jobs:
145145
--dry-run=client -o yaml | kubectl apply -f -
146146
147147
#──────────── StorageClass & Kubernetes manifests ───────────
148-
- name: Apply StorageClass (Standard HDD)
148+
- name: Apply StorageClass (Standard SSD)
149149
run: kubectl apply -f infra/k8s/storageclass.yaml
150150

151151
- name: Apply Memgraph Deployment & Service

infra/k8s/memgraph.yaml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,7 @@ spec:
140140
selector: { app: memgraph }
141141
type: LoadBalancer
142142
ports:
143-
- { name: bolt, port: 7687, targetPort: 7687 }
144-
- { name: http, port: 7444, targetPort: 7444 }
145-
- { name: ui, port: 3000, targetPort: 3000 }
143+
- { name: bolt, port: 7687, targetPort: 7687, protocol: TCP }
144+
- { name: http, port: 7444, targetPort: 7444, protocol: TCP }
145+
- { name: ui, port: 3000, targetPort: 3000, protocol: TCP }
146+

0 commit comments

Comments
 (0)