Show / Hide Table of Contents

Class NginxCanaryStrategy

Specifies the NGINX canary release strategy.

Inheritance
object
OkeCanaryStrategy
NginxCanaryStrategy
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DevopsService.Models
Assembly: OCI.DotNetSDK.Devops.dll
Syntax
public class NginxCanaryStrategy : OkeCanaryStrategy

Properties

IngressName

Declaration
[Required(ErrorMessage = "IngressName is required.")]
[JsonProperty(PropertyName = "ingressName")]
public string IngressName { get; set; }
Property Value
Type Description
string

Name of the Ingress resource.

Remarks

Required

Namespace

Declaration
[Required(ErrorMessage = "Namespace is required.")]
[JsonProperty(PropertyName = "namespace")]
public string Namespace { get; set; }
Property Value
Type Description
string

Canary namespace to be used for Kubernetes canary deployment. Example: canary - Name of the Canary namespace.

Remarks

Required

In this article
Back to top