Skip to content

Commit

Permalink
Fix the docs for persistence static and media files (#439)
Browse files Browse the repository at this point in the history
  • Loading branch information
ubajze authored Sep 18, 2024
1 parent 4241333 commit 3a8858f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/advanced-features/persistence.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ That said, it is also possible to leverage Kubernetes Persistent Volumes, follow
nautobot:
persistenceStaticFiles:
enabled: true
storageClass: "your-storage-class"
storageClassName: "your-storage-class"
accessMode: "ReadWriteMany"
size: "1Gi"
```
Expand All @@ -19,7 +19,7 @@ There is also a setting for Media files mounted at `/opt/nautobot/media` of Naut
nautobot:
persistenceMediaFiles:
enabled: true
storageClass: "your-storage-class"
storageClassName: "your-storage-class"
accessMode: "ReadWriteMany"
size: "1Gi"
```
Expand All @@ -30,7 +30,7 @@ Unfortunately, if the underlying storage solution does not support the `ReadWrit
nautobot:
persistenceStaticFiles:
enabled: true
storageClass: "your-storage-class"
storageClassName: "your-storage-class"
size: "1Gi"
selector:
matchLabel:
Expand Down

0 comments on commit 3a8858f

Please sign in to comment.