Class V1alpha1ClusterTrustBundle
ClusterTrustBundle is a cluster-scoped container for X.509 trust anchors (root
certificates).
ClusterTrustBundle objects are considered to be readable by any authenticated
user in the cluster, because they can be mounted by pods using the
clusterTrustBundle projection. All service accounts have read access to
ClusterTrustBundles by default. Users who only have namespace-level access to a
cluster can read ClusterTrustBundles by impersonating a serviceaccount that they
have access to.
It can be optionally associated with a particular assigner, in which case it
contains one valid set of trust anchors for that signer. Signers may have
multiple associated ClusterTrustBundles; each is an independent set of trust
anchors for that signer. Admission control is used to enforce that only users
with permissions on the signer can create or modify the corresponding bundle.
Inheritance
V1alpha1ClusterTrustBundle
Assembly: KubernetesClient.dll
Syntax
[KubernetesEntity(Group = "certificates.k8s.io", Kind = "ClusterTrustBundle", ApiVersion = "v1alpha1", PluralName = "clustertrustbundles")]
public record V1alpha1ClusterTrustBundle : IKubernetesObject<V1ObjectMeta>, IKubernetesObject, IMetadata<V1ObjectMeta>, ISpec<V1alpha1ClusterTrustBundleSpec>, IEquatable<V1alpha1ClusterTrustBundle>
Constructors
V1alpha1ClusterTrustBundle()
Declaration
public V1alpha1ClusterTrustBundle()
V1alpha1ClusterTrustBundle(V1alpha1ClusterTrustBundle)
Declaration
protected V1alpha1ClusterTrustBundle(V1alpha1ClusterTrustBundle original)
Parameters
Fields
KubeApiVersion
Declaration
public const string KubeApiVersion = "v1alpha1"
Field Value
KubeGroup
Declaration
public const string KubeGroup = "certificates.k8s.io"
Field Value
KubeKind
Declaration
public const string KubeKind = "ClusterTrustBundle"
Field Value
KubePluralName
Declaration
public const string KubePluralName = "clustertrustbundles"
Field Value
Properties
ApiVersion
Declaration
[JsonPropertyName("apiVersion")]
public string ApiVersion { get; set; }
Property Value
EqualityContract
Declaration
protected virtual Type EqualityContract { get; }
Property Value
Kind
Declaration
[JsonPropertyName("kind")]
public string Kind { get; set; }
Property Value
metadata contains the object metadata.
Declaration
[JsonPropertyName("metadata")]
public V1ObjectMeta Metadata { get; set; }
Property Value
Spec
spec contains the signer (if any) and trust anchors.
Declaration
[JsonPropertyName("spec")]
public V1alpha1ClusterTrustBundleSpec Spec { get; set; }
Property Value
Methods
Equals(object?)
Declaration
public override bool Equals(object? obj)
Parameters
| Type |
Name |
Description |
| object |
obj |
|
Returns
Overrides
Equals(V1alpha1ClusterTrustBundle?)
Declaration
public virtual bool Equals(V1alpha1ClusterTrustBundle? other)
Parameters
Returns
GetHashCode()
Declaration
public override int GetHashCode()
Returns
Overrides
PrintMembers(StringBuilder)
Declaration
protected virtual bool PrintMembers(StringBuilder builder)
Parameters
Returns
ToString()
Declaration
public override string ToString()
Returns
Overrides
Operators
operator ==(V1alpha1ClusterTrustBundle?, V1alpha1ClusterTrustBundle?)
Declaration
public static bool operator ==(V1alpha1ClusterTrustBundle? left, V1alpha1ClusterTrustBundle? right)
Parameters
Returns
operator !=(V1alpha1ClusterTrustBundle?, V1alpha1ClusterTrustBundle?)
Declaration
public static bool operator !=(V1alpha1ClusterTrustBundle? left, V1alpha1ClusterTrustBundle? right)
Parameters
Returns
Implements
Extension Methods