Update dest service with a different tls identity strategy (#1215)
* Update dest service with a different tls identity strategy * Send controller namespace as separate field Signed-off-by: Kevin Lingerfelt <kl@buoyant.io>
This commit is contained in:
parent
0cf3a231a2
commit
26d2bce656
|
@ -37,6 +37,9 @@ impl Identity {
|
|||
};
|
||||
Self::try_from_pod_name(&namespaces, &i.pod_name).map(Some)
|
||||
},
|
||||
Some(Strategy::K8sPodIdentity(_i)) => {
|
||||
Ok(None) // TODO: switch to K8sPodIdentity
|
||||
},
|
||||
None => Ok(None), // No TLS.
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue