Skip to content

Commit

Permalink
Add documentation for Azure PVC support (#98)
Browse files Browse the repository at this point in the history
* Add documentation for Azure PVC support

* Update chart-value-examples/azure/values.yaml

Co-authored-by: david <[email protected]>

* Remove repository

---------

Co-authored-by: david <[email protected]>
  • Loading branch information
enys and davidrapin authored Dec 10, 2024
1 parent 65bfeb9 commit a38d50b
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 0 deletions.
6 changes: 6 additions & 0 deletions chart-value-examples/azure/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Deploying Linkurious Enterprise helm chart on Azure Kubernetes Service

The sibling [values.yaml](values.yaml) file provides an example of deploying Linkurious Enterprise on AKS with persistent storage.

Please only use disk based CSI storage.
For more details please see [Azure CSI storage drivers documentation](https://learn.microsoft.com/en-us/azure/aks/csi-storage-drivers).
27 changes: 27 additions & 0 deletions chart-value-examples/azure/values.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
image:
# -- Repository to use for the application.
# You will need to retrieve the image from the Linkurious Customer Center and load it into your private repository
repository: ""
tag: 4.1.8

configOverlayEnabled: false
metrics:
prometheus:
enabled: false

persistentVolume:
enabled: true
## Linkurious Enterprise data Persistent Volume Storage Class
## If defined here, sets storageClassName: <storageClass> in the generated PersistentVolumeClaim
## If set to "-" here, sets storageClassName: "", which disables dynamic provisioning
## If undefined (the default) or set to null, then, no storageClassName spec is
## set, thus choosing the default provisioner.
## Possible values:
## * "managed-csi-premium" provisions premium SSD disks (recommended)
## * "managed-csi" provisions standard SSD-backed disks
## Do not use azurefile-based storage classes, they are not compatible.
storageClass: "managed-csi-premium"
accessModes:
- ReadWriteOnce
size: 5Gi
annotations: {}

0 comments on commit a38d50b

Please sign in to comment.