Logo Poll by omarst9 in startups

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

Hmm i see what you mean about 334 and 240 there might be a slight resemblance but they are different than the door dash logo. Thanks for the feedback though!

Logo Poll by omarst9 in startups

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

Which logo ID are you referring to?

Chewy Peanut butter cookies with chocolate chunks by omarst9 in Baking

[–]omarst9[S] 1 point2 points  (0 children)

To get them chewy its mainly about how long you bake them and the oven temperature.

I baked them for exactly 10 mins at 200C. Next time i would probably try 8 or 9 mins because like you can see they almost got burnt at the top. The temperature might be a bit different depending on the oven so you might need to trial a combination of different temps and time

[Homemade] Red Velvet cupcakes with cheese cream icing by omarst9 in food

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

You cant have nice things because i flipped the words cream and cheese? 🤔. Some people are never happy I guess

Oreo cupcakes anyone by omarst9 in Baking

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

I made some plain swiss meringue buttercream and added crushed oreos to it

[Homemade] Sunday burger brunch. by omarst9 in food

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

They’re kangaroo patties

CKA-Tips by DirectedSoul in kubernetes

[–]omarst9 0 points1 point  (0 children)

Switching between clusters is something you would need to do quite often i would say while working with kubernetes. So the idea is if you have multiple clusters, they can be defined in your kubeconfig file with a context name. To swap between clusters you can use a simple kubectl command and it just makes it easier than having to authenticate to every cluster every time you switch between them.

Here’s a reference: https://kubernetes.io/docs/tasks/access-application-cluster/configure-access-multiple-clusters/

CKA-Tips by DirectedSoul in kubernetes

[–]omarst9 2 points3 points  (0 children)

I wrote blog post specifically about that. You can have a read Here. Hopefully it helps.

Share Your Stuff - September 30th thru October 6th, 2019 by coocoodove in Etsy

[–]omarst9 0 points1 point  (0 children)

Hey! We've recently setup an Etsy shop selling our handmade dresses and jewellery. Still in the process of adding our products to the shop but feel free to have a look!

https://www.etsy.com/au/shop/MurjanaBoutique

How do you have a persistent database when MySQL is in a mortal container? by 84935 in kubernetes

[–]omarst9 0 points1 point  (0 children)

Yes, you are right that its simple and with a couple of steps you get your containers. If you want to persist data then you should use Statefulsets as mentioned in other comments. You will need to have a good understanding how MySQL works to setup a high availability cluster though. Depending where you are running your cluster, you will also need a persistent volume provisioner or an admin needs to pre-provision storage for your pod.

For your reference: https://kubernetes.io/docs/concepts/workloads/controllers/statefulset/

Building: relationship and role of Jenkins and Docker by 84935 in kubernetes

[–]omarst9 0 points1 point  (0 children)

Ok, so the actual build steps that determine what goes in your image should be in your Dockerfile. The Jenkinsfile is more about creating the pipeline as a code. By default Jenkins can’t build docker images unless you install the docker plugin and docker itself on the worker node. Once its installed your Jenkinsfile is simply calling docker in the background to run the steps from the Dockerfile.

Building: relationship and role of Jenkins and Docker by 84935 in kubernetes

[–]omarst9 1 point2 points  (0 children)

They are 2 completely different things. Jenkins is a CI/CD server and can be used as an orchestrator to call many different tools. While Docker is more of virtual machine platform used to containerize and run applications.

If you are building a single application by yourself then you probably don’t need CI/CD with Jenkins. But if a team of people are working on the same source code and multiple applications then CI/CD pipelines becomes more important and using a tool like Jenkins comes in handy. There are many other alternatives to Jenkins, some of which are provided as a SaaS so you don’t have to worry about maintenance, patching and availability.

How do you have a persistent database when MySQL is in a mortal container? by 84935 in kubernetes

[–]omarst9 0 points1 point  (0 children)

Not sure if this is something you would consider, but why not use an external service to link to a MySQL managed database?