Remove forward slashes from paths. (#323)
This commit is contained in:
committed by
Kubernetes Prow Robot
parent
f67aaec566
commit
06380095b4
@@ -6,7 +6,10 @@ namespace k8s
|
|||||||
{
|
{
|
||||||
public partial class KubernetesClientConfiguration
|
public partial class KubernetesClientConfiguration
|
||||||
{
|
{
|
||||||
private const string ServiceAccountPath = "/var/run/secrets/kubernetes.io/serviceaccount/";
|
private static string ServiceAccountPath =
|
||||||
|
Path.Combine(new string[] {
|
||||||
|
"var", "run", "secrets", "kubernetes.io", "serviceaccount/"
|
||||||
|
});
|
||||||
private const string ServiceAccountTokenKeyFileName = "token";
|
private const string ServiceAccountTokenKeyFileName = "token";
|
||||||
private const string ServiceAccountRootCAKeyFileName = "ca.crt";
|
private const string ServiceAccountRootCAKeyFileName = "ca.crt";
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user