Skip to content

Commit

Permalink
(eks): fix helm asset snapshot
Browse files Browse the repository at this point in the history
  • Loading branch information
shikha372 committed Jul 12, 2024
1 parent 5ef3be5 commit ae9f682
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 80 deletions.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -1134,38 +1134,6 @@
"DeletionPolicy": "Delete"
},
"ClustercharttestskipcrdinstallationB8323954": {
"Type": "Custom::AWSCDK-EKS-HelmChart",
"Properties": {
"ServiceToken": {
"Fn::GetAtt": [
"awscdkawseksKubectlProviderNestedStackawscdkawseksKubectlProviderNestedStackResourceA7AEBA6B",
"Outputs.awscdkekshelmtestawscdkawseksKubectlProviderframeworkonEvent9D93C644Arn"
]
},
"ClusterName": {
"Ref": "Cluster9EE0221C"
},
"RoleArn": {
"Fn::GetAtt": [
"ClusterCreationRole360249B6",
"Arn"
]
},
"Release": "rds-chart-release",
"Chart": "rds-chart",
"Version": "v1.1.2",
"Namespace": "ack-system",
"Repository": "oci://public.ecr.aws/aws-controllers-k8s/rds-chart",
"CreateNamespace": true,
"SkipCrds": true
},
"DependsOn": [
"ClusterKubectlReadyBarrier200052AF"
],
"UpdateReplacePolicy": "Delete",
"DeletionPolicy": "Delete"
},
"ClustercharttestatomicinstallationB879263E": {
"Type": "Custom::AWSCDK-EKS-HelmChart",
"Properties": {
"ServiceToken": {
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -86,17 +86,6 @@ class EksClusterStack extends Stack {
namespace: 'ack-system',
createNamespace: true,
skipCrds: true,
});

//testing installation with atomic flag set to true
this.cluster.addHelmChart('test-atomic-installation', {
chart: 'rds-chart',
release: 'rds-chart-release',
repository: 'oci://public.ecr.aws/aws-controllers-k8s/rds-chart',
version: 'v1.1.2',
namespace: 'ack-system',
createNamespace: true,
skipCrds: true,
atomic: true,
});

Expand Down

0 comments on commit ae9f682

Please sign in to comment.