diff --git a/deploy/cloud-generic/deployment.yaml b/deploy/cloud-generic/deployment.yaml index ec16ea316..f9847706a 100644 --- a/deploy/cloud-generic/deployment.yaml +++ b/deploy/cloud-generic/deployment.yaml @@ -44,8 +44,10 @@ spec: ports: - name: http containerPort: 80 + protocol: TCP - name: https containerPort: 443 + protocol: TCP livenessProbe: failureThreshold: 3 httpGet: diff --git a/deploy/cloud-generic/service.yaml b/deploy/cloud-generic/service.yaml index 3a3a3e2a8..f4dc4f1a2 100644 --- a/deploy/cloud-generic/service.yaml +++ b/deploy/cloud-generic/service.yaml @@ -8,7 +8,9 @@ spec: ports: - name: http port: 80 + protocol: TCP targetPort: http - name: https port: 443 + protocol: TCP targetPort: https diff --git a/deploy/static/mandatory.yaml b/deploy/static/mandatory.yaml index 8cfbd0f49..891b6abf8 100644 --- a/deploy/static/mandatory.yaml +++ b/deploy/static/mandatory.yaml @@ -246,8 +246,10 @@ spec: ports: - name: http containerPort: 80 + protocol: TCP - name: https containerPort: 443 + protocol: TCP livenessProbe: failureThreshold: 3 httpGet: diff --git a/deploy/static/provider/aws/service-l4.yaml b/deploy/static/provider/aws/service-l4.yaml index 893b5a03d..ab70da90f 100644 --- a/deploy/static/provider/aws/service-l4.yaml +++ b/deploy/static/provider/aws/service-l4.yaml @@ -21,9 +21,11 @@ spec: ports: - name: http port: 80 + protocol: TCP targetPort: http - name: https port: 443 + protocol: TCP targetPort: https --- diff --git a/deploy/static/provider/aws/service-l7.yaml b/deploy/static/provider/aws/service-l7.yaml index 6616108a2..c6bc4c09e 100644 --- a/deploy/static/provider/aws/service-l7.yaml +++ b/deploy/static/provider/aws/service-l7.yaml @@ -25,9 +25,11 @@ spec: ports: - name: http port: 80 + protocol: TCP targetPort: http - name: https port: 443 + protocol: TCP targetPort: http --- diff --git a/deploy/static/provider/aws/service-nlb.yaml b/deploy/static/provider/aws/service-nlb.yaml index 244460b6d..02a688eb9 100644 --- a/deploy/static/provider/aws/service-nlb.yaml +++ b/deploy/static/provider/aws/service-nlb.yaml @@ -19,9 +19,11 @@ spec: ports: - name: http port: 80 + protocol: TCP targetPort: http - name: https port: 443 + protocol: TCP targetPort: https --- diff --git a/deploy/static/provider/cloud-generic.yaml b/deploy/static/provider/cloud-generic.yaml index 8bbac569b..cbd0732f4 100644 --- a/deploy/static/provider/cloud-generic.yaml +++ b/deploy/static/provider/cloud-generic.yaml @@ -15,9 +15,11 @@ spec: ports: - name: http port: 80 + protocol: TCP targetPort: http - name: https port: 443 + protocol: TCP targetPort: https ---