Skip to content

Commit

Permalink
feat(datasource): use uptest datasources for input in examples
Browse files Browse the repository at this point in the history
Signed-off-by: Christopher Haar <[email protected]>
  • Loading branch information
haarchri committed Feb 29, 2024
1 parent d7f2257 commit bf05610
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 10 deletions.
13 changes: 5 additions & 8 deletions examples/aws-host-space.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,24 +14,21 @@ spec:
count: 5
instanceType: m5.2xlarge
iam:
# Important: Please specify an iamRoleArn to access the AWS EKS Cluster deployed as part of CNOE.
# Important: Please specify an iamRoleArn to access the AWS EKS Cluster deployed as part of this reference implementation..
# Without specifying a valid roleArn, you will not be able to log in to the EKS cluster.
# If you are using AWS SSO Roles, ensure to remove 'aws-reserved/sso.amazonaws.com/' from the ARN.
# For example, convert this:
# arn:aws:iam::123456789:role/aws-reserved/sso.amazonaws.com/AWSReservedSSO_AdministratorAccess_d703c73ed340fde7
# To this:
# arn:aws:iam::123456789:role/AWSReservedSSO_AdministratorAccess_d703c73ed340fde7
# roleArn: arn:aws:iam::123456789:role/AWSReservedSSO_AdministratorAccess_d703c73ed340fde7
roleArn: arn:aws:iam::609897127049:role/AWSReservedSSO_AdministratorAccess_d703c73ed340fde7
roleArn: arn:aws:iam::123456789:role/AWSReservedSSO_AdministratorAccess_d703c73ed340fde7
operators:
externaldns:
aws:
# To leverage external-dns for managing the spaces.dns.spacesRouterDomain zone entry,
# substitute the placeholder values with your actual Route53 Zone ID and Route53 Zone Name.
# route53zoneId: Z0000000000000000000
# route53ZoneName: example.com
route53ZoneId: Z0115025YFQ7ZQF6BJ6N
route53ZoneName: upboundrocks.cloud
route53ZoneId: ${data.route53ZoneId}
route53ZoneName: ${data.route53ZoneName}
crossplane:
providers:
- name: provider-helm
Expand All @@ -42,7 +39,7 @@ spec:
localRbac: true
spaces:
dns:
spacesRouterDomain: platform-ref-upbound-spaces.upboundrocks.cloud
spacesRouterDomain: platform-ref-upbound-spaces.${data.route53ZoneName}
clusterType: eks
account: platform-ref
writeConnectionSecretToRef:
Expand Down
2 changes: 1 addition & 1 deletion examples/azure-host-space.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ spec:
localRbac: true
spaces:
dns:
spacesRouterDomain: platform-ref-upbound-spaces-aks.upboundrocks.cloud
spacesRouterDomain: platform-ref-upbound-spaces-aks.${data.route53ZoneName}
clusterType: aks
account: platform-ref
writeConnectionSecretToRef:
Expand Down
2 changes: 1 addition & 1 deletion examples/gcp-host-space.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ spec:
localRbac: true
spaces:
dns:
spacesRouterDomain: platform-ref-upbound-spaces-gke.upboundrocks.cloud
spacesRouterDomain: platform-ref-upbound-spaces-gke.${data.route53ZoneName}
clusterType: gke
account: platform-ref
writeConnectionSecretToRef:
Expand Down

0 comments on commit bf05610

Please sign in to comment.