Skip to content

Commit

Permalink
Merge pull request #26 from helxplatform/develop
Browse files Browse the repository at this point in the history
New release for UI
  • Loading branch information
waTeim authored Oct 27, 2023
2 parents ae75007 + befd3c6 commit 07728a3
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 7 deletions.
4 changes: 2 additions & 2 deletions Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ 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.1.0
version: 1.2.0

# 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
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: "5.0.0"
appVersion: "6.0.0"
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# ui

![Version: 1.0.0](https://img.shields.io/badge/Version-1.0.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 5.0.0](https://img.shields.io/badge/AppVersion-5.0.0-informational?style=flat-square)
![Version: 1.1.0](https://img.shields.io/badge/Version-1.1.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 5.1.0](https://img.shields.io/badge/AppVersion-5.1.0-informational?style=flat-square)

A Helm chart for Kubernetes

Expand All @@ -18,6 +18,8 @@ A Helm chart for Kubernetes
| config.brand_name | string | `""` | |
| config.hidden_result_tabs | string | `""` | |
| config.hidden_support_sections | string | `""` | |
| config.meta.description | string | `"HeLx UI"` | |
| config.meta.title | string | `"HeLx UI"` | |
| config.search.enabled | string | `"true"` | |
| config.search.url | string | `"https:\\/\\/helx.renci.org"` | |
| config.tranql_url | string | `"https:\\/\\/helx.renci.org\\/tranql\\/"` | |
Expand Down
6 changes: 3 additions & 3 deletions templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,18 +35,18 @@ spec:
imagePullPolicy: {{ .Values.image.pullPolicy }}
ports:
- name: http
containerPort: 80
containerPort: 8080
protocol: TCP
livenessProbe:
initialDelaySeconds: 100
httpGet:
path: /
port: 80
port: 8080
readinessProbe:
initialDelaySeconds: 100
httpGet:
path: /
port: 80
port: 8080
resources:
{{- toYaml .Values.resources | nindent 12 }}
env:
Expand Down
2 changes: 1 addition & 1 deletion templates/service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ spec:
type: {{ .Values.service.type }}
ports:
- port: {{ .Values.service.port }}
targetPort: 80
targetPort: 8080
protocol: TCP
name: http
selector:
Expand Down

0 comments on commit 07728a3

Please sign in to comment.