diff --git a/charts/tdarr/Chart.yaml b/charts/tdarr/Chart.yaml index ba2c8c0..9f87ce0 100644 --- a/charts/tdarr/Chart.yaml +++ b/charts/tdarr/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v2 name: tdarr -version: 0.0.2 +version: 0.0.3 description: Chart for Tdarr V2 keywords: - video diff --git a/charts/tdarr/templates/deployment.yaml b/charts/tdarr/templates/deployment.yaml index a29dec7..b91194d 100644 --- a/charts/tdarr/templates/deployment.yaml +++ b/charts/tdarr/templates/deployment.yaml @@ -132,10 +132,6 @@ spec: - name: tdarr-node image: "{{ .Values.node.image.repository }}:{{ .Values.node.image.tag }}" imagePullPolicy: {{ .Values.node.image.pullPolicy }} - ports: - - name: api - containerPort: {{ .Values.node.service.api.port }} - protocol: TCP env: {{- with (concat .Values.global.env .Values.node.env) }} {{- toYaml . | nindent 12 }} @@ -149,7 +145,7 @@ spec: - name: serverIP value: tdarr-server-api - name: serverPort - value: "{{ .Values.node.service.api.port }}" + value: "{{ .Values.server.service.api.port }}" volumeMounts: - name: tdarr-node-cache mountPath: /tcache @@ -157,27 +153,6 @@ spec: mountPath: {{ .Values.global.persistence.media.mountPath }} resources: {{- toYaml .Values.node.resources | nindent 12 }} - livenessProbe: - tcpSocket: - port: {{ .Values.node.service.api.port }} - initialDelaySeconds: 0 - failureThreshold: 3 - timeoutSeconds: 1 - periodSeconds: 10 - readinessProbe: - tcpSocket: - port: {{ .Values.node.service.api.port }} - initialDelaySeconds: 0 - failureThreshold: 3 - timeoutSeconds: 1 - periodSeconds: 10 - startupProbe: - tcpSocket: - port: {{ .Values.node.service.api.port }} - initialDelaySeconds: 0 - failureThreshold: 30 - timeoutSeconds: 1 - periodSeconds: 5 volumes: - name: tdarr-node-cache emptyDir: diff --git a/charts/tdarr/values.yaml b/charts/tdarr/values.yaml index 13643bd..2050f58 100644 --- a/charts/tdarr/values.yaml +++ b/charts/tdarr/values.yaml @@ -69,9 +69,6 @@ node: limits: cpu: 1000m memory: 2Gi - service: - api: - port: 8266 persistence: cache: size: 5Gi