From 274411b94efe93b6e49b63509d34a0594b1c73bf Mon Sep 17 00:00:00 2001 From: "Kenneth D. Evensen" Date: Sat, 2 Jul 2016 16:54:41 -0400 Subject: [PATCH] Adding comments --- pkg/cloudprovider/providers/aws/aws.go | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/pkg/cloudprovider/providers/aws/aws.go b/pkg/cloudprovider/providers/aws/aws.go index ef9331b2677..451ac9a46b7 100644 --- a/pkg/cloudprovider/providers/aws/aws.go +++ b/pkg/cloudprovider/providers/aws/aws.go @@ -300,7 +300,16 @@ type CloudConfig struct { //has setup a rule that allows inbound traffic on kubelet ports from the //local VPC subnet (so load balancers can access it). E.g. 10.82.0.0/16 30000-32000. DisableSecurityGroupIngress bool - + + //During the instantiation of an new AWS cloud provider, the detected region + //is validated against a known set of regions. + // + //In a non-standard, AWS like environment (e.g. Eucalyptus), this check may + //be undesirable. Setting this to true will disable the check and provide + //a warning that the check was skipped. Please note that this is an + //experimental feature and work-in-progress for the moment. If you find + //yourself in an non-AWS cloud and open an issue, please indicate that in the + //issue body. DisableStrictZoneCheck bool } }