Show / Hide Table of Contents

Class LocalFileCaBundle

CA Bundle from the filesystem.

Inheritance
object
CaBundle
LocalFileCaBundle
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.ServicemeshService.Models
Assembly: OCI.DotNetSDK.Servicemesh.dll
Syntax
public class LocalFileCaBundle : CaBundle

Properties

SecretName

Declaration
[JsonProperty(PropertyName = "secretName")]
public string SecretName { get; set; }
Property Value
Type Description
string

Name of the secret. For Kubernetes this will be the name of an opaque Kubernetes secret with key ca.crt. For other platforms the secret must be mounted at: /etc/oci/secrets/${secretName}/ca.crt

In this article
Back to top