diff --git a/charts/durpapi/templates/deployment.yaml b/charts/durpapi/templates/deployment.yaml index e50516b..11da33c 100644 --- a/charts/durpapi/templates/deployment.yaml +++ b/charts/durpapi/templates/deployment.yaml @@ -21,7 +21,7 @@ spec: imagePullPolicy: {{ .Values.deployment.imagePullPolicy }} ports: - name: http - containerPort: http + containerPort: 80 envFrom: - secretRef: name: {{ .Values.deployment.secretfile }} \ No newline at end of file diff --git a/charts/durpapi/templates/ingress.yaml b/charts/durpapi/templates/ingress.yaml index b6c7ade..353f547 100644 --- a/charts/durpapi/templates/ingress.yaml +++ b/charts/durpapi/templates/ingress.yaml @@ -16,7 +16,7 @@ spec: service: name: durpapi port: - number: http + number: 80 tls: - hosts: - {{ .Values.ingress.host }} diff --git a/charts/durpapi/templates/service.yaml b/charts/durpapi/templates/service.yaml index d41b9b7..69d4780 100644 --- a/charts/durpapi/templates/service.yaml +++ b/charts/durpapi/templates/service.yaml @@ -6,7 +6,7 @@ spec: ports: - name: http port: {{ .Values.service.port }} - targetPort: http + targetPort: 80 protocol: TCP selector: app: durpapi \ No newline at end of file