Browse Source

fix: remove not statement

pull/122/head
Bruno Bernard 7 months ago
parent
commit
bce5afaeb5
  1. 2
      charts/textbee/Chart.yaml
  2. 4
      charts/textbee/templates/deployment.yaml

2
charts/textbee/Chart.yaml

@ -3,6 +3,6 @@ name: textbee
description: A Helm chart to deploy TextBee.
type: application
version: 0.1.0
version: 0.1.1
appVersion: "v2.6.2"

4
charts/textbee/templates/deployment.yaml

@ -6,7 +6,7 @@ metadata:
labels:
{{- include "textbee.labels" . | nindent 4 }}
spec:
{{- if not .Values.api.autoscaling.enabled }}
{{- if .Values.api.autoscaling.enabled }}
replicas: {{ .Values.api.replicaCount }}
{{- end }}
selector:
@ -97,7 +97,7 @@ spec:
{{- end }}
---
{{- if not .Values.web.enabled -}}
{{- if .Values.web.enabled -}}
apiVersion: apps/v1
kind: Deployment
metadata:

Loading…
Cancel
Save