Commit febd5984 authored by Jorge Moratinos's avatar Jorge Moratinos
Browse files

Minor fixes

parent 8e2e6fdc
Loading
Loading
Loading
Loading
Loading
+5 −10
Original line number Diff line number Diff line
@@ -37,7 +37,7 @@ spec:
          image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
          imagePullPolicy: {{ .Values.image.pullPolicy }}
          ports:
            - name: mongo
            - name: http
              containerPort: {{ .Values.service.port }}
              protocol: TCP
          env:
@@ -45,11 +45,6 @@ spec:
            value: {{ quote .Values.env.mongoInitdbRootPassword }}
          - name: MONGO_INITDB_ROOT_USERNAME
            value: {{ quote .Values.env.mongoInitdbRootUsername }}
          command:
            - mongod
          args:
            - --bind_ip_all
            - --auth
          livenessProbe:
            {{- toYaml .Values.livenessProbe | nindent 12 }}
          readinessProbe:
+0 −1
Original line number Diff line number Diff line
@@ -83,7 +83,6 @@ livenessProbe:
readinessProbe:
  tcpSocket:
    port: 27017
  initialDelaySeconds: 20
  periodSeconds: 5

autoscaling:
+5 −10
Original line number Diff line number Diff line
@@ -37,7 +37,7 @@ spec:
          image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
          imagePullPolicy: {{ .Values.image.pullPolicy }}
          ports:
            - name: mongo
            - name: http
              containerPort: {{ .Values.service.port }}
              protocol: TCP
          env:
@@ -45,11 +45,6 @@ spec:
            value: {{ quote .Values.env.mongoInitdbRootPassword }}
          - name: MONGO_INITDB_ROOT_USERNAME
            value: {{ quote .Values.env.mongoInitdbRootUsername }}
          command:
            - mongod
          args:
            - --bind_ip_all
            - --auth
          livenessProbe:
            {{- toYaml .Values.livenessProbe | nindent 12 }}
          readinessProbe:
+0 −1
Original line number Diff line number Diff line
@@ -90,7 +90,6 @@ livenessProbe:
readinessProbe:
  tcpSocket:
    port: 27017
  initialDelaySeconds: 20
  periodSeconds: 5

autoscaling:
+1 −1
Original line number Diff line number Diff line
@@ -41,7 +41,7 @@ spec:
              protocol: TCP
          env:
          - name: ME_CONFIG_MONGODB_ENABLE_ADMIN
            value: {{ .Values.env.meConfigMongodbEnableAdmin }}
            value: {{ quote .Values.env.meConfigMongodbEnableAdmin }}
          - name: ME_CONFIG_BASICAUTH_USERNAME
            value: {{ quote .Values.env.meConfigBasicauthUsername }}
          - name: ME_CONFIG_BASICAUTH_PASSWORD
Loading