We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Put postgres data on a Cindervolume or similar to improve postgres speed
The text was updated successfully, but these errors were encountered:
First we need to request a second volume in the terraform part, say 5GB,
Then we define a PV as in pv_cinder.yaml that has to go into the helm chart of the postgres service:
apiVersion: "v1" kind: "PersistentVolume" metadata: name: "cinder-jenkins" spec: capacity: storage: "10Gi" accessModes: - "ReadWriteOnce" cinder: fsType: "ext4" volumeID: "a2f...48173e"
The volumeID must be passed on from Terraform.
K8S will make sure the physical mount will follow the postgres pod in case it is moved around.
Sorry, something went wrong.
No branches or pull requests
Put postgres data on a Cindervolume or similar to improve postgres speed
The text was updated successfully, but these errors were encountered: