-
Notifications
You must be signed in to change notification settings - Fork 196
Updates ready for MQ V9.0.4 #15
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
Changes from all commits
ef92f58
72228f3
774cf26
68f679d
ab12ded
9a05a1d
721c2e6
a8bb808
6195ff8
c7c1db9
7efcef6
0ffa87b
e6c4a21
9c9a2e1
8c4daa9
de28a70
f720eb2
3cc1a09
7c91187
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,3 @@ | ||
| charts | ||
| cmd | ||
| downloads | ||
| pkg | ||
| test | ||
| vendor |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,13 @@ | ||
| # Change log | ||
|
|
||
| ## 9.0.4 (2017-11-01) | ||
| * Updated to MQ version 9.0.4.0 | ||
| * Updated to Go version 9 | ||
| * Removed packages `curl`, `ca-certificates`, and their dependencies, which were only used at build time | ||
| * Improved logging | ||
| * Helm charts now work on Kubernetes V1.6 | ||
| * Production Helm chart now includes a default image repository and tag | ||
| * Updated to use multi-stage Docker build, so that Go code is built inside a container | ||
|
|
||
| ## 9.0.3 (2017-10-17) | ||
| * Initial version |
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -24,8 +24,10 @@ metadata: | |
| spec: | ||
| serviceName: {{ .Values.service.name }} | ||
| replicas: 1 | ||
| {{- if and (ge (.Capabilities.KubeVersion.Major | int) 1) (ge (.Capabilities.KubeVersion.Minor | int) 7) }} | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This looks like a check to make sure the Kube version has a minor of 1.7 but the above line in the readme says 1.6 now. |
||
| updateStrategy: | ||
| type: RollingUpdate | ||
| {{- end }} | ||
| template: | ||
| metadata: | ||
| labels: | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -10,7 +10,7 @@ This chart deploys a single IBM MQ Advanced server (queue manager) into an IBM C | |
|
|
||
| ## Prerequisites | ||
|
|
||
| - Kubernetes 1.7 or greater, with beta APIs enabled | ||
| - Kubernetes 1.6 or greater, with beta APIs enabled | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same as above |
||
| - If persistence is enabled (see [configuration](#configuration)), then you either need to create a PersistentVolume, or specify a Storage Class if classes are defined in your cluster. | ||
|
|
||
| ## Installing the Chart | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -24,8 +24,10 @@ metadata: | |
| spec: | ||
| serviceName: {{ .Values.service.name }} | ||
| replicas: 1 | ||
| {{- if and (ge (.Capabilities.KubeVersion.Major | int) 1) (ge (.Capabilities.KubeVersion.Minor | int) 7) }} | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same as above |
||
| updateStrategy: | ||
| type: RollingUpdate | ||
| {{- end }} | ||
| template: | ||
| metadata: | ||
| labels: | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Lowered the Kubernetes requirement?