57 lines
2.2 KiB
YAML
57 lines
2.2 KiB
YAML
# © Copyright IBM Corporation 2017
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
# 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: ibmcom/mq
|
|
# tag is the tag to use for the container repository
|
|
tag: 9
|
|
# pullSecret is the secret to use when pulling the image from a private registry
|
|
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
|
|
data:
|
|
# name sets part of the name for this persistent volume claim
|
|
name: "data"
|
|
persistence:
|
|
enabled: true
|
|
## 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: 2Gi
|
|
service:
|
|
name: qmgr
|
|
type: ClusterIP
|
|
resources:
|
|
limits:
|
|
cpu: 500m
|
|
memory: 512Mi
|
|
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.
|
|
name:
|
|
# dev section specifies settings for the MQ developer defaults available in the MQ Advanced for Developers image.
|
|
dev:
|
|
# adminPassword sets the password of the admin user
|
|
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: |