generated from Linkurious/docker-app-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add documentation for Azure PVC support (#98)
* 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
1 parent
65bfeb9
commit a38d50b
Showing
2 changed files
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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: {} |