github.com/replicatedcom/ship@v0.50.0/integration/init/multiple-kustomize-bases/expected/base/service-l4.yaml (about)

     1  kind: Service
     2  apiVersion: v1
     3  metadata:
     4    name: ingress-nginx
     5    namespace: ingress-nginx
     6    labels:
     7      app.kubernetes.io/name: ingress-nginx
     8      app.kubernetes.io/part-of: ingress-nginx
     9    annotations:
    10      # Enable PROXY protocol
    11      service.beta.kubernetes.io/aws-load-balancer-proxy-protocol: "*"
    12      # Ensure the ELB idle timeout is less than nginx keep-alive timeout. By default,
    13      # NGINX keep-alive is set to 75s. If using WebSockets, the value will need to be
    14      # increased to '3600' to avoid any potential issues.
    15      service.beta.kubernetes.io/aws-load-balancer-connection-idle-timeout: "60"
    16  spec:
    17    type: LoadBalancer
    18    selector:
    19      app.kubernetes.io/name: ingress-nginx
    20      app.kubernetes.io/part-of: ingress-nginx
    21    ports:
    22      - name: http
    23        port: 80
    24        targetPort: http
    25      - name: https
    26        port: 443
    27        targetPort: https
    28  
    29  ---
    30