Commit 2ff16e0f authored by Yann Garcia's avatar Yann Garcia
Browse files

Bug fixed in meep-sss

parent 21500ba6
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
apiVersion: v1
appVersion: '1.0.0'
description: MEEP Sensor-Sharing Service Information Service Helm chart for Kubernetes
appVersion: "1.0.0"
description: MEEP Device Application Interface Service Helm chart for Kubernetes
name: meep-sss
version: 1.0.0
+1 −0
Original line number Diff line number Diff line
@@ -10,3 +10,4 @@ subjects:
- kind: ServiceAccount
  name: {{ template "meep-sss.fullname" . }}
  namespace: {{ .Release.Namespace }}
  
 No newline at end of file
+1 −1
Original line number Diff line number Diff line
@@ -18,7 +18,7 @@ kind: StorageClass
apiVersion: storage.k8s.io/v1
metadata:
  name: meep-sss-codecov-sc
proiotioner: kubernetes.io/no-proiotioner
provisioner: kubernetes.io/no-provisioner
volumeBindingMode: WaitForFirstConsumer
---
kind: PersistentVolumeClaim
+4 −2
Original line number Diff line number Diff line
@@ -22,8 +22,8 @@ spec:
        meepOrigin: {{ .Values.meepOrigin }}
    spec:
      serviceAccountName: {{ .Values.serviceAccount }}
      {{- if .Values.codecov.enabled}}
      volumes:
      {{- if .Values.codecov.enabled}}
        - name: codecov-storage
          persistentVolumeClaim:
            claimName: meep-sss-codecov-pvc
@@ -35,13 +35,15 @@ spec:
          ports:
            - containerPort: {{ .Values.deployment.port }}
              protocol: {{ .Values.deployment.protocol }}
            - containerPort: 33122
              protocol: TCP
          env:
            {{- range $key, $value := .Values.image.env }}
            - name: {{ $key }}
              value: {{ $value | quote }}
            {{- end }}
          {{- if .Values.codecov.enabled}}
          volumeMounts:
          {{- if .Values.codecov.enabled}}
          - name: codecov-storage
            mountPath: /codecov
          {{- end}}
+1 −1
Original line number Diff line number Diff line
@@ -23,7 +23,7 @@ spec:
    - http:
        paths:
          {{- range $path := .paths }}
          - path: {{ $path }}
          - path: {{ $path.path }}
            pathType: ImplementationSpecific
            backend:
              service:
Loading