Skip to content

Commit a72b5b3

Browse files
committed
remove xray since unsupported currently
1 parent 0ee81cc commit a72b5b3

File tree

2 files changed

+2
-7
lines changed

2 files changed

+2
-7
lines changed

docs/patterns/single-new-eks-observability-accelerators/single-new-eks-awsnative-automode-observability.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,8 @@ kubectl get nodes -o wide
7373
Output:
7474

7575
```console
76-
NAME STATUS ROLES AGE VERSION INTERNAL-IP EXTERNAL-IP OS-IMAGE KERNEL-VERSION CONTAINER-RUNTIME
77-
i-04151a4f7765b29fb Ready <none> 2m10s v1.31.9-eks-ca3410b 10.0.10.253 13.222.181.87 Bottlerocket (EKS Auto, Standard) 2025.7.11 (aws-k8s-1.31-standard) 6.1.141 containerd://1.7.27+bottlerocket
76+
NAME STATUS ROLES AGE VERSION INTERNAL-IP EXTERNAL-IP OS-IMAGE KERNEL-VERSION CONTAINER-RUNTIME
77+
i-08431fdb27179b448 Ready <none> 26m v1.33.4-eks-e386d34 10.0.18.245 3.17.164.102 Bottlerocket (EKS Auto, Standard) 2025.11.8 (aws-k8s-1.33-standard) 6.12.53 containerd://1.7.28+bottlerocket
7878
```
7979

8080
Next, lets verify the namespaces in the cluster:

lib/single-new-eks-awsnative-automode-observability-pattern/index.ts

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,6 @@ export default class SingleNewEksAutoModeAWSNativeObservabilityPattern {
1111
const account = process.env.COA_ACCOUNT_ID! || process.env.CDK_DEFAULT_ACCOUNT!;
1212
const region = process.env.COA_AWS_REGION! || process.env.CDK_DEFAULT_REGION!;
1313

14-
const addOns: Array<blueprints.ClusterAddOn> = [
15-
new blueprints.addons.XrayAddOn()
16-
];
17-
1814
const cluster = new blueprints.AutomodeClusterProvider({
1915
version: KubernetesVersion.V1_33,
2016
nodePools: ['system', 'general-purpose']
@@ -27,7 +23,6 @@ export default class SingleNewEksAutoModeAWSNativeObservabilityPattern {
2723
.clusterProvider(cluster)
2824
.enableNativePatternAddOns()
2925
.enableControlPlaneLogging()
30-
.addOns(...addOns)
3126
.build(scope, stackId);
3227
}
3328
}

0 commit comments

Comments
 (0)