Quantcast
Channel: User Recoba20 - DevOps Stack Exchange
Browsing latest articles
Browse All 17 View Live

Comment by Recoba20 on Accessing k8s outside of VM

For me the cleanest way is to explicitly use kubectl and set up kubeconfig, all those hacks are temporary solutions that soon or later might fail. Also you might benefit for authentication over...

View Article



Comment by Recoba20 on What can be considered as an artifact

It's not that the team decides. It's not an official definition that the team must agrees on. An artifact could be anything that's produced by a process ( like a pipeline, or a java compiler or a...

View Article

Answer by Recoba20 for Bitbucket pipelines: Deployment destination dependent...

the idea is for each team member to have his/her own environment assigned, but deploy using a shared parametrized pipelineYou could use definitions for the steps for each environment.definitions:...

View Article

Answer by Recoba20 for Auto tune kubernetes requests/limits?

Automating this kind of behaviour is a quite risky since you have ResourceQuotas usually set up as a constraint for a namespace and from there on the pods must be aligned with it. You might end up with...

View Article

Answer by Recoba20 for Terraform's local state (the 2 tfstate files) contain...

Do not store your state in anything besides remote backend. Even if you store it in a remote backend the secrets will appear in a plain text again, this is an ongoing Terraform limitation. In our case...

View Article


Answer by Recoba20 for Terraform - how to modify a existing S3 bucket that...

If you already have your S3 bucket recognized by Terraform and it was created by the code you pasted, you schould not be having any diffculties if the operation could be done in place. There are a few...

View Article

Answer by Recoba20 for Is there a way through which I can control type of...

Well there are 2 possibble options.One is to create a LoadBalancer type for each service you want to be exposed. In case you have just one service that's great. That's rarely the case of course :) If...

View Article

Answer by Recoba20 for Can I remove a docker image and still keep the container?

There are 2 really major points for Docker containers. You make sure the app dependencies are versioned and encapsulatedinside the container. Container runs smoothly eveywhere, as long as you have the...

View Article


Answer by Recoba20 for One NAT attachment for two private subnets

This is not a good practice. AWS docs explicitly mentions that Each NAT gateway is created in a specific Availability Zone and implemented with redundancy in that zoneThat means that if all of your...

View Article


Answer by Recoba20 for Porting a docker container to a different Linux host OS

Yes, as long as you have the Docker daemon running on the CentOS. Docker heavily utilizes a set of kernel features - namespaces and cgroups. That set comes native for all Linux derivatives.In terms of...

View Article

Answer by Recoba20 for How do I install local application dependencies in a...

You can't add run-time dependencies on an already build image using a yaml manifest. You might attach/exec to an already running pod and install them, but it makes no sence, since you need to make sure...

View Article

Answer by Recoba20 for Trick a docker containers DNS to resolve a different url

If you want a DNS lookup of one domain to resolve to another one, you have 2 options.Modify the Container /etc/hosts file. By default any DNS lookup is done there. You schould do that in the...

View Article

Answer by Recoba20 for Host credential manager and Docker runners

You need to provide more information about the technology stack.In a nutshell, you would mix the responsibilities of the host, taking care for the gitlab runnner + credential store is not a good design...

View Article


Answer by Recoba20 for Gitlab CI - Deploy to an active docker container

The image acts as a foundation for each container that you start from it.You might do the update in your 'fashion' way, but containers are ephemeral - let's say it got restarted, you updates are lost...

View Article

Answer by Recoba20 for Cannot configure node group in new EKS cluster due to...

This is actually pretty well described in the docs.Before you create worker nodes, you must create an IAM role with thefollowing IAM...

View Article


Answer by Recoba20 for How long is it appropriate to keep old feature...

Feature branches should stay until the feature is done, once done the branch must be closed/deleted. Establishing this kind of behavior should be a team goal and usually takes some time, it's just...

View Article

Answer by Recoba20 for What is the idiomatic way to reload EKS/Kube configs...

The 'best approach' in a theory (coming from the perspective of k8s) would be GitOps: Cloud-native Continuous Deployment.Your question lack some important information, how are you doing your...

View Article

Browsing latest articles
Browse All 17 View Live




Latest Images