Show / Hide Table of Contents

Class V1ClusterTrustBundleProjection

ClusterTrustBundleProjection describes how to select a set of ClusterTrustBundle objects and project their contents into the pod filesystem.

Inheritance
object
V1ClusterTrustBundleProjection
Implements
IEquatable<V1ClusterTrustBundleProjection>
Inherited Members
object.GetType()
object.MemberwiseClone()
object.Equals(object, object)
object.ReferenceEquals(object, object)
Namespace: k8s.Models
Assembly: KubernetesClient.dll
Syntax
public record V1ClusterTrustBundleProjection : IEquatable<V1ClusterTrustBundleProjection>

Constructors

View Source

V1ClusterTrustBundleProjection()

Declaration
public V1ClusterTrustBundleProjection()
View Source

V1ClusterTrustBundleProjection(V1ClusterTrustBundleProjection)

Declaration
protected V1ClusterTrustBundleProjection(V1ClusterTrustBundleProjection original)
Parameters
Type Name Description
V1ClusterTrustBundleProjection original

Properties

View Source

EqualityContract

Declaration
protected virtual Type EqualityContract { get; }
Property Value
Type Description
Type
View Source

LabelSelector

Select all ClusterTrustBundles that match this label selector. Only has effect if signerName is set. Mutually-exclusive with name. If unset, interpreted as "match nothing". If set but empty, interpreted as "match everything".

Declaration
[JsonPropertyName("labelSelector")]
public V1LabelSelector LabelSelector { get; set; }
Property Value
Type Description
V1LabelSelector
View Source

Name

Select a single ClusterTrustBundle by object name. Mutually-exclusive with signerName and labelSelector.

Declaration
[JsonPropertyName("name")]
public string Name { get; set; }
Property Value
Type Description
string
View Source

Optional

If true, don't block pod startup if the referenced ClusterTrustBundle(s) aren't available. If using name, then the named ClusterTrustBundle is allowed not to exist. If using signerName, then the combination of signerName and labelSelector is allowed to match zero ClusterTrustBundles.

Declaration
[JsonPropertyName("optional")]
public bool? Optional { get; set; }
Property Value
Type Description
bool?
View Source

Path

Relative path from the volume root to write the bundle.

Declaration
[JsonPropertyName("path")]
public string Path { get; set; }
Property Value
Type Description
string
View Source

SignerName

Select all ClusterTrustBundles that match this signer name. Mutually-exclusive with name. The contents of all selected ClusterTrustBundles will be unified and deduplicated.

Declaration
[JsonPropertyName("signerName")]
public string SignerName { get; set; }
Property Value
Type Description
string

Methods

View Source

Equals(object?)

Declaration
public override bool Equals(object? obj)
Parameters
Type Name Description
object obj
Returns
Type Description
bool
Overrides
object.Equals(object)
View Source

Equals(V1ClusterTrustBundleProjection?)

Declaration
public virtual bool Equals(V1ClusterTrustBundleProjection? other)
Parameters
Type Name Description
V1ClusterTrustBundleProjection other
Returns
Type Description
bool
View Source

GetHashCode()

Declaration
public override int GetHashCode()
Returns
Type Description
int
Overrides
object.GetHashCode()
View Source

PrintMembers(StringBuilder)

Declaration
protected virtual bool PrintMembers(StringBuilder builder)
Parameters
Type Name Description
StringBuilder builder
Returns
Type Description
bool
View Source

ToString()

Declaration
public override string ToString()
Returns
Type Description
string
Overrides
object.ToString()

Operators

View Source

operator ==(V1ClusterTrustBundleProjection?, V1ClusterTrustBundleProjection?)

Declaration
public static bool operator ==(V1ClusterTrustBundleProjection? left, V1ClusterTrustBundleProjection? right)
Parameters
Type Name Description
V1ClusterTrustBundleProjection left
V1ClusterTrustBundleProjection right
Returns
Type Description
bool
View Source

operator !=(V1ClusterTrustBundleProjection?, V1ClusterTrustBundleProjection?)

Declaration
public static bool operator !=(V1ClusterTrustBundleProjection? left, V1ClusterTrustBundleProjection? right)
Parameters
Type Name Description
V1ClusterTrustBundleProjection left
V1ClusterTrustBundleProjection right
Returns
Type Description
bool

Implements

IEquatable<T>
  • View Source
In this article
Back to top Generated by DocFX