Class V1beta1ClusterTrustBundle
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
V1beta1ClusterTrustBundle
Assembly: KubernetesClient.dll
Syntax
[KubernetesEntity(Group = "certificates.k8s.io", Kind = "ClusterTrustBundle", ApiVersion = "v1beta1", PluralName = "clustertrustbundles")]
public record V1beta1ClusterTrustBundle : IKubernetesObject<V1ObjectMeta>, IKubernetesObject, IMetadata<V1ObjectMeta>, ISpec<V1beta1ClusterTrustBundleSpec>, IEquatable<V1beta1ClusterTrustBundle>
Constructors
View Source
V1beta1ClusterTrustBundle()
Declaration
public V1beta1ClusterTrustBundle()
View Source
V1beta1ClusterTrustBundle(V1beta1ClusterTrustBundle)
Declaration
protected V1beta1ClusterTrustBundle(V1beta1ClusterTrustBundle original)
Parameters
Fields
View Source
KubeApiVersion
Declaration
public const string KubeApiVersion = "v1beta1"
Field Value
View Source
KubeGroup
Declaration
public const string KubeGroup = "certificates.k8s.io"
Field Value
View Source
KubeKind
Declaration
public const string KubeKind = "ClusterTrustBundle"
Field Value
View Source
KubePluralName
Declaration
public const string KubePluralName = "clustertrustbundles"
Field Value
Properties
View Source
ApiVersion
Declaration
[JsonPropertyName("apiVersion")]
public string ApiVersion { get; set; }
Property Value
View Source
EqualityContract
Declaration
protected virtual Type EqualityContract { get; }
Property Value
View Source
Kind
Declaration
[JsonPropertyName("kind")]
public string Kind { get; set; }
Property Value
View Source
metadata contains the object metadata.
Declaration
[JsonPropertyName("metadata")]
public V1ObjectMeta Metadata { get; set; }
Property Value
View Source
Spec
spec contains the signer (if any) and trust anchors.
Declaration
[JsonPropertyName("spec")]
public V1beta1ClusterTrustBundleSpec Spec { get; set; }
Property Value
Methods
View Source
Equals(object?)
Declaration
public override bool Equals(object? obj)
Parameters
| Type |
Name |
Description |
| object |
obj |
|
Returns
Overrides
View Source
Equals(V1beta1ClusterTrustBundle?)
Declaration
public virtual bool Equals(V1beta1ClusterTrustBundle? other)
Parameters
Returns
View Source
GetHashCode()
Declaration
public override int GetHashCode()
Returns
Overrides
View Source
PrintMembers(StringBuilder)
Declaration
protected virtual bool PrintMembers(StringBuilder builder)
Parameters
Returns
View Source
ToString()
Declaration
public override string ToString()
Returns
Overrides
Operators
View Source
operator ==(V1beta1ClusterTrustBundle?, V1beta1ClusterTrustBundle?)
Declaration
public static bool operator ==(V1beta1ClusterTrustBundle? left, V1beta1ClusterTrustBundle? right)
Parameters
Returns
View Source
operator !=(V1beta1ClusterTrustBundle?, V1beta1ClusterTrustBundle?)
Declaration
public static bool operator !=(V1beta1ClusterTrustBundle? left, V1beta1ClusterTrustBundle? right)
Parameters
Returns
Implements
Extension Methods