From 8c2875c82da845a61767a907c41930c564842aa2 Mon Sep 17 00:00:00 2001 From: Rajesh Rajendran Date: Sun, 19 Dec 2021 11:07:35 +0530 Subject: [PATCH] chore(helm): pinning http port for http service Signed-off-by: Rajesh Rajendran --- .../openreplay/charts/alerts/templates/deployment.yaml | 8 -------- .../openreplay/charts/assets/templates/deployment.yaml | 8 -------- .../openreplay/charts/chalice/templates/deployment.yaml | 8 -------- .../helm/openreplay/charts/db/templates/deployment.yaml | 8 -------- .../openreplay/charts/ender/templates/deployment.yaml | 8 -------- .../helm/openreplay/charts/http/templates/deployment.yaml | 8 -------- scripts/helm/helm/openreplay/charts/http/values.yaml | 1 + .../charts/integrations/templates/deployment.yaml | 8 -------- .../helm/openreplay/charts/sink/templates/deployment.yaml | 8 -------- .../openreplay/charts/storage/templates/deployment.yaml | 8 -------- .../openreplay/charts/utilities/templates/deployment.yaml | 8 -------- 11 files changed, 1 insertion(+), 80 deletions(-) diff --git a/scripts/helm/helm/openreplay/charts/alerts/templates/deployment.yaml b/scripts/helm/helm/openreplay/charts/alerts/templates/deployment.yaml index 5d7d31d50..3ae77bb0b 100644 --- a/scripts/helm/helm/openreplay/charts/alerts/templates/deployment.yaml +++ b/scripts/helm/helm/openreplay/charts/alerts/templates/deployment.yaml @@ -44,14 +44,6 @@ spec: - name: http containerPort: {{ .Values.service.port }} protocol: TCP - livenessProbe: - httpGet: - path: / - port: http - readinessProbe: - httpGet: - path: / - port: http resources: {{- toYaml .Values.resources | nindent 12 }} {{- with .Values.nodeSelector }} diff --git a/scripts/helm/helm/openreplay/charts/assets/templates/deployment.yaml b/scripts/helm/helm/openreplay/charts/assets/templates/deployment.yaml index db6bf6a08..e60be1cab 100644 --- a/scripts/helm/helm/openreplay/charts/assets/templates/deployment.yaml +++ b/scripts/helm/helm/openreplay/charts/assets/templates/deployment.yaml @@ -64,14 +64,6 @@ spec: - name: http containerPort: {{ .Values.service.port }} protocol: TCP - livenessProbe: - httpGet: - path: / - port: http - readinessProbe: - httpGet: - path: / - port: http resources: {{- toYaml .Values.resources | nindent 12 }} {{- with .Values.nodeSelector }} diff --git a/scripts/helm/helm/openreplay/charts/chalice/templates/deployment.yaml b/scripts/helm/helm/openreplay/charts/chalice/templates/deployment.yaml index a1b9a70bd..b9a32c5d8 100644 --- a/scripts/helm/helm/openreplay/charts/chalice/templates/deployment.yaml +++ b/scripts/helm/helm/openreplay/charts/chalice/templates/deployment.yaml @@ -72,14 +72,6 @@ spec: - name: http containerPort: {{ .Values.service.port }} protocol: TCP - livenessProbe: - httpGet: - path: / - port: http - readinessProbe: - httpGet: - path: / - port: http resources: {{- toYaml .Values.resources | nindent 12 }} {{- with .Values.nodeSelector }} diff --git a/scripts/helm/helm/openreplay/charts/db/templates/deployment.yaml b/scripts/helm/helm/openreplay/charts/db/templates/deployment.yaml index 1145b8a65..c1dd54228 100644 --- a/scripts/helm/helm/openreplay/charts/db/templates/deployment.yaml +++ b/scripts/helm/helm/openreplay/charts/db/templates/deployment.yaml @@ -52,14 +52,6 @@ spec: - name: http containerPort: {{ .Values.service.port }} protocol: TCP - livenessProbe: - httpGet: - path: / - port: http - readinessProbe: - httpGet: - path: / - port: http resources: {{- toYaml .Values.resources | nindent 12 }} {{- with .Values.nodeSelector }} diff --git a/scripts/helm/helm/openreplay/charts/ender/templates/deployment.yaml b/scripts/helm/helm/openreplay/charts/ender/templates/deployment.yaml index e5590817d..19511fd0b 100644 --- a/scripts/helm/helm/openreplay/charts/ender/templates/deployment.yaml +++ b/scripts/helm/helm/openreplay/charts/ender/templates/deployment.yaml @@ -50,14 +50,6 @@ spec: - name: http containerPort: {{ .Values.service.port }} protocol: TCP - livenessProbe: - httpGet: - path: / - port: http - readinessProbe: - httpGet: - path: / - port: http resources: {{- toYaml .Values.resources | nindent 12 }} {{- with .Values.nodeSelector }} diff --git a/scripts/helm/helm/openreplay/charts/http/templates/deployment.yaml b/scripts/helm/helm/openreplay/charts/http/templates/deployment.yaml index 2df9d7189..fae96d715 100644 --- a/scripts/helm/helm/openreplay/charts/http/templates/deployment.yaml +++ b/scripts/helm/helm/openreplay/charts/http/templates/deployment.yaml @@ -60,14 +60,6 @@ spec: - name: http containerPort: {{ .Values.service.port }} protocol: TCP - livenessProbe: - httpGet: - path: / - port: http - readinessProbe: - httpGet: - path: / - port: http resources: {{- toYaml .Values.resources | nindent 12 }} {{- with .Values.nodeSelector }} diff --git a/scripts/helm/helm/openreplay/charts/http/values.yaml b/scripts/helm/helm/openreplay/charts/http/values.yaml index e0856949e..af35b01b7 100644 --- a/scripts/helm/helm/openreplay/charts/http/values.yaml +++ b/scripts/helm/helm/openreplay/charts/http/values.yaml @@ -79,6 +79,7 @@ env: TOKEN_SECRET: secret_token_string # TODO: generate on buld S3_BUCKET_IOS_IMAGES: sessions-mobile-assets CACHE_ASSETS: true + HTTP_PORT: 80 nodeSelector: {} diff --git a/scripts/helm/helm/openreplay/charts/integrations/templates/deployment.yaml b/scripts/helm/helm/openreplay/charts/integrations/templates/deployment.yaml index f521f8001..9cb1aa245 100644 --- a/scripts/helm/helm/openreplay/charts/integrations/templates/deployment.yaml +++ b/scripts/helm/helm/openreplay/charts/integrations/templates/deployment.yaml @@ -52,14 +52,6 @@ spec: - name: http containerPort: {{ .Values.service.port }} protocol: TCP - livenessProbe: - httpGet: - path: / - port: http - readinessProbe: - httpGet: - path: / - port: http resources: {{- toYaml .Values.resources | nindent 12 }} {{- with .Values.nodeSelector }} diff --git a/scripts/helm/helm/openreplay/charts/sink/templates/deployment.yaml b/scripts/helm/helm/openreplay/charts/sink/templates/deployment.yaml index 16089ab53..da4bdda94 100644 --- a/scripts/helm/helm/openreplay/charts/sink/templates/deployment.yaml +++ b/scripts/helm/helm/openreplay/charts/sink/templates/deployment.yaml @@ -50,14 +50,6 @@ spec: - name: http containerPort: {{ .Values.service.port }} protocol: TCP - livenessProbe: - httpGet: - path: / - port: http - readinessProbe: - httpGet: - path: / - port: http resources: {{- toYaml .Values.resources | nindent 12 }} volumeMounts: diff --git a/scripts/helm/helm/openreplay/charts/storage/templates/deployment.yaml b/scripts/helm/helm/openreplay/charts/storage/templates/deployment.yaml index 87063678a..f32ca8bfd 100644 --- a/scripts/helm/helm/openreplay/charts/storage/templates/deployment.yaml +++ b/scripts/helm/helm/openreplay/charts/storage/templates/deployment.yaml @@ -66,14 +66,6 @@ spec: - name: http containerPort: {{ .Values.service.port }} protocol: TCP - livenessProbe: - httpGet: - path: / - port: http - readinessProbe: - httpGet: - path: / - port: http resources: {{- toYaml .Values.resources | nindent 12 }} volumeMounts: diff --git a/scripts/helm/helm/openreplay/charts/utilities/templates/deployment.yaml b/scripts/helm/helm/openreplay/charts/utilities/templates/deployment.yaml index 73ab3729e..1200206f8 100644 --- a/scripts/helm/helm/openreplay/charts/utilities/templates/deployment.yaml +++ b/scripts/helm/helm/openreplay/charts/utilities/templates/deployment.yaml @@ -54,14 +54,6 @@ spec: - name: http containerPort: {{ .Values.service.port }} protocol: TCP - livenessProbe: - httpGet: - path: / - port: http - readinessProbe: - httpGet: - path: / - port: http resources: {{- toYaml .Values.resources | nindent 12 }} {{- with .Values.nodeSelector }}