Skip to content

Commit

Permalink
Merge pull request #653 from uselagoon/lagoon-v2-18-2
Browse files Browse the repository at this point in the history
update Lagoon appVersion to v2.18.2
  • Loading branch information
tobybellwood authored Apr 12, 2024
2 parents be3ee82 + 35bef40 commit fd92cec
Show file tree
Hide file tree
Showing 7 changed files with 29 additions and 23 deletions.
8 changes: 4 additions & 4 deletions charts/lagoon-core/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@ type: application
# 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.43.0
version: 1.44.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.
appVersion: v2.18.1
appVersion: v2.18.2

dependencies:
- name: nats
Expand All @@ -41,6 +41,6 @@ dependencies:
annotations:
artifacthub.io/changes: |
- kind: changed
description: reduce default replicas for broker to 1
description: add SSH_ENDPOINT vars to api service
- kind: changed
description: update Lagoon appVersion to v2.18.1
description: update Lagoon appVersion to v2.18.2
2 changes: 2 additions & 0 deletions charts/lagoon-core/ci/linter-values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ lagoonUIURL: http://ui:9101
lagoonWebhookURL: http://webhook:11213
defaultIngressClassName: nginx

sshTokenEndpoint: ssh-token.example.com

# used in ui
# lagoonAPIURL: https://api.example.com/graphql
# keycloakFrontEndURL: https://keycloak.example.com
Expand Down
10 changes: 10 additions & 0 deletions charts/lagoon-core/templates/api.deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -175,6 +175,16 @@ spec:
- name: S3_FILES_REGION
value: {{ . | quote }}
{{- end }}
{{- if .Values.sshTokenEndpoint }}
- name: SSH_TOKEN_ENDPOINT
value: {{ .Values.sshTokenEndpoint | quote }}
{{- end }}
- name: SSH_TOKEN_ENDPOINT_PORT
{{- if .Values.sshToken.enabled }}
value: {{ .Values.sshToken.service.ports.sshserver | quote }}
{{- else }}
value: {{ .Values.ssh.service.port | quote }}
{{- end }}
- name: UI_URL
{{- if .Values.lagoonUIURL }}
value: {{ .Values.lagoonUIURL | quote }}
Expand Down
8 changes: 7 additions & 1 deletion charts/lagoon-core/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,15 @@
# s3FilesSecretAccessKey:

# These values are optional.

# overwriteActiveStandbyTaskImage:

# appspecific discovery.json settings
# This should point to the publicly accessible ssh endpoint as a schema-less
# URI (either domain or IP) for the ssh-token (or fallback ssh) service
# e.g. ssh-token.example.com, ssh.example.com or 192.168.0.100
# The port will be read from the sshToken (or ssh) port value
# sshTokenEndpoint:

# These values are optional depending on the services Lagoon is integrated with
# in your environment.

Expand Down
16 changes: 2 additions & 14 deletions charts/lagoon-remote/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,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.
version: 0.88.0
version: 0.88.1

dependencies:
- name: lagoon-build-deploy
Expand All @@ -41,16 +41,4 @@ dependencies:
annotations:
artifacthub.io/changes: |
- kind: changed
description: update storage-calculator to v0.5.2
- kind: changed
description: added metrics to storage-calculator
- kind: removed
description: removed dioscuri subchart, activestandby is handled via a Lagoon task directly now
- kind: changed
description: updated insights-remote version to v0.0.9
- kind: changed
description: update lagoon-build-deploy to 0.26.4
- kind: changed
description: update ssh-portal to v0.34.0
- kind: added
description: add support for logs access via SSH
description: update storage-calculator to v0.5.3
2 changes: 1 addition & 1 deletion charts/lagoon-remote/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -373,4 +373,4 @@ storageCalculator:
repository: uselagoon/remote-calculator
pullPolicy: IfNotPresent
# Overrides the image tag whose default is the chart appVersion.
tag: v0.5.2
tag: v0.5.3
6 changes: 3 additions & 3 deletions charts/lagoon-test/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,18 +15,18 @@ type: application
# 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: 0.55.0
version: 0.56.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.
appVersion: v2.18.1
appVersion: v2.18.2

# This section is used to collect a changelog for artifacthub.io
# It should be started afresh for each release
# Valid supported kinds are added, changed, deprecated, removed, fixed and security
annotations:
artifacthub.io/changes: |
- kind: changed
description: update Lagoon appVersion to v2.18.1
description: update Lagoon appVersion to v2.18.2

0 comments on commit fd92cec

Please sign in to comment.