Skip to content

Commit

Permalink
fix: storage classes
Browse files Browse the repository at this point in the history
  • Loading branch information
Björn Urban committed Oct 24, 2024
1 parent a4e2a5a commit 69d0bea
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion l1/components/redis/chart/Redis.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export function createRedisHelm(namespace: Namespace) {
"redis":{
"password": redisDBPassword,
},
defaultStorageClass: "local"
defaultStorageClass: "local-path"
},
auth: {
enabled: false,
Expand Down
2 changes: 1 addition & 1 deletion l1/components/surrealdb/Manual/Surreal.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export function createSurrealManual() {
namespace: namespace.metadata.name
},
spec: {
storageClassName: "local",
storageClassName: "local-path",
accessModes: ["ReadWriteOnce"],
resources: { requests: { storage: "1Gi" } },
},
Expand Down

0 comments on commit 69d0bea

Please sign in to comment.