diff --git a/Expedience.Api/Dockerfile b/Expedience.Api/Dockerfile index e4496dc..4be5aeb 100644 --- a/Expedience.Api/Dockerfile +++ b/Expedience.Api/Dockerfile @@ -34,7 +34,6 @@ COPY --from=build /app/publish . ENV ASPNETCORE_ENVIRONMENT=Production # Expose the port the application will run on -EXPOSE 80 EXPOSE 443 # Set the entry point for the container diff --git a/Expedience.Api/ingress.yaml b/Expedience.Api/ingress.yaml index 78da131..e4c9f3c 100644 --- a/Expedience.Api/ingress.yaml +++ b/Expedience.Api/ingress.yaml @@ -21,4 +21,4 @@ spec: service: name: expedience-api-service port: - number: 80 + number: 443 diff --git a/Expedience.Api/service.yaml b/Expedience.Api/service.yaml index a3b8a97..05c3269 100644 --- a/Expedience.Api/service.yaml +++ b/Expedience.Api/service.yaml @@ -8,6 +8,6 @@ spec: app: expedience-api ports: - protocol: TCP - port: 80 - targetPort: 80 + port: 443 + targetPort: 443 type: ClusterIP