We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When deploying a service using the AppMesh extension, the Envoy container logs the following error:
gRPC config stream closed: 7
This issue is similar to the one documented in aws/aws-app-mesh-roadmap#80.
The Envoy container should not log any gRPC config stream closed: 7 errors.
The Envoy container logs an error: gRPC config stream closed: 7.
The issue can be resolved by adding the following lines in the useTaskDefinition method:
useTaskDefinition
public useTaskDefinition(taskDefinition: ecs.TaskDefinition): void { super.useTaskDefinition(taskDefinition); // Reference: https://github.com/aws/aws-app-mesh-roadmap/issues/80 taskDefinition.taskRole.addManagedPolicy(iam.ManagedPolicy.fromAwsManagedPolicyName('CloudWatchFullAccess')); taskDefinition.taskRole.addManagedPolicy(iam.ManagedPolicy.fromAwsManagedPolicyName('AWSXRayDaemonWriteAccess')); taskDefinition.taskRole.addManagedPolicy(iam.ManagedPolicy.fromAwsManagedPolicyName('AWSAppMeshEnvoyAccess')); }
This addition grants the necessary permissions to the task role, resolving the error.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description
When deploying a service using the AppMesh extension, the Envoy container logs the following error:
This issue is similar to the one documented in aws/aws-app-mesh-roadmap#80.
Steps to Reproduce
Expected Behavior
The Envoy container should not log any
gRPC config stream closed: 7
errors.Observed Behavior
The Envoy container logs an error:
gRPC config stream closed: 7
.Proposed Solution
The issue can be resolved by adding the following lines in the
useTaskDefinition
method:This addition grants the necessary permissions to the task role, resolving the error.
The text was updated successfully, but these errors were encountered: