Skip to content

Commit

Permalink
fix(dev): use config pvc name in deployment
Browse files Browse the repository at this point in the history
Signed-off-by: Cameron Smith <cameron.ray.smith@gmail.com>
  • Loading branch information
cameronraysmith committed Feb 15, 2024
1 parent 2d1d08b commit 3027f0f
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ import (
volumeMounts: [
{
mountPath: "/workspace"
name: #config.metadata.name
name: #config.persistence.name
},
]
resources: #config.resources
Expand All @@ -50,9 +50,9 @@ import (
]
volumes: [
{
name: #config.metadata.name
name: #config.persistence.name
persistentVolumeClaim: {
claimName: #config.metadata.name
claimName: #config.persistence.name
}
},
]
Expand Down

0 comments on commit 3027f0f

Please sign in to comment.