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:
Kevin Lingerfelt 2018-06-27 11:40:02 -07:00 committed by GitHub
parent 0cf3a231a2
commit 26d2bce656
1 changed files with 3 additions and 0 deletions

View File

@ -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.
}
}