How can I make a Kubernetes setup reproducible?
The same project needs to behave consistently on developer machines, in CI and after deployment. Which versions, dependencies and configuration should be recorded?
ReadMeFeed / Community knowledge
Real questions. Useful conversations. Find the people who know your stack.
The same project needs to behave consistently on developer machines, in CI and after deployment. Which versions, dependencies and configuration should be recorded?
Recovery needs to recreate the working service and its required data after a machine or process is lost. Which artifacts and state need protection, and how should the restore be checked?
Compare suitability, operational responsibilities and limits before choosing this technology for a project. Which trade-offs should guide the decision?
Recovery needs to recreate the working service and its required data after a machine or process is lost. Which artifacts and state need protection, and how should the restore be checked?
I have a Lenovo ThinkPad X1 running Windows 11 Pro. Over the past week or so, I've had this issue where my display turns off every time I walk away from the keyboard. This seems to happen every time I walk away from my pc. According to my Power & battery settings, this shouldn't happen for at least 25 minutes. The strange thing is, and I know this is goi
I have a table with a "currency" column. I'd like to prevent further insertion of certain currencies, without removing the existing ones. Initially I was thinking of a validation trigger. Then I discovered the NOT VALID option of ALTER TABLE ADD CONSTRAINT , which prevents the validation of existing data. The documentation seems to imply that the NOT VALID o
Setup: Website with Google login button Backend: nodejs + express Frontend: Google Sign-in for Web (I know it is deprecated and I need to upgrade) https://developers.google.com/identity/sign-in/web/build-button There is NO additional native Android or iOS app available Situation: I have received an email from Google stating that my web application client ID
I am developing an application that is spread across multiple Function App running on .net5 . I need to authenticate HTTP calls between functions. To do so, I am using Azure Active Directory . I have created a registered application in my tenant and generated a new secret. Whenever Function1 needs to contact Function2 , I retrieve an access token from AAD, l
I am trying to use AWS Cloudwatch Logs insights in order to search in some quite old logs of our lambda functions. I am reading this guide on AWS docs , but nowhere is documented how you can filter by timestamp. I have tried the below: fields @timestamp, @message | filter @timestamp > '2019-12-04T18:09:10.000+01:00' | limit 200 | sort @timestamp desc but