Show / Hide Table of Contents

Class GkePlatformDetails.KubernetesData

Data from the Kubernetes API

Inheritance
System.Object
GkePlatformDetails.KubernetesData
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Google.Api.Gax
Assembly: Google.Api.Gax.dll
Syntax
public class KubernetesData

Properties

MountInfo

Lines from /proc/self/mountinfo

Declaration
public string[] MountInfo { get; set; }
Property Value
Type Description
System.String[]

NamespaceJson

JSON from https://kubernetes/api/v1/namespaces/{namespace}

Declaration
public string NamespaceJson { get; set; }
Property Value
Type Description
System.String

NamespaceName

The Kubernetes namespace name

Declaration
public string NamespaceName { get; set; }
Property Value
Type Description
System.String

PodJson

JSON from https://kubernetes/api/v1/namespaces/{namespace}/pods/{pod-name}

Declaration
public string PodJson { get; set; }
Property Value
Type Description
System.String

PodName

The Kubernetes pod name

Declaration
public string PodName { get; set; }
Property Value
Type Description
System.String
Back to top