Skip to content
New issue

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

this is going to fix lagoon issue #461 #463

Merged
merged 7 commits into from Jul 11, 2018
Expand Up @@ -34,6 +34,12 @@ parameters:
- name: DEPLOYMENT_STRATEGY
description: Strategy of Deploymentconfig
value: "Rolling"
- name: PERSISTENT_STORAGE_CLASS
description: Name of the Storage Class to use
value: "slow"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@markxtji slow is a custom class setup for DPC, you'll need to use bulk

- name: PERSISTENT_STORAGE_SIZE
description: Size of the Storage to request
value: "5Gi"
objects:
- apiVersion: v1
kind: PersistentVolumeClaim
Expand All @@ -42,6 +48,8 @@ objects:
spec:
accessModes:
- ReadWriteOnce
storageClassName: "${PERSISTENT_STORAGE_CLASS}"
resources:
requests:
storage: 5Gi
storage: ${PERSISTENT_STORAGE_SIZE}