Brief about IBM Certified Container Software
- A Helm chart is organized as a collection of files inside a directory by the
name of the Chart itself. For more information see, Helm Charts.
Example Helm Chart
<Name of a Chart/> Chart.yaml # A YAML file containing information about the Chart. LICENSE # OPTIONAL: A plain text file containing the license for the Chart. README.md # OPTIONAL: A README file. requirements.yaml # OPTIONAL: A YAML file listing dependencies for the Chart. values.yaml # The default configuration values for this Chart. Charts/ # A directory containing any Charts upon which this Chart depends. templates/ # A directory of templates that, when combined with values, generates valid Kubernetes manifest files. templates/NOTES.txt # OPTIONAL: A plain text file containing short usage notes.
- This Helm chart deploys IBM Connect:Direct for Unix on a container
management platform with the following resource deployments:
- statefulset pod <release-name>-IBM-connect-direct-0
1 replica by default
- configMap <release-name>-ibm-connect-direct
This is used to provide default configuration in cd_param_file.
- service <release-name>-ibm-connect-direct
This is used to expose the IBM Connect:Direct services for accessing using clients.
- service-account
<release-name>-ibm-connect-direct-serviceaccount
This service will not be created if serviceAccount.create is false.
- persistence volume claim
<release-name>-ibm-connect-direct.Note: If the release name is greater than 15 characters then the pod name may be truncated.
- statefulset pod <release-name>-IBM-connect-direct-0
- This Helm chart deploys IBM Connect:Direct for Unix on a container
management platform with the following resource deployments:
- Certified Container Software commands
For more information on other commands and options, see Helm Commands.
- To install a Chart
$ helm install
- To upgrade to a new release
$ helm upgrade
- To rollback a release to a previous
version
$ helm rollback
- To delete the release from
Kubernetes.
$ helm delete
- To install a Chart