From 04ac11f9eebd08cac1dbaffe593c7aa5333ada76 Mon Sep 17 00:00:00 2001 From: Blaize M Kaye Date: Thu, 8 Jun 2023 08:52:45 +1200 Subject: [PATCH 01/21] Adds new clusterrole perms and port exposure --- .../insights-remote.clusterrole.yaml | 21 +++++++++++++------ .../templates/insights-remote.deployment.yaml | 4 ++++ 2 files changed, 19 insertions(+), 6 deletions(-) diff --git a/charts/lagoon-remote/templates/insights-remote.clusterrole.yaml b/charts/lagoon-remote/templates/insights-remote.clusterrole.yaml index ddab9fff..dbf2ece3 100644 --- a/charts/lagoon-remote/templates/insights-remote.clusterrole.yaml +++ b/charts/lagoon-remote/templates/insights-remote.clusterrole.yaml @@ -6,10 +6,19 @@ metadata: labels: {{- include "lagoon-remote.insightsRemote.labels" . | nindent 4 }} rules: -- apiGroups: - - "" - resources: - - configmaps - verbs: - - "*" + - verbs: + - '*' + apiGroups: + - '' + resources: + - configmaps + - secrets + - verbs: + - get + - watch + - list + apiGroups: + - '' + resources: + - namespaces {{- end }} \ No newline at end of file diff --git a/charts/lagoon-remote/templates/insights-remote.deployment.yaml b/charts/lagoon-remote/templates/insights-remote.deployment.yaml index e450ae32..81eff177 100644 --- a/charts/lagoon-remote/templates/insights-remote.deployment.yaml +++ b/charts/lagoon-remote/templates/insights-remote.deployment.yaml @@ -56,6 +56,10 @@ spec: key: username resources: {{- toYaml .Values.insightsRemote.resources | nindent 12 }} + ports: + - name: insights-ws + containerPort: 8888 + protocol: TCP {{- with .Values.insightsRemote.nodeSelector }} nodeSelector: {{- toYaml . | nindent 8 }} From 840e76b00fdf638759a054fb5ea005c9a42ada7e Mon Sep 17 00:00:00 2001 From: Blaize M Kaye Date: Thu, 8 Jun 2023 09:21:58 +1200 Subject: [PATCH 02/21] Adds insights remote service definition --- .../templates/insights-remote.service.yaml | 14 ++++++++++++++ charts/lagoon-remote/values.yaml | 5 +++++ 2 files changed, 19 insertions(+) create mode 100644 charts/lagoon-remote/templates/insights-remote.service.yaml diff --git a/charts/lagoon-remote/templates/insights-remote.service.yaml b/charts/lagoon-remote/templates/insights-remote.service.yaml new file mode 100644 index 00000000..5c16f266 --- /dev/null +++ b/charts/lagoon-remote/templates/insights-remote.service.yaml @@ -0,0 +1,14 @@ +apiVersion: v1 +kind: Service +metadata: + name: {{ include "lagoon-remote.insightsRemote.fullname" . }} + labels: {{ - include "lagoon-remote.insightsRemote.labels" . | nindent 4 }} +spec: + type: {{ lagoon-remote.insightsRemote.service.type }} + ports: + - port: {{ lagoon-remote.insightsRemote.service.port }} + targetPort: insights-ws + protocol: TCP + name: insights-ws + selector: + {{ - include "lagoon-remote.insightsRemote.selectorLabels" . | nindent 4 }} diff --git a/charts/lagoon-remote/values.yaml b/charts/lagoon-remote/values.yaml index db46930a..97a95271 100644 --- a/charts/lagoon-remote/values.yaml +++ b/charts/lagoon-remote/values.yaml @@ -278,6 +278,11 @@ insightsRemote: affinity: {} + service: + type: ClusterIP + port: 80 + + # the nats chart is a subchart which is configured for use by lagoon-remote nats: enabled: false From a8a24407a1e8f93bb8c75c23405d7cec22a90b90 Mon Sep 17 00:00:00 2001 From: Blaize M Kaye Date: Thu, 8 Jun 2023 13:14:12 +1200 Subject: [PATCH 03/21] Version bump --- charts/lagoon-remote/Chart.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/charts/lagoon-remote/Chart.yaml b/charts/lagoon-remote/Chart.yaml index ac8d2030..e77c45d2 100644 --- a/charts/lagoon-remote/Chart.yaml +++ b/charts/lagoon-remote/Chart.yaml @@ -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.77.0 +version: 0.78.0 dependencies: - name: lagoon-build-deploy @@ -45,4 +45,4 @@ dependencies: annotations: artifacthub.io/changes: | - kind: changed - description: update lagoon-build-deploy subchart to 0.22.0 + description: Changes permissions and adds service for insights-remote From 3d80fb276318dba94d9a89716720e12ef5ef35af Mon Sep 17 00:00:00 2001 From: Blaize M Kaye Date: Thu, 8 Jun 2023 13:17:03 +1200 Subject: [PATCH 04/21] Fixes lint errors --- charts/lagoon-remote/templates/insights-remote.service.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/charts/lagoon-remote/templates/insights-remote.service.yaml b/charts/lagoon-remote/templates/insights-remote.service.yaml index 5c16f266..36aae04d 100644 --- a/charts/lagoon-remote/templates/insights-remote.service.yaml +++ b/charts/lagoon-remote/templates/insights-remote.service.yaml @@ -2,7 +2,7 @@ apiVersion: v1 kind: Service metadata: name: {{ include "lagoon-remote.insightsRemote.fullname" . }} - labels: {{ - include "lagoon-remote.insightsRemote.labels" . | nindent 4 }} + labels: {{- include "lagoon-remote.insightsRemote.labels" . | nindent 4 }} spec: type: {{ lagoon-remote.insightsRemote.service.type }} ports: @@ -11,4 +11,4 @@ spec: protocol: TCP name: insights-ws selector: - {{ - include "lagoon-remote.insightsRemote.selectorLabels" . | nindent 4 }} + {{- include "lagoon-remote.insightsRemote.selectorLabels" . | nindent 4 }} From a26de5f4d79400d6c54646c7569b8e3b2f9934c2 Mon Sep 17 00:00:00 2001 From: Blaize M Kaye Date: Thu, 8 Jun 2023 13:32:14 +1200 Subject: [PATCH 05/21] escaping variables --- charts/lagoon-remote/templates/insights-remote.service.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/charts/lagoon-remote/templates/insights-remote.service.yaml b/charts/lagoon-remote/templates/insights-remote.service.yaml index 36aae04d..3c090fc3 100644 --- a/charts/lagoon-remote/templates/insights-remote.service.yaml +++ b/charts/lagoon-remote/templates/insights-remote.service.yaml @@ -4,9 +4,9 @@ metadata: name: {{ include "lagoon-remote.insightsRemote.fullname" . }} labels: {{- include "lagoon-remote.insightsRemote.labels" . | nindent 4 }} spec: - type: {{ lagoon-remote.insightsRemote.service.type }} + type: {{ "lagoon-remote.insightsRemote.service.type" }} ports: - - port: {{ lagoon-remote.insightsRemote.service.port }} + - port: {{ "lagoon-remote.insightsRemote.service.port" }} targetPort: insights-ws protocol: TCP name: insights-ws From f0c06da1b925be313baf227b330da39373f41976 Mon Sep 17 00:00:00 2001 From: Blaize M Kaye Date: Thu, 8 Jun 2023 13:37:38 +1200 Subject: [PATCH 06/21] Fixes port --- charts/lagoon-remote/templates/insights-remote.service.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charts/lagoon-remote/templates/insights-remote.service.yaml b/charts/lagoon-remote/templates/insights-remote.service.yaml index 3c090fc3..ddc70479 100644 --- a/charts/lagoon-remote/templates/insights-remote.service.yaml +++ b/charts/lagoon-remote/templates/insights-remote.service.yaml @@ -7,7 +7,7 @@ spec: type: {{ "lagoon-remote.insightsRemote.service.type" }} ports: - port: {{ "lagoon-remote.insightsRemote.service.port" }} - targetPort: insights-ws + targetPort: 8888 protocol: TCP name: insights-ws selector: From d34a0e5df53caf5cb505dfd9f09d0972d4e5d0e2 Mon Sep 17 00:00:00 2001 From: Blaize M Kaye Date: Thu, 8 Jun 2023 13:47:58 +1200 Subject: [PATCH 07/21] Gets port from values --- charts/lagoon-remote/templates/insights-remote.service.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charts/lagoon-remote/templates/insights-remote.service.yaml b/charts/lagoon-remote/templates/insights-remote.service.yaml index ddc70479..c6ce117d 100644 --- a/charts/lagoon-remote/templates/insights-remote.service.yaml +++ b/charts/lagoon-remote/templates/insights-remote.service.yaml @@ -6,7 +6,7 @@ metadata: spec: type: {{ "lagoon-remote.insightsRemote.service.type" }} ports: - - port: {{ "lagoon-remote.insightsRemote.service.port" }} + - port: {{ .Values.insightsRemote.service.port }} targetPort: 8888 protocol: TCP name: insights-ws From 7894ad6aa15003eef3ce9916dae24e7166169285 Mon Sep 17 00:00:00 2001 From: Blaize M Kaye Date: Thu, 8 Jun 2023 14:07:25 +1200 Subject: [PATCH 08/21] Fixes value include --- charts/lagoon-remote/templates/insights-remote.service.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charts/lagoon-remote/templates/insights-remote.service.yaml b/charts/lagoon-remote/templates/insights-remote.service.yaml index c6ce117d..693236ea 100644 --- a/charts/lagoon-remote/templates/insights-remote.service.yaml +++ b/charts/lagoon-remote/templates/insights-remote.service.yaml @@ -4,7 +4,7 @@ metadata: name: {{ include "lagoon-remote.insightsRemote.fullname" . }} labels: {{- include "lagoon-remote.insightsRemote.labels" . | nindent 4 }} spec: - type: {{ "lagoon-remote.insightsRemote.service.type" }} + type: {{ .Values.insightsRemote.service.type }} ports: - port: {{ .Values.insightsRemote.service.port }} targetPort: 8888 From 09144475247a4be468492ccaca9e75822a7b5166 Mon Sep 17 00:00:00 2001 From: Blaize M Kaye Date: Thu, 8 Jun 2023 15:40:41 +1200 Subject: [PATCH 09/21] Fixes indentation --- charts/lagoon-remote/templates/insights-remote.service.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/charts/lagoon-remote/templates/insights-remote.service.yaml b/charts/lagoon-remote/templates/insights-remote.service.yaml index 693236ea..01f105dd 100644 --- a/charts/lagoon-remote/templates/insights-remote.service.yaml +++ b/charts/lagoon-remote/templates/insights-remote.service.yaml @@ -2,7 +2,8 @@ apiVersion: v1 kind: Service metadata: name: {{ include "lagoon-remote.insightsRemote.fullname" . }} - labels: {{- include "lagoon-remote.insightsRemote.labels" . | nindent 4 }} + labels: + {{- include "lagoon-remote.insightsRemote.labels" . | nindent 4 }} spec: type: {{ .Values.insightsRemote.service.type }} ports: From 4d3f0f2fb4ef450ba7796ccdb3870c6fdba73dd5 Mon Sep 17 00:00:00 2001 From: Blaize M Kaye Date: Mon, 3 Jul 2023 10:50:54 +1200 Subject: [PATCH 10/21] Fixes thinko --- charts/lagoon-remote/Chart.yaml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/charts/lagoon-remote/Chart.yaml b/charts/lagoon-remote/Chart.yaml index 4f8737fc..b64a958a 100644 --- a/charts/lagoon-remote/Chart.yaml +++ b/charts/lagoon-remote/Chart.yaml @@ -45,8 +45,4 @@ dependencies: annotations: artifacthub.io/changes: | - kind: changed -<<<<<<< HEAD description: Changes permissions and adds service for insights-remote -======= - description: update lagoon-build-deploy subchart to 0.23.1 ->>>>>>> main From 7d8a4702095af0c8da13221512902645ab3fc901 Mon Sep 17 00:00:00 2001 From: Blaize M Kaye Date: Mon, 3 Jul 2023 10:52:59 +1200 Subject: [PATCH 11/21] bumps version --- charts/lagoon-remote/Chart.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charts/lagoon-remote/Chart.yaml b/charts/lagoon-remote/Chart.yaml index b64a958a..a61dafe4 100644 --- a/charts/lagoon-remote/Chart.yaml +++ b/charts/lagoon-remote/Chart.yaml @@ -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.78.0 +version: 0.78.1 dependencies: - name: lagoon-build-deploy From 495bf8df3d3cd3eab21e0449a05e1ec0ccb503bd Mon Sep 17 00:00:00 2001 From: Blaize M Kaye Date: Mon, 3 Jul 2023 11:17:42 +1200 Subject: [PATCH 12/21] bumps version --- charts/lagoon-remote/Chart.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charts/lagoon-remote/Chart.yaml b/charts/lagoon-remote/Chart.yaml index a61dafe4..e69ec6a2 100644 --- a/charts/lagoon-remote/Chart.yaml +++ b/charts/lagoon-remote/Chart.yaml @@ -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.78.1 +version: 0.78.2 dependencies: - name: lagoon-build-deploy From b3b57e1928bbad35963012eb79b5542c456684f5 Mon Sep 17 00:00:00 2001 From: Blaize M Kaye Date: Mon, 3 Jul 2023 13:40:31 +1200 Subject: [PATCH 13/21] Updates secret --- charts/lagoon-remote/Chart.yaml | 4 ++-- .../templates/insights-remote.deployment.yaml | 13 +++++++++---- .../templates/insights-remote.secrets.yaml | 11 ++++++++--- 3 files changed, 19 insertions(+), 9 deletions(-) diff --git a/charts/lagoon-remote/Chart.yaml b/charts/lagoon-remote/Chart.yaml index e69ec6a2..eb20a4d1 100644 --- a/charts/lagoon-remote/Chart.yaml +++ b/charts/lagoon-remote/Chart.yaml @@ -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.78.2 +version: 0.78.3 dependencies: - name: lagoon-build-deploy @@ -45,4 +45,4 @@ dependencies: annotations: artifacthub.io/changes: | - kind: changed - description: Changes permissions and adds service for insights-remote + description: Changes permissions, adds service, updates secret for insights-remote diff --git a/charts/lagoon-remote/templates/insights-remote.deployment.yaml b/charts/lagoon-remote/templates/insights-remote.deployment.yaml index 81eff177..2fb54d1f 100644 --- a/charts/lagoon-remote/templates/insights-remote.deployment.yaml +++ b/charts/lagoon-remote/templates/insights-remote.deployment.yaml @@ -47,13 +47,18 @@ spec: - name: RABBITMQ_PASSWORD valueFrom: secretKeyRef: - name: {{ include "lagoon-remote.insightsRemote.fullname" . }}-rabbitmqsecret - key: password + name: {{ include "lagoon-remote.insightsRemote.fullname" . }} + key: RABBITMQ_PASSWORD - name: RABBITMQ_USERNAME valueFrom: secretKeyRef: - name: {{ include "lagoon-remote.insightsRemote.fullname" . }}-rabbitmqsecret - key: username + name: {{ include "lagoon-remote.insightsRemote.fullname" . }} + key: RABBITMQ_USERNAME + - name: INSIGHTS_TOKEN_SECRET + valueFrom: + secretKeyRef: + name: {{ include "lagoon-remote.insightsRemote.fullname" . }} + key: INSIGHTS_TOKEN_SECRET resources: {{- toYaml .Values.insightsRemote.resources | nindent 12 }} ports: diff --git a/charts/lagoon-remote/templates/insights-remote.secrets.yaml b/charts/lagoon-remote/templates/insights-remote.secrets.yaml index c018d9ce..5d5c3e17 100644 --- a/charts/lagoon-remote/templates/insights-remote.secrets.yaml +++ b/charts/lagoon-remote/templates/insights-remote.secrets.yaml @@ -3,12 +3,17 @@ {{- $rabbitMQUsername := coalesce .Values.global.rabbitMQUsername .Values.insightsRemote.rabbitMQUsername }} {{- $rabbitMQPassword := coalesce .Values.global.rabbitMQPassword .Values.insightsRemote.rabbitMQPassword }} +{{- $data := index (lookup "v1" "Secret" .Release.Namespace (include "lagoon-remote.insightsRemote.fullname" .)) "data" | default dict }} +{{- $insightsTokenSecret := coalesce .Values.insightsRemote.insightsTokenSecret (ternary (randAlpha 32) (index $data "INSIGHTS_TOKEN_SECRET" | default "" | b64dec) (index $data "INSIGHTS_TOKEN_SECRET" | empty)) }} + apiVersion: v1 kind: Secret metadata: - name: {{ include "lagoon-remote.insightsRemote.fullname" . }}-rabbitmqsecret + name: {{ include "lagoon-remote.insightsRemote.fullname" . }} type: kubernetes.io/basic-auth stringData: - username: {{ required "A valid rabbitMQUsername required!" $rabbitMQUsername | quote }} - password: {{ required "A valid rabbitMQPassword required!" $rabbitMQPassword | quote }} + RABBITMQ_USERNAME: {{ required "A valid rabbitMQUsername required!" $rabbitMQUsername | quote }} + RABBITMQ_PASSWORD: {{ required "A valid rabbitMQPassword required!" $rabbitMQPassword | quote }} + INSIGHTS_TOKEN_SECRET: { $insightsTokenSecret | quote } + {{- end }} \ No newline at end of file From 9c13be50d2e99b858daf07612ade09d78cfcc3fb Mon Sep 17 00:00:00 2001 From: Blaize M Kaye Date: Mon, 3 Jul 2023 13:44:50 +1200 Subject: [PATCH 14/21] Fixes syntax issues --- charts/lagoon-remote/templates/insights-remote.secrets.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charts/lagoon-remote/templates/insights-remote.secrets.yaml b/charts/lagoon-remote/templates/insights-remote.secrets.yaml index 5d5c3e17..51a83ef0 100644 --- a/charts/lagoon-remote/templates/insights-remote.secrets.yaml +++ b/charts/lagoon-remote/templates/insights-remote.secrets.yaml @@ -14,6 +14,6 @@ type: kubernetes.io/basic-auth stringData: RABBITMQ_USERNAME: {{ required "A valid rabbitMQUsername required!" $rabbitMQUsername | quote }} RABBITMQ_PASSWORD: {{ required "A valid rabbitMQPassword required!" $rabbitMQPassword | quote }} - INSIGHTS_TOKEN_SECRET: { $insightsTokenSecret | quote } + INSIGHTS_TOKEN_SECRET: {{ $insightsTokenSecret | quote }} {{- end }} \ No newline at end of file From 50a617e4366ddb702a6ffbc9ef9f6dc950bd7bf2 Mon Sep 17 00:00:00 2001 From: Blaize M Kaye Date: Mon, 3 Jul 2023 13:54:08 +1200 Subject: [PATCH 15/21] Updates values for completion --- charts/lagoon-remote/values.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/charts/lagoon-remote/values.yaml b/charts/lagoon-remote/values.yaml index fd08f60f..9d73c225 100644 --- a/charts/lagoon-remote/values.yaml +++ b/charts/lagoon-remote/values.yaml @@ -208,6 +208,10 @@ insightsRemote: replicaCount: 1 + # This is the secret used to sign JWT's injected into environments + # This shouldn't need to be changed in most circumstances - here for completion + #insightsTokenSecret: "" + image: repository: uselagoon/insights-remote pullPolicy: Always From cdef906503cf782e2956a4569a4dd356d81b144c Mon Sep 17 00:00:00 2001 From: Blaize M Kaye Date: Mon, 3 Jul 2023 14:11:45 +1200 Subject: [PATCH 16/21] Adds missing space --- charts/lagoon-remote/values.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charts/lagoon-remote/values.yaml b/charts/lagoon-remote/values.yaml index 9d73c225..3a3ad702 100644 --- a/charts/lagoon-remote/values.yaml +++ b/charts/lagoon-remote/values.yaml @@ -210,7 +210,7 @@ insightsRemote: # This is the secret used to sign JWT's injected into environments # This shouldn't need to be changed in most circumstances - here for completion - #insightsTokenSecret: "" + # insightsTokenSecret: "" image: repository: uselagoon/insights-remote From 6dbbd665baa3caaf4503e399697a394c2f6c6ea2 Mon Sep 17 00:00:00 2001 From: Blaize M Kaye Date: Tue, 4 Jul 2023 09:29:12 +1200 Subject: [PATCH 17/21] Changes secret type --- charts/lagoon-remote/templates/insights-remote.secrets.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charts/lagoon-remote/templates/insights-remote.secrets.yaml b/charts/lagoon-remote/templates/insights-remote.secrets.yaml index 51a83ef0..e15fd992 100644 --- a/charts/lagoon-remote/templates/insights-remote.secrets.yaml +++ b/charts/lagoon-remote/templates/insights-remote.secrets.yaml @@ -10,7 +10,7 @@ apiVersion: v1 kind: Secret metadata: name: {{ include "lagoon-remote.insightsRemote.fullname" . }} -type: kubernetes.io/basic-auth +type: Opaque stringData: RABBITMQ_USERNAME: {{ required "A valid rabbitMQUsername required!" $rabbitMQUsername | quote }} RABBITMQ_PASSWORD: {{ required "A valid rabbitMQPassword required!" $rabbitMQPassword | quote }} From d6837d123bb30661fe61b4eab355a12c24a3852a Mon Sep 17 00:00:00 2001 From: Blaize M Kaye Date: Wed, 19 Jul 2023 09:00:42 +1200 Subject: [PATCH 18/21] Updates the version of insights remotes image --- charts/lagoon-remote/values.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charts/lagoon-remote/values.yaml b/charts/lagoon-remote/values.yaml index 13113291..4cf15e84 100644 --- a/charts/lagoon-remote/values.yaml +++ b/charts/lagoon-remote/values.yaml @@ -216,7 +216,7 @@ insightsRemote: repository: uselagoon/insights-remote pullPolicy: Always # Overrides the image tag whose default is the chart appVersion. - tag: "v0.0.4" + tag: "v0.0.5" imagePullSecrets: [] nameOverride: "" From 6fa2a5e39542d72f88b8e563f0615fc99b6c9e59 Mon Sep 17 00:00:00 2001 From: Blaize M Kaye Date: Thu, 20 Jul 2023 08:59:12 +1200 Subject: [PATCH 19/21] Updates version of insights-remote image --- charts/lagoon-remote/values.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charts/lagoon-remote/values.yaml b/charts/lagoon-remote/values.yaml index 4cf15e84..2055005c 100644 --- a/charts/lagoon-remote/values.yaml +++ b/charts/lagoon-remote/values.yaml @@ -216,7 +216,7 @@ insightsRemote: repository: uselagoon/insights-remote pullPolicy: Always # Overrides the image tag whose default is the chart appVersion. - tag: "v0.0.5" + tag: "v0.0.6" imagePullSecrets: [] nameOverride: "" From b3d593c0b8287f6eb32c4e47290f6ebd591f8259 Mon Sep 17 00:00:00 2001 From: Toby Bellwood Date: Mon, 6 Nov 2023 08:11:06 +1100 Subject: [PATCH 20/21] set correct chart version --- charts/lagoon-remote/Chart.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charts/lagoon-remote/Chart.yaml b/charts/lagoon-remote/Chart.yaml index ac80f852..691afde9 100644 --- a/charts/lagoon-remote/Chart.yaml +++ b/charts/lagoon-remote/Chart.yaml @@ -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.85.0 +version: 0.86.0 dependencies: - name: lagoon-build-deploy From 97e6000d8dbfd2d2bbc778d8901d23b63d6aa713 Mon Sep 17 00:00:00 2001 From: Blaize M Kaye Date: Mon, 6 Nov 2023 12:27:51 +1300 Subject: [PATCH 21/21] Bumps insights remote version --- charts/lagoon-remote/values.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charts/lagoon-remote/values.yaml b/charts/lagoon-remote/values.yaml index 2055005c..ca2b2183 100644 --- a/charts/lagoon-remote/values.yaml +++ b/charts/lagoon-remote/values.yaml @@ -216,7 +216,7 @@ insightsRemote: repository: uselagoon/insights-remote pullPolicy: Always # Overrides the image tag whose default is the chart appVersion. - tag: "v0.0.6" + tag: "v0.0.7" imagePullSecrets: [] nameOverride: ""