Suggestions for documentation / getting started guide improvements #1094
Labels
documentation
This is a problem with documentation.
feature-request
A feature should be added or improved.
needs-triage
This issue or PR still needs to be triaged.
I ran into a few hiccups while working through the Developer Guide, and I wanted to share in hopes it helps someone out or can get added to the documentation.
Despite the bumps, this project was incredibly helpful and spared me from having to grok all of the manual setup docs, so thanks!
images.forRenderQueue(),
in one of the TypeScript examples should beimages: images.forRenderQueue(),
. Unlike with the other arguments, TypeScript can't infer the key name because this one is passed as the result of a function call rather than a named variable.splitTunnel: true
anddnsServers: ['rfdk-vpc-cidr-plus-2'], // e.g. '10.0.0.2'
to the props list when creating theCfnClientVpnEndpoint
. ThesplitTunnel
setting will make it so only traffic intended for resources within the VPC gets routed through the VPN (which some users may prefer). ThednsServers
will let the client VPN use the private hosted zone in Route 53 that CDK creates, which will allowrenderqueue.aws-rfdk.com
to resolve to the internal application load balancer sitting in front of the render queue server.CfnClientVpnAuthorizationRule
, the// for example, replace target_network-cidr-block with 10.100.0.0/16
should say10.0.0.0/16
.10.100.0.0/16
corresponds to aHostMin
of10.100.0.1
andHostMax
of10.100.255.254
; however, the three private subnets created in my VPC had CIDR ranges of10.0.96.0/19
,10.0.128.0/19
, and10.0.160.0/19
(which aren't in that range), so it wouldn't actually have access to the WorkerFleet, RenderQueue, etc.8080
for accessing the remote server should be port4433
instead.X.509 Certificate for HelloRfdkStack/RenderQueue/RootCA
, saved the decrypted value in a localRootCA.crt
file, and then used it to connect with Deadline Monitor, send test jobs using Deadline Command, and verify reachability usingcurl --cacert /path/to/RootCA.crt https://renderqueue.aws-rfdk.com:4433
, but it would have been very helpful to have a simpleaws secretsmanager get-secret-value {...} > /path/to/RootCA.crt
command somewhere before the instructions on how to connect to the render farm.Hope this helps!
This is a 📕 documentation issue
The text was updated successfully, but these errors were encountered: