Skip to content
New issue

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

Bug: virtual gateway pod is not working when I set disable 'sidecarInjectorWebhook' at namespace #473

Open
austn18 opened this issue Jul 8, 2023 · 0 comments
Labels
Bug Something isn't working

Comments

@austn18
Copy link

austn18 commented Jul 8, 2023

I tried to configure virtual gateway with disable namespace sidecarInjectorWebhook config and deployment with enable sidecarInjectorWebhook config
but, i saw virtual gateway pod warning message below

[2023-07-07 10:53:02.241][16][warning][main] [source/server/server.cc:794] there is no configured limit to the number of allowed active connections. Set a limit via the runtime key overload.global_downstream_max_connections
10
[2023-07-07 10:53:02.242][16][info][main] [source/server/server.cc:915] starting main dispatch loop
9
[2023-07-07 10:53:02.259][16][warning][config] [./source/common/config/grpc_stream.h:163] StreamAggregatedResources gRPC config stream to appmesh-envoy-management.ap-northeast-2.amazonaws.com:443 closed: 13,
8

if i change namespace config, it's work!!
is that a bug?

and i attach my code

apiVersion: appmesh.k8s.aws/v1beta2
kind: VirtualGateway
metadata:
  name: test-vgw
spec:
  namespaceSelector:
    matchLabels:
      mesh: app-mesh
  gatewayRouteSelector:
    matchLabels:
      gateway: test-vgw-route
  podSelector:
    matchLabels:
      app: test-vgw
  listeners:
    - portMapping:
        port: 8088
        protocol: http

---
apiVersion: apps/v1
kind: Deployment
metadata:
  name: test-vgw
spec:
  revisionHistoryLimit: 0
  replicas: 1
  selector:
    matchLabels:
      app: test-vgw
  template:
    metadata:
      annotations:
        appmesh.k8s.aws/sidecarInjectorWebhook: enabled
      labels:
        app: test-vgw
    spec:
      containers:
        - name: envoy
          image: 840364872350.dkr.ecr.us-west-2.amazonaws.com/aws-appmesh-envoy:v1.25.4.0-prod
          ports:
            - containerPort: 8088
@austn18 austn18 added the Bug Something isn't working label Jul 8, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Bug Something isn't working
Projects
Status: Researching
Development

No branches or pull requests

1 participant