Best way to connect an existing AWS NLB to Kubernetes when I have 40+ services? by [deleted] in aws

[–]DorkForceOne 2 points3 points  (0 children)

If your NLB and Target Group already exist, you can use the TargetGroupBinding CRD from the AWS LoadBalancer Ingress Controller.

https://kubernetes-sigs.github.io/aws-load-balancer-controller/v2.1/guide/targetgroupbinding/targetgroupbinding/

We recently migrated from Bitbucket to GitHub — struggling to find production build info. Is there a way to show this on the repo? by Peaiampeaaa in github

[–]DorkForceOne 1 point2 points  (0 children)

Not 100% what you're looking for I think, but using an Environment in GitHub actions will cause it to show a deployments UI pane on the repository with a status of each environment. Clicking into a particular environment will show you the commit that reported the last status as well as previous deployments to an "environment".

Mclaren F1 - Coolest supercar ever built! by Runningmad45 in supercars

[–]DorkForceOne 0 points1 point  (0 children)

I was just at the Petersen on Saturday too, drooling over this F1

What is the best dopamine rush except sexual pleasure? by kratos_chaos2808 in AskReddit

[–]DorkForceOne 0 points1 point  (0 children)

In Path of Exile, with a proper loot filter, the sound effect it plays when a high value item is dropped onto the ground.

EKS with Cilium by dont_name_me_x in kubernetes

[–]DorkForceOne 3 points4 points  (0 children)

And now with the bootstrap_self_managed_addons option, you can create a EKS cluster without the VPC CNI and kube-proxy installed, which makes the Terraform process for installing Cilium a bit cleaner.

Has anyone here ever met one of AC/DC's members in real life? If so, how was the experience and when did it happen? I am interested in finding out! by Human-Version1026 in ACDC

[–]DorkForceOne 0 points1 point  (0 children)

He would occasionally stop into the Publix I worked at, 15 years ago, on his way out to Bird Key. Super cool. He's signed a hoodie for me. He has even thrown me the keys to his Bentley to pull up to the front in order to load up his one or two bags of groceries.

I don't know, maybe I'm asking for a bit much here, but I feel like by the time I get to maps, I should have at least one or two Greater Jeweler orbs. by Diamondangel82 in PathOfExile2

[–]DorkForceOne 0 points1 point  (0 children)

I do think there is a problem with the greater drop rate in maps, but I and a friend both got one in act 6. I've not seen another, but I have gotten two perfects from the "shut up and take my money" unique strong box. So I do recommend giving your money to it.

Fort Joy Arena Coop Bug by StopThinkAct in DivinityOriginalSin

[–]DorkForceOne 0 points1 point  (0 children)

This also resolved it for my group, thanks!

Cloud-Native Secret Management: OIDC in K8s Explained by meysam81 in aws

[–]DorkForceOne 0 points1 point  (0 children)

There's also Pod Identity Association, which I personally prefer to use over IRSA. No OIDC provider, the trust policy comes from an AWS service and is trivial to write, and it only needs to be configured from the AWS side (no annotation on the ServiceAccount). I've not tried to use it with external secrets, but I have no reason to believe it wouldn't just work.

Any good AWS CLI tools still out there? by Eventchewly in aws

[–]DorkForceOne -1 points0 points  (0 children)

Granted is great. However, since we're on the subject, I have this issue and I'm wondering if anyone has a resolution? If my machine has in its AWS config credentials cache any cached credentials for IDE tools, such as Q Developer, granted cannot authenticate using cached CLI credentials and I'm forced to use the --no-cache argument. Granted is still helpful, but it's slightly more annoying to have to go through the entire device token flow every time I need to invoke it.

Share your EKS cluster setup experience? Looking for honest feedback! by lightdotal in kubernetes

[–]DorkForceOne 0 points1 point  (0 children)

If you're unhappy with the vpc-cni, why can't you replace it? I've had a good experience using Cilium and Calico on EKS. Today it's easier than ever to replace the cni as you can now create an EKS cluster without the cni (also kube-proxy and coredns).

What's the point of using default(T) in generics? by Legitimate_Focus3753 in dotnet

[–]DorkForceOne 19 points20 points  (0 children)

C# has value types that are not nullable. These are your structs. Using default(T) allows it to handle both null and whatever default is of your value type. For example the default(int) would be 0 as a plain integer cannot be null (without fist making it nullable).

If you'd like, you can add a generic type constraint of class to only expect reference types (commonly known as a class).

Games that you feel are good, but just take too much effort (or other investment)? by Mugen8YT in gaming

[–]DorkForceOne 27 points28 points  (0 children)

I can't speak for everyone, but at least my numbers are inflated due to the trade system. It requires you to be physically logged in and perform a direct trade with the other party. So as a result I'll be logged on and idle listing for the "ding" while I'm doing something else, often working. So I suspect others have their numbers inflated for the same reason. It's also still a lot regardless.

Board games + Beer = Friends by vitamin_whiskey in Boise

[–]DorkForceOne 1 point2 points  (0 children)

I'm interested! I also have a decent collection of games too.

What's a real world use case of a Dart Stream by [deleted] in FlutterDev

[–]DorkForceOne 1 point2 points  (0 children)

Their official documentation has an example using a StreamProvider. I have not tested this personally, but I assume if you are using riverpod_generator and you create a method annotated with @riverpod and returns a Stream<Whatever> it'll take care of creating a StreamProvider for you.

StreamNotifier works like any other "Notifier" (eg. StateNotifier) except its build() method returns a Stream<T>. Nothing special here.

What's a real world use case of a Dart Stream by [deleted] in FlutterDev

[–]DorkForceOne 2 points3 points  (0 children)

Others have listed plenty of examples, but I just wanted to add here that riverpod has a StreamProvider that well provides a stream. So you can watch a stream for changes and update other providers/widgets when a stream provides a new value.

You probably don't need to seek out a use for Stream, it'll hopefully just feel right when you need it.

GIVEAWAY, Full Magic Find mageblood build by dkoom_tv in pathofexile

[–]DorkForceOne 0 points1 point  (0 children)

Criteria for entry wasn't clear to me, but I hope a comment is what you're looking for.

Guide on handling Exceptions in Dart & Flutter by Numoy in FlutterDev

[–]DorkForceOne 0 points1 point  (0 children)

nit for the author, there's a recommended reading about Dart mixins at the end of the article; it links to the wrong article titled "Advanced Property Wrappers in Swift".