Change storage parameters for new standard
This commit is contained in:
@@ -14,8 +14,9 @@
|
||||
|
||||
# license must be set to "accept" to accept the terms of the IBM license
|
||||
license: "not accepted"
|
||||
|
||||
image:
|
||||
# repository is the container repository to use, which must contain IBM MQ Advanced
|
||||
# repository is the container repository to use, which must contain IBM MQ Advanced for Developers
|
||||
repository: ibmcom/mq
|
||||
# tag is the tag to use for the container repository
|
||||
tag: 9
|
||||
@@ -23,18 +24,27 @@ image:
|
||||
pullSecret:
|
||||
# pullPolicy is either IfNotPresent or Always (https://kubernetes.io/docs/concepts/containers/images/)
|
||||
pullPolicy: IfNotPresent
|
||||
# data section specifies settings for the main persistent volume claim, which is used for data in /var/mqm
|
||||
|
||||
# persistence section specifies persistence settings which apply to the whole chart
|
||||
persistence:
|
||||
# enabled is whether to use Persistent Volumes or not
|
||||
enabled: true
|
||||
# name sets part of the name for this persistent volume claim
|
||||
# useDynamicProvisioning is whether or not to use Storage Classes to dynamically create Persistent Volumes
|
||||
useDynamicProvisioning: true
|
||||
|
||||
# dataPVC section specifies settings for the main Persistent Volume Claim, which is used for data in /var/mqm
|
||||
dataPVC:
|
||||
# name sets part of the name for this Persistent Volume Claim
|
||||
name: "data"
|
||||
## storageClassName is the name of the storage class to use, or an empty string for no storage class
|
||||
## storageClassName is the name of the Storage Class to use, or an empty string for no Storage Class
|
||||
storageClassName: ""
|
||||
## size is the minimum size of the persistent volume
|
||||
## size is the minimum size of the Persistent Volume
|
||||
size: 2Gi
|
||||
|
||||
service:
|
||||
name: qmgr
|
||||
type: ClusterIP
|
||||
|
||||
resources:
|
||||
limits:
|
||||
cpu: 500m
|
||||
@@ -42,6 +52,7 @@ resources:
|
||||
requests:
|
||||
cpu: 500m
|
||||
memory: 512Mi
|
||||
|
||||
# queueManager section specifies settings for the MQ Queue Manager
|
||||
queueManager:
|
||||
# name allows you to specify the name to use for the queue manager. Defaults to the Helm release name.
|
||||
@@ -52,5 +63,6 @@ queueManager:
|
||||
adminPassword:
|
||||
# appPassword sets the password of the app user
|
||||
appPassword:
|
||||
|
||||
# nameOverride can be set to partially override the name of the resources created by this chart
|
||||
nameOverride:
|
||||
|
||||
Reference in New Issue
Block a user