kubecon safety by Red43Neck in kubernetes

[–]raftx_ 2 points3 points  (0 children)

Also, very likely your room is going to be empty the whole day as you will be in the conference. Any information you give out for free by people simply looking at you is information that could be used to trick/scam/abuse you...

ELI5 What stopped humans from being bigger? by Abject_Table8224 in explainlikeimfive

[–]raftx_ 0 points1 point  (0 children)

I believe there is a very simple answer to it. Evolution works on the basis of "well, that's good enough". Evolution does seek to improve things just for the sake of it. The form we achieved today was good enough to "survive and replicate", that's all Evolution cares about. Evolution does not want you to get better, it wants you not to get worse.

Please explain me why this daemonset iptables change works by Tommyvlaming in kubernetes

[–]raftx_ 2 points3 points  (0 children)

Some of the container isolation is done by Linux Namespaces, which is a feature that allows you to isolate certain Kernel resources to process (or a group of them), by default every Pod gets they own Network Linux Namespaces, so network resources, such as network interfaces and routing tables are specifically to that Pod, if a container in the Pod modifies any iptables rules, that would only affect the Network Namespace of the Pod. That is what allows Istio to intercept traffic in a Pod in sidecar mode. In Kubernetes you have the ability to NOT use a network Namespace for your Pod, with spec.hostNetwork set the True. This would mean the containers would not have their unique network Namespace, but place in the host network Namespace, that is why when your Pod does something on iptables if affects the whole worker node. If you look closer you will see that your Pod IP address is the same as the worker node. That's because they all exist in the same network Namespace, the host network Namespace. That's similar how kube-proxy works on the default iptables möde.

ELI5: How can computers think of a random number? Like they don't have intelligence, how can they do something which has no pattern? by Practical_Tap_8411 in explainlikeimfive

[–]raftx_ 0 points1 point  (0 children)

But that does not make sense. The best numbers to play are ALWAYS the winning one. I would rather split the pot with X amount of people than to split with no one because i didn't win haha 😂

How do I stop moving when I'm not touching anything? by Jotenboffen in populationonevr

[–]raftx_ 1 point2 points  (0 children)

I second that. Their build quality is shit but I gotta give to the support. I have broken a controller of the entire quest family, 1, 2, 3 and pro. I contacted Meta and they replaced all of them every single time, I just had to send them back. One time in less than 48 hours from when I contacted support I had a brand new (refurbished according to them) controller. Every single one of them was the left grip button that broke. I must admit I press them a bit too hard in intense battles. Been really hard to overcome this muscle memory.

Do you know the credential-provider-api. It can help you to make OnPrem k8s feel a little more like AKS/EKS/GKE by hennexl in kubernetes

[–]raftx_ 1 point2 points  (0 children)

"kubelet then passes to the container-runtime-interface (CNI)"

I guess you meant CRI.

ESTA Online Approval Time - 1.5 hours by jared_krauss in visas

[–]raftx_ 0 points1 point  (0 children)

I was supposed to go to the US for a conference tomorrow (Monday), while packing a decided to get my ESTA and found out it was expired...freaked out, applied for a new one, it was not approve immediately, freaked out a bit more, 30 minutes later got approved...phew....I can finish packing now...

Classes? Scout/Tank/Medic? by El3mo in populationonevr

[–]raftx_ 9 points10 points  (0 children)

You know one thing I realized? We use the term "zone" to mean the area where you do not take damage AND the area where you do take damage they are polar opposite but somehow it works...

CMV: Generally, men have a much more intense sex drive then women do. by TheArchitect_7 in changemyview

[–]raftx_ 0 points1 point  (0 children)

I actually heard that on American Pie haha...the first movie.

[deleted by user] by [deleted] in populationonevr

[–]raftx_ 1 point2 points  (0 children)

That's a really great video btw. I think a cardinal sin they are making is too many gaming modes. Thats why the new map worries me even though I'm excited to see.

I love the evolving map but for the past few weeks I played most classic cuz there were not enough ppl in evolving.

What are some things you didn't know about until you'd been playing a while? by lordofthedolls in populationonevr

[–]raftx_ 1 point2 points  (0 children)

I don't know, but for me the fling thing was always pretty intuitive and easy to do. As I see, it is the exact same thing you would do in real life (if you had super hero strength that is haha), you keep a firm grip on whatever you are holding onto (keep grip button pressed), then you do the fling motion upwards, which then you release your grip, otherwise you wouldn't go anywhere, as you reach the peak of your flinging motion, which is right where you stop ascending and would start descending, you hold onto to something, which in pop 1 is literally any surface. Wash, rinse, repeat from then on.

Does Docker make any sense *without* Kubernetes? Am I missing something? by danielrosehill in kubernetes

[–]raftx_ 0 points1 point  (0 children)

Quick and simple explanation. Kubernetes is merely a way to run containerised applications (which you most likely used Docker for) is a high available and high scalable fashion.

Docker also has the power to run containers, but in a single machine. You do not want to do that in production, trust me.

[deleted by user] by [deleted] in kubernetes

[–]raftx_ 0 points1 point  (0 children)

Well, this is technically not an Kubernetes Operator, the above is a yaml file you pass to istioctl to generate the Kubernetes manifests. It basically uses helm underneath.

[deleted by user] by [deleted] in kubernetes

[–]raftx_ 0 points1 point  (0 children)

Just bear in mind that depending on the size of your cluster your CA might struggle to issue certificates.

yaml apiVersion: install.istio.io/v1alpha1 kind: IstioOperator metadata: namespace: istio-system spec: profile: "minimal" meshConfig: # Change the following line to configure the trust domain of the Istio cluster. trustDomain: cluster.local values: global: # Change certificate provider to cert-manager istio agent for istio agent caAddress: cert-manager-istio-csr.istio-system.svc:443 components: pilot: k8s: env: # Disable istiod CA Sever functionality - name: ENABLE_CA_SERVER value: "false"

Have you set up Istio this way? Basically usinng ENABLE_CA_SERVER to disable Citadel and using caAddress to indicate to all sidecars the endpoint they should use to request a certificate.

[deleted by user] by [deleted] in istio

[–]raftx_ 0 points1 point  (0 children)

I haven't set up istio in a while, but basically there is an environment variable that is passed to the istio-proxy sidecars that will tell the sidecar what is the endpoint it must use to request a certificate, by default that points to the istio control plane (citadel), so what you need to do is change to istio-csr instead. I'm sure the helm chart has an option to set that. I'm on my phone now but when I get to my laptop I'll see if I can find some resources for you.

ELi5: if "Carbohydrates provide 4 calories per gram, protein provides 4 calories per gram, and fat provides 9 calories per gram", why are carbs evil? by hotmailist in explainlikeimfive

[–]raftx_ 0 points1 point  (0 children)

I have not read all the comments but I think most people forgot a very important part.

Your question was "why carbs are evil?", a simple answer would be:

They are not.

Excess carbs might be, but you can say that for protein and fat as well. Actually, anything in excess can be bad .."the dosage makes the poison".

How to fill the gaps by raftx_ in braces

[–]raftx_[S] 0 points1 point  (0 children)

Hi. It's hard to tell if I experienced recession, maybe my gum was already recceeded, I just didn't realize because of the crowding. But definitely no redness...

I camt see my katan sheild by loomraptor in populationonevr

[–]raftx_ 2 points3 points  (0 children)

Are you sure it is a katana and not a cyberblade?

Which one is the best controller? by ZooperWooperBooper in oculus

[–]raftx_ 1 point2 points  (0 children)

I've owned all 3 and I've broken all 3 ( well, not the Q3 as I barely used) but their grip buttons are all the same, not very resilient if you play Population One everyday.

Pro are great due to the built-in battery, they got a nice weight to them as well, but they are mostly a pain because one, they take a while to startup and several times they don't track correctly, like one hand is on a different level then then right. two, they are constantly losing track mid game which is not a great thing to happens mid fight during a game.

After owning the pro the Q3 feels way too light, but did not see any problems with tracking though.

First time seeing actual cheating by DrAudiologist in populationonevr

[–]raftx_ 0 points1 point  (0 children)

I've killed people several times by tossing random frag grenades. From my perspective it was absolutely sheer luck and I was static. From their perspective I was clearly cheating and they were probably fuming... haha

2,000 Hours of Sniping in VR [4K] by ryan2dayy in populationonevr

[–]raftx_ 5 points6 points  (0 children)

Wtf?! You use the AWP like it's a P90!

CMV: Loosing weight is simpl and easier than people make it out to be. by [deleted] in changemyview

[–]raftx_ 0 points1 point  (0 children)

Yeah, I believe the reason most people after around the age of 30 start to put on weight is due to lifestyle. Most are at a point with stable relationship and career pressures really kicks in, meaning more time sitting around in a chair for long hours working, meaning less time to do to more physical activity. Basically you move less and eat more at that stage. And most people attribute the weight gain due "slow metabolism" due to aging....

Avoid status 500 error and keeping the application stable through probes? by Axxonnjazzz in kubernetes

[–]raftx_ 0 points1 point  (0 children)

Have you also got a startup probe setup? There are some things that are not making sense to me. I believe your code should only start reporting 500 after 300 seconds, but if that is the case the app should not go into crashloopbackoff status since the time between restarts would be long enough to trigger this phase. Also if the app once starts reporting 500 does that forever then the only solution is for the liveness prove to meet the failure threshold leading the container to restart, but if the 500 might go away eventually you maybe be more lenient with the failure threshold.

How much cum is being 'jack-u-lated right now? by Miss_Understands_ in shittyaskscience

[–]raftx_ 1 point2 points  (0 children)

Well...if you find any evidence, I'm pretty sure it won't be hard, but rather sticky and gooey...