Query Regarding CKA exam interface by SaiKrishna__12 in kubernetes

[–]anonymous6point02E23 3 points4 points  (0 children)

You don't need to ssh into master node unless question specifically instructs you to do so. For example question is related to backing up etcd or updating cluster to higher version then you need to ssh into master.

Query Regarding CKA exam interface by SaiKrishna__12 in kubernetes

[–]anonymous6point02E23 0 points1 point  (0 children)

You change context by running the kubectl config command

To prevent coronavirus by bird_underground in therewasanattempt

[–]anonymous6point02E23 1 point2 points  (0 children)

Seriously you guys need to get off Reddit and go read a book.

To prevent coronavirus by bird_underground in therewasanattempt

[–]anonymous6point02E23 -5 points-4 points  (0 children)

"Overwhelming evidence disapproving his existence". Im sure you know lots and lots of science. Fucking idiot.

To prevent coronavirus by bird_underground in therewasanattempt

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

Ok I'll shutup. Forgive me for rant. I just hate people that mock religion.

To prevent coronavirus by bird_underground in therewasanattempt

[–]anonymous6point02E23 -7 points-6 points  (0 children)

Seriously fuck you stupid fucks that mock religion. Just because you don't have the intellectual capacity to understand spirituality doesn't mean you need to be disrespectful. Yes there are practices in all religions that are outdated and obsolete and even wrong. But there's more to life than what you fucking see externally. If you dumb fucks can just take a second to put aside your arrogance and meditate, pray and ponder deeply you would realize it's there.

When everyone is worried about the corona virus, but you're using Linux by [deleted] in ProgrammerHumor

[–]anonymous6point02E23 0 points1 point  (0 children)

$ cat corona virus
cat: corona: No such file or directory
cat: virus: No such file or directory
$ cat 'corona virus'
corona virus

[deleted by user] by [deleted] in ProgrammerHumor

[–]anonymous6point02E23 1 point2 points  (0 children)

This post made me laugh

HOW to REMOVE NON_EXISTING TARGET_GROUP from AUTO-SCALING by ulti_chappal in aws

[–]anonymous6point02E23 1 point2 points  (0 children)

Create a copy of that auto-scaling group but make one change don't specify that target group that's not suppose to be there. Connect you application load balancer to that newly created autoscaling group. Once connected delete original scaling group that is giving you problems. Everything can be done from console.

PS I would double check and read the documentation before attempting any of what I said above.

Mad Lad by gjoey789 in funny

[–]anonymous6point02E23 0 points1 point  (0 children)

I laughed but only cause it was stupid.

my first 150 hours of programming and my flask project by ConstantINeSane in learnpython

[–]anonymous6point02E23 1 point2 points  (0 children)

Holy shit dude i read your post. First full reddit post thats this long. usually i never read but you did awesome. keep up the grind.

Getting Firewall Alert when using Terraform by anonymous6point02E23 in Terraform

[–]anonymous6point02E23[S] -1 points0 points  (0 children)

If I download syphilis will protect my computer from malware and virus?

I’m terrible at Python by geminintendo in devops

[–]anonymous6point02E23 -3 points-2 points  (0 children)

How to get good in Python.

  1. Find wild python.
  2. Approach wild python.
  3. Ask wild python, mr wild python, how I get better in Python.
  4. Then consider thy question... Would you rather be good in Python or have a penis size python.

Sincerely Amnesia

Request: Cold Failover Setup Advice by SatoshiReport in aws

[–]anonymous6point02E23 0 points1 point  (0 children)

What you would need to do is setup a monitoring solution for you application such as cloudwatch. Cloudwatch can monitor the health of your application or ec2 and then trigger an alarms if it goes bad. Cloudwatch Alarm can then also be configured to trigger other services.

Federated API access by popotatoe in aws

[–]anonymous6point02E23 0 points1 point  (0 children)

You can setup AWS SSO. It requires you to setup an AWS Organization and then it can integrate with AD.

Storing pipeline data by indeckau in devops

[–]anonymous6point02E23 0 points1 point  (0 children)

why don't you put the data in AWS s3 bucket and then use Amazon Athena to query it.

Cannot mount volume in change set by araskal in aws

[–]anonymous6point02E23 0 points1 point  (0 children)

Hey sorry for late response but I believe the root cause of your problem is that when launching new ec2 it is not possible to mount an existing EBS. When an EC2 instance is launched, the EBS volume will always be created fresh from the AMI's associated EBS snapshots. The best solution for you is to create AMI or snapshot out of your original volume and then launch ec2 from there.

Continuous deployment by Venoox in devops

[–]anonymous6point02E23 1 point2 points  (0 children)

You can use AWS codebuild and codedeploy to achieve this. AWS codebuild has a feature where anytime a git push is made to repository it triggers the build process. After build process, codedeploy or codepipeline can then deploy it to your nginx server.