<#3937 Fix indent in ingress TLS configuration> Pu...
# flyte-github
c
#3937 Fix indent in ingress TLS configuration Pull request opened by jeevb The
tls
configuration block should be at
spec.tls
per the docs. Adding the following to `values.yaml`:
Copy code
@@ -202,6 +202,11 @@ ingress:
             name: use-annotation
       path: /
       pathType: Exact
+  ingressClassName: myingressclass
+  tls:
+  - hosts:
+    - <http://myhost.com|myhost.com>
+    secretName: supersecret
 rbac:
   extraRules:
   - apiGroups:
Now produces the following diff:
Copy code
@@ -854,6 +854,11 @@ metadata:
     <http://kubernetes.io/ingress.class|kubernetes.io/ingress.class>: alb
     <http://alb.ingress.kubernetes.io/backend-protocol-version|alb.ingress.kubernetes.io/backend-protocol-version>: GRPC
 spec:
+  ingressClassName: "myingressclass"
+  tls:
+  - hosts:
+    - <http://myhost.com|myhost.com>
+    secretName: supersecret
   rules:
   - http:
       paths:
@@ -966,6 +971,11 @@ metadata:
     <http://alb.ingress.kubernetes.io/actions.app-root|alb.ingress.kubernetes.io/actions.app-root>: '{"Type": "redirect", "RedirectConfig":
       {"Path": "/console", "StatusCode": "HTTP_302"}}'
 spec:
+  ingressClassName: "myingressclass"
+  tls:
+  - hosts:
+    - <http://myhost.com|myhost.com>
+    secretName: supersecret
   rules:
   - http:
       paths:
flyteorg/flyte GitHub Actions: generate_helm GitHub Actions: docs GitHub Actions: trigger-sandbox-build GitHub Actions: generate_kustomize GitHub Actions: test-bootstrap GitHub Actions: trigger-sandbox-lite-build GitHub Actions: compile 2 other checks have passed 2/9 successful checks
a