docs
docs copied to clipboard
Added example for configuring a custom region
I've been struggling to get the awsCloudProvider override working:
cloud_provider:
name: aws
awsCloudProvider:
service_override:
"ec2_ap-southeast-2":
url: https://ec2.ap-southeast-2.amazonaws.com/
signing-region: custom-signing-region
service: ec2
region: ap-southeast-2
results in:
rke up 1
INFO[0000] Running RKE version: v1.0.4
INFO[0000] Initiating Kubernetes cluster
FATA[0000] Failed to register cloud provider: Failed to parse cloud config file: Failed to parse AWS cloud config
Whereas this works:
cloud_provider:
name: aws
customCloudProvider: |-
[serviceoverride "ap-southeast-2"]
URL = https://ec2.ap-southeast-2.amazonaws.com/
SigningRegion = custom-signing-region
Service = ec2
Region = ap-southeast-2
@dkeightley - any ideas?
This is what I had experienced earlier as well, let's open an issue to track this. We should hold off merging this until we can verify the example succeeds.
https://github.com/rancher/rke/issues/1969
Do we know yet if this example can be merged?