I'm using envoy and it verifies the `authorization...
# flyte-support
d
I'm using envoy and it verifies the
authorization: Bearer XXX
header for incoming requests to my cluster. I have a long lived token
XXX
that I want
flytctl
to send up with its grpc requests, any idea what to set in ~/.flyte/config.yaml to get it to work?
t
echo it and use ExternalCommand
d
Would it look something like
Copy code
admin:
  endpoint: dns:///grpc.<..>
  command: ['echo', 'Bearer XXX']
in the config.yaml?
a
I think you'd also need
Copy code
admin:
  authType: ExternalCommand
t
yes, thank you david