Show / Hide Table of Contents

Class AddOnOptions

The properties that define options for supported add-ons.

Inheritance
object
AddOnOptions
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.ContainerengineService.Models
Assembly: OCI.DotNetSDK.Containerengine.dll
Syntax
public class AddOnOptions

Properties

IsKubernetesDashboardEnabled

Declaration
[JsonProperty(PropertyName = "isKubernetesDashboardEnabled")]
public bool? IsKubernetesDashboardEnabled { get; set; }
Property Value
Type Description
bool?

Whether or not to enable the Kubernetes Dashboard add-on.

IsTillerEnabled

Declaration
[JsonProperty(PropertyName = "isTillerEnabled")]
public bool? IsTillerEnabled { get; set; }
Property Value
Type Description
bool?

Whether or not to enable the Tiller add-on.

In this article
Back to top