From 958db309db4b1a82f11fa5435d9ebf78c872b33c Mon Sep 17 00:00:00 2001 From: omribarouch Date: Thu, 26 Sep 2024 14:16:53 +0300 Subject: [PATCH] removed self certificate dedicated command (moved to the application's Dockerfile) --- charts/port-agent/Chart.yaml | 4 ++-- charts/port-agent/templates/deployment.yaml | 3 --- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/charts/port-agent/Chart.yaml b/charts/port-agent/Chart.yaml index b6d9f99..a1b0913 100644 --- a/charts/port-agent/Chart.yaml +++ b/charts/port-agent/Chart.yaml @@ -2,8 +2,8 @@ apiVersion: v2 name: port-agent description: A Helm chart for Port Agent type: application -version: 0.8.3 -appVersion: "v0.7.6" +version: 0.8.4 +appVersion: "v0.7.7" home: https://getport.io/ sources: - https://github.com/port-labs/port-agent diff --git a/charts/port-agent/templates/deployment.yaml b/charts/port-agent/templates/deployment.yaml index c5bb77b..513fc2c 100644 --- a/charts/port-agent/templates/deployment.yaml +++ b/charts/port-agent/templates/deployment.yaml @@ -35,9 +35,6 @@ spec: - name: {{ .Chart.Name }} image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}" imagePullPolicy: {{ .Values.image.pullPolicy }} - {{- if .Values.selfSignedCertificate.enabled }} - command: [ "sh", "-c", "update-ca-certificates && python3 main.py" ] - {{- end }} securityContext: {{- if .Values.containerSecurityContext }} {{- toYaml .Values.containerSecurityContext | nindent 14 }}