Compare commits

...

2 Commits

Author SHA1 Message Date
617505ee99 fix length of app port 2024-04-13 23:37:58 -06:00
34a21702ab fix http service value 2024-04-13 23:32:48 -06:00
3 changed files with 5 additions and 5 deletions

View File

@@ -1,6 +1,6 @@
apiVersion: v2 apiVersion: v2
name: taiga name: taiga
version: 0.1.8 version: 0.1.10
description: Chart for Taiga description: Chart for Taiga
keywords: keywords:
- kanban - kanban

View File

@@ -55,9 +55,9 @@ spec:
{{ toYaml .Values.events.resources | nindent 12 }} {{ toYaml .Values.events.resources | nindent 12 }}
ports: ports:
- name: taiga-events - name: taiga-events
containerPort: {{ .Values.events.http.service.port }} containerPort: {{ .Values.events.service.http.port }}
protocol: TCP protocol: TCP
- name: taiga-events-app - name: taiga-app
containerPort: {{ .Values.events.service.app.port }} containerPort: {{ .Values.events.service.app.port }}
protocol: TCP protocol: TCP
env: env:

View File

@@ -60,9 +60,9 @@ spec:
protocol: TCP protocol: TCP
name: taiga-events name: taiga-events
- port: {{ .Values.events.service.app.port }} - port: {{ .Values.events.service.app.port }}
targetPort: taiga-events-app targetPort: taiga-app
protocol: TCP protocol: TCP
name: taiga-events-app name: taiga-app
selector: selector:
{{- include "taiga.events.matchLabels" . | nindent 4 }} {{- include "taiga.events.matchLabels" . | nindent 4 }}
{{- with .Values.events.service.extraSelectorLabels }} {{- with .Values.events.service.extraSelectorLabels }}