I am trying to provide a tls certificate to hook w...
# flyte-deployment
s
I am trying to provide a tls certificate to hook with Ingress using https://github.com/flyteorg/flyte/blob/ca704e24daad628535a4414e0a7cb1164621105d/charts/flyte-core/values.yaml#L344-L347 While installing flyte via helm3 I get this error:
Copy code
rror: unable to build kubernetes objects from release manifest: error validating "": error validating data: ValidationError(Ingress.spec.tls[0].hosts): unknown object type "nil" in Ingress.spec.tls[0].hosts[0]
When I render the template for helm I see:
Copy code
tls:
    - secretName: my-secret-name
      hosts:
        - null
Why is it generating this hosts as null? How can I override/correct this hosts as there is no option to do that in the values-eks.yaml.
y
@Brian Connolly any idea about this?
b
@Shahwar Saleem , we are looking at this now and will get back to you shortly.
s
Thanks Brian!
b
@Shahwar Saleem sorry for the delay in responding. This looks to be a problem with the documentation. To fix the problem you will need to uncomment and update
host
variable at https://github.com/flyteorg/flyte/blob/ca704e24daad628535a4414e0a7cb1164621105d/charts/flyte-core/values.yaml#L343 The
host
values is the flyte FQDN. If you uncomment and update
host
in values.yaml does it fix the problem and you are able to install flyte via helm3?
656 Views