Monica

Results 12 comments of Monica

I had to update the auth example like this: ``` import os THIS_FOLDER = os.path.dirname(os.path.abspath(__file__)) dictionary_file = os.path.join(THIS_FOLDER,'dictionary') print(dictionary_file) srv = Client(server="x.x.x.x", secret=b"xxxx", dict=Dictionary(dictionary_file)) ```

Howdy @dapphp , To start off, I was thinking these: Packet/Type: ACCT_STATUS_TYPE_INTERIM_UPDATE Acct-Status-Type Acct-Session-Id Acct-Session-Time Thank you. :)

If not supported, how can I make this a feature request?

I use awsvpc, each ECS container, service, & task defintion includes tags for ApplicationName. However, the networkinterface does not include the related tags.

Howdy @shraddhabang , thank you for this. I tried this. I noticed that listener 80 and 443 were created on the load balancer, but unfortunately 8000 and 4443 listeners were...

I set alb.ingress.kubernetes.io/group.name to be the same for all 4 ingresses. Now, I'm getting this error: `{"level":"error","ts":"2025-02-19T18:15:22Z","msg":"Reconciler error","controller":"ingress","object":{"name":"helloworld-s-ingressgrp"},"namespace":"","name":"helloworld-s-ingressgrp","reconcileID":"2732d414-cacd-4f87-b175-d8a61b9fc593","error":"conflicting sslRedirect port: [443 4443]"}` ![Image](https://github.com/user-attachments/assets/3e0b8de5-801f-448d-b32c-b7145118c484)

I had to get rid of a leftover alb.ingress.kubernetes.io/ssl reference. This the configuration that worked for me: ``` apiVersion: networking.k8s.io/v1 kind: Ingress metadata: name: helloworld-s-ingress-blue-443 namespace: staging annotations: alb.ingress.kubernetes.io/scheme: internet-facing...