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

UM || Support of custom configuration and Nginx support added #11

Merged
merged 11 commits into from
Dec 5, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/dry-run-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,20 +36,20 @@ jobs:

- name: Dry-run of apigateway
run: |
helm install apigw apigateway/helm --dry-run
helm template apigw apigateway/helm

- name: Dry-run of developerportal
run: |
helm install devportal developerportal/helm --dry-run
helm template devportal developerportal/helm

- name: Dry-run of microservicesruntime
run: |
helm install msr microservicesruntime/helm --dry-run
helm template msr microservicesruntime/helm

- name: Dry-run of mywebmethodsserver
run: |
helm install mws mywebmethodsserver/helm --dry-run
helm template mws mywebmethodsserver/helm

- name: Dry-run of universalmessaging
run: |
helm install um universalmessaging/helm --dry-run
helm template um universalmessaging/helm
2 changes: 1 addition & 1 deletion microservicesruntime/helm/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 1.0.0
version: 1.0.1

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
3 changes: 2 additions & 1 deletion microservicesruntime/helm/templates/nginx-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@ spec:
metadata:
creationTimestamp: null
labels:
{{- include "common.labels.standard" . | nindent 8 }}-nginx
app: nginx
{{- include "common.labels.standard" . | nindent 8 }}
{{- with .Values.extraLabels -}}
{{ toYaml . | nindent 8 }}
{{- end }}
Expand Down
7 changes: 7 additions & 0 deletions universalmessaging/helm/README.md.gotmpl
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,11 @@ Install release
helm install um webmethods/universalmessaging
```

## Version History

| Version | Changes and Description |
|-----|------|
| `1.0.0' | Initial release |
| `1.0.1' | Update JMX Exporter configuration file with . Bigfix: Mount configuration files into container. Nginx added. |

{{ template "chart.valuesSection" . }}
Loading
Loading